Andy
Forum Replies Created
-
Thanks for your help and sorry for the bad review, I was just frustrated. I’ll change it back to 5 stars again. I really appreciate all the work you guys do on a free plugin and we’ve used it for 8 years or so without any issues, so my review was unfair.
I used the exact example you provide in your docs here:
https://docs.pods.io/code/pods/filters/
It has the same issue, The keyword search is working, but now the filters have stopped working, throwing an error if any dropdown option is selected other than the default option.
Here is the PHP I used:
<?php $pod = pods( 'athletes' ); // Output a filter form that shows two drop-downs for two relationship fields and the submit button text says 'Go' echo $pod->filters( array( 'fields' => array( 'discipline', 'nationality' ), 'label' => 'Go' ) ); // Get the items, search is automatically handled $pod->find(); // Output the list of the items found echo '<ul>'; // Loop through items found while ( $pod->fetch() ) { echo "<li>" . $pod->display( 'post_title' ) . '</li>'; } echo '</ul>'; // Add some pagination echo $pod->pagination(); ?>
Here is the page I used for testing…
https://awakeningfighters.com/searchtest/If you search for Lucy it works, but if you select any of the filters it errors.
Is it not possible anymore just using Pods?
Hi, this problem still exist. Our search functionality has not worked for months now. Is there any other way to display a filterable list of search results?
Ok no problem. Thanks for the quick response and thanks for a great plugin ??
Forum: Plugins
In reply to: [Media Library Assistant] Warning: preg_replace(): Unknown modifier ‘0’ inWow! Thanks David, works perfectly. You just earned yourself 5 stars!
Forum: Plugins
In reply to: [Media Library Assistant] Warning: preg_replace(): Unknown modifier ‘0’ inHi David, thanks for the fast response. For some reason I wasn’t getting notifications of your replies, but I will test this now… I’m not exactly sure how the images were uploaded with quotes. I recently transferred all my old NextGEN legacy images over to the media library using another plugin called Tags for Media Library (TML). It may have happened then.
I stopped using TML because it had some bugs or conflicts which slowed the site down. That’s when I searched for an alternative and discovered your excellent plugin.
@theape Thanks for the heads up
Thanks niknetniko!
I am still using an old legacy version of NextGEN Gallery, because of other plugin dependencies, but I managed to tweak your fix slightly to work with legacy.
If anyone’s interested, go to…
nextgen-gallery > admin > manage-images.php
Line 489, change:
$picture->tags = wp_get_object_terms($pid, 'ngg_tag', 'fields=names');
to:
$picture->tags = wp_get_object_terms( $picture->pid, 'ngg_tag', array('fields' => 'names') );
Thanks, I have access now
Awesome! Thanks for your quick response
Forum: Plugins
In reply to: [BuddyPress Wall] Disable News FeedHi Jose, you can add some CSS to achieve this.
Add the following to style.css
#news-feed {display:none !important;}
This should remove the News Feed button completely. Hope it helps
Forum: Plugins
In reply to: [BuddyPress Wall] Notifications errorI have this issue too, but I get a ‘Page not Found’ message instead of the error.
The notifications in the top Admin bar also seem to be affected. When I receive a notification, hovering over the icon results in a blank dropdown
Forum: Plugins
In reply to: [BuddyPress Wall] Posting on wall of other users?Hi. I would also like to see this funtion added if possible. Thanks for a great plugin
I have a very similar issue. I can see my events listed in the Existing Content, but it is no longer listing any other content such as Pages or Posts.
I am not running TinyMCE Advanced, but I am running a shed load of other plugins ??