Giri
Forum Replies Created
-
AuthorPosts
-
Footer link color can be changed from Whoop Options > Footer styling options > Footer text color.
If you are talking about the plain text, then it uses the body text color.
You can apply this custom css only change the footer text color white.
.footer, .footer .copyright { color: white; }
Paste above code in Whoop Options > Quick Code > Custom CSS
January 9, 2017 at 11:38 am in reply to: How can I see which listings have not been published? #339460This reply has been marked as private.This reply has been marked as private.January 9, 2017 at 10:10 am in reply to: How can I see which listings have not been published? #339445Hi there,
I believe you have imported all listings. Either you have used the wrong values for post_status while you import or some 3rd party plugin messing with your post status.
I have installed database browser plugin and checked the table values. All i see is -1 for post_status. It should be a value like draft, publish, trash etc.
https://www.dropbox.com/s/xr7t6s4cejigsk9/Screenshot%202017-01-09%2015.37.21.png?dl=0
I found total 114 posts that has values -1 in Places post type.
You have 1026 Published listing. All listing 1140. 1026 + 114 = 1140.
So all those -1 values should be “draft”
If you really want us to help you, then we need to make sure the problem is caused by our plugin. So please disable all non GD plugins and then let us know.
So we can test and if there is bug we can fix it.
Thanks
Thanks Mitch.
Hi wonderbc,
I do see everything get displayed in a single row.
https://www.dropbox.com/s/jbhzxhhrp5b5sez/Screenshot%202017-01-09%2014.24.45.png?dl=0
Am i missing something?
Perhaps you have not cleared your browser cache?
I’m unable to login using your old credentials.
Can you give me the correct login credentials?
Thanks
Hi Mitch,
Sorry to trouble you.
If you have not left a review yet for our plugin, please spend couple of minutes and leave a review here.
https://wordpress.org/support/plugin/geodirectory/reviews/#new-post
This would help us grow.
Thanks
No problem Mitch.
If you find any bugs, please report it here.
I’ll fix those bugs on monday.
Have a great weekend 🙂
I’m glad it worked.
One quick question: Can I assume that if I leave out the second filter, the sort *within* the category (the company listings themselves) will still be based on the number of reviews?
You need to use both filters in order to category sort work.
The first filter (bestof_widget_term_args) makes sure the category is ordered A-Z and the second filter (bestof_widget_sort_terms) overrides our review_count sort function.
So you need both filters in order category sort work.
I have not modified anything inside the category listings sort. So it works as usual. Listings are sorted by high reviews.
Hope that helps.
Thanks
Hi Mitch,
You seems like you have been trying long time. So let me help you.
I have added two filters just now in best of widget for you. It will be included in next version. But in the mean time please follow my steps.
Step 1)
Modify the code in your site. See this page for the code I modified.
https://gist.github.com/mistergiri/17437731f7027314d7ca144fed117a8e/revisions
Step 2)
Since you are planning to sort category by alphabetical order you need to use the following filter.
bestof_widget_term_args
Just place the following code in your child theme’s functions.php file.
add_filter('bestof_widget_term_args', 'custom_bestof_widget_term_args'); function custom_bestof_widget_term_args($term_args) { $term_args['orderby'] = 'name'; $term_args['order'] = 'ASC'; return $term_args; }
Now we need to remove the review_count sort.
So we need to use
bestof_widget_sort_terms
filter.
Just place the following code too in your child theme’s functions.php file.
add_filter('bestof_widget_sort_terms', 'custom_bestof_widget_sort_terms', 10, 2); function custom_bestof_widget_sort_terms($terms, $a_terms) { return $a_terms; }
I have not tested it. But let me know if you face any problem. I’ll be here for another 30 mins. If you can try my code and face any problem I can help you before I leave. Otherwise i’ll help you on monday.
Thanks
Hello David,
I have not done anything other than adding a package called Premium.
In my screenshot Free package has id 1. That is the default package. Its not created by me.
Premium package is the only package created by me.
Hope that helps.
Thanks
ok Thanks Chris
Hi wonderbc,
I’m unable to access your site.
But you seems like you have the same problem this user had.
Try this css.
https://wpgeodirectory.com/support/topic/grid-view-problems/#post-335218
You can use the css either in customize or gd scripts.
Thanks
This reply has been marked as private. -
AuthorPosts