coderchris
Forum Replies Created
-
Great, thank you! I’ve implemented this method and will keep an eye on it.
Appreciate your help. This is such a useful plugin!
Forum: Plugins
In reply to: [Participants Database] Strict Search not workingI was able to fix it. I had forgotten that when creating the template, I added this field:
<input name=”operator” type=”hidden” class=”search-item” value=”LIKE” />
..which took the place of this:
$output[] = ‘<input name=”operator” type=”hidden” class=”search-item” value=”‘ . ( Participants_Db::plugin_setting_is_true( ‘strict_search’ ) ? ‘=’ : ‘LIKE’ ) . ‘” />’;
So I just changed the “LIKE” to “=”, and it works now. My bad. Your plugin works beautifully, thanks again!
Forum: Plugins
In reply to: [Participants Database] Strict Search not workingThank you for your quick response! Ok here is the query in question:
PDb_List::_setup_iteration list query: SELECT p.id, p.display_name, p.company, p.first_name, p.last_name, p.title, p.attn, p.address, p.city, p.state, p.zip, p.country, p.phone, p.ext, p.mobile, p.fax, p.email, p.www, p.referred, p.notes, p.last_updated FROM wp_participants_database p WHERE p.display_name LIKE “%Mail.com%” ORDER BY p.display_name ASC
It looks like I need to change the “LIKE” to “=” to make it work correctly, but I’m not sure where to do that.
Forum: Plugins
In reply to: [Instapress] [Plugin: Instapress] Pagination doesn't work for tagsI am having the exact same issue. Here is my shortcode:
[instapress piccount=”8″ paging=”1″ size=”120″ effect=”fancybox”]
Clicking next just keeps adding more next links but doesn’t change the pictures.