jonahcoyote
Forum Replies Created
-
AuthorPosts
-
Adding a sort by added date or title works but then this issue occurs: https://wpgeodirectory.com/support/topic/sorting-by-random-distance/ – seems like something is not right here…
Hey Wayne,
I’m not sure why that code wouldn’t be working for you. Maybe try deactivating all other plugins to make sure no other plugin is interfering with things. You’ll need to troubleshoot on your own to figure it out. It works for me but unfortunately I can’t spend the time to figure out why it doesn’t work for you. Good luck!
– Jonah
Hi Stiofan,
Take a look here: http://distressedmullet.dev/shops/ – I’ve got Random set as the default sorting option and you can see the list reflects this correctly. Now do a search for “Miami” in the “Near” input and search. You’ll see the search results are displayed randomly as well. It seems like if you search by location, it should always show results by distance. And if you search by keyword, it should always show results by relevance. Otherwise it renders those search features kind of useless if you want to sort by random on the main list. Make sense?
Thanks for your help!
– JonahHey Wayne,
What version of GD are you running? Are you sure you added it to the currently active child theme? Are you seeing any errors or is it just not working?
– Jonah
Thanks Paolo!
Hi Guust, thanks for the reply. This is not for the widget, this is for all listing – regular, category, search, etc. where featured posts always show as sticky at the top of the list…
Thanks Jeff, that’s what I figured. I’ll check out the filter options.
Awesome, thanks Stiofan!
Sounds good paolo, thanks!
No problem. Any thoughts on my question/suggestion/request to be able to show all listings on the map without my code though?
Hey paolo, that works. I guess my solution was to do it without doing the whole po file thing. But that’s not too difficult…
Thanks,
JonahThis reply has been marked as private.If anybody is wanting to adjust how many listings are shown per page or get it so the map will show all listings, just add this code to your themes functions.php file:
/*------------------------------------------------------------------------------- Show More Posts Per Page -------------------------------------------------------------------------------*/ function show_more_posts($query) { if ( empty( $query->query_vars['suppress_filters'] ) ) { if( geodir_is_page('listing') || geodir_is_page('author') || geodir_is_page('search') ) { $query->set( 'posts_per_page', -1 ); } } return $query; } add_filter( 'pre_get_posts' , 'show_more_posts' );
That will affect listing, search and author GD pages.
Sounds good, thanks Stiofan!
Thanks guys!
-
AuthorPosts