@ Richard
re: the categories dropdown appears twice at the top of the page. How can I remove this?
This is being caused by the theme. There are two options. Once is to hide it with CSS. Add the following to the theme’s custom CSS area:
#cn-cmap div.select2-container {
display: none !important;
}
The second, better, but more technical, solution is to prevent the theme from doing his in the first place.
Edit the template.js file found here:
../wp-content/themes/magnium/js/template.js
Change this:
$("select").select2({
allowClear: true,
minimumResultsForSearch: 10
});
to this:
$("select").not('.cn-category-select').select2({
allowClear: true,
minimumResultsForSearch: 10
});
Save and overwrite the original file (make a backup of it first).
The tough part is getting purged from the various caches so the updated file will get loaded by the browser.
re: the search for example is not removed
I just tested it and I am unable to replicate the issue. If it preview correctly in the Template Customizer, it should display correctly if the changes were saved. Could you double check it? Also, what is the exact shortcode you are using?
