07/29/2014 at 12:48 pm
#298434
Keymaster
@ James
The beta feature for search multiple categories is a little broke at the moment. cMap needs to be updated to properly work with it again. Well, actually it does work if you click the spyglass icon by the search input after selecting your categories. But that is a little no-obvious.
There is a simple fix you can add right now …
First, install the Code Snippets plugin.
Add a new snippet with the following code:
function cn_cmap_add_submit_button( $atts, $results ) {
if ( $atts['enable_category_multi_select'] ) {
cnTemplatePart::submit( array( 'return' => FALSE ) );
}
}
add_action( 'cn_action_list_before-cmap', 'cn_cmap_add_submit_button', 99, 2 );
Save and activate the new snippet.
After you do, a submit button will be displayed after the category selection like it use to.
Apologies for the trouble!
