06/17/2014 at 12:40 pm
#294069
Keymaster
@ Rob
re: you’ll see that the selection window is blank
The issue is likely being caused by the theme or another plugin interfering with the wp_print_footer_scripts action hook in WordPress.
Edit the Snippet I gave you. Look for wp_print_footer_scripts and change it to wp_footer
re: I’d not like to have the “search” area show up right below it as it does, but to the right side of it
This CSS will do the trick:
span.cn-search {
float: right;
}
form.cn-form br {
display: none; // This could break the display doing a search...
}
Hope that helps!
