Paolo
Forum Replies Created
-
AuthorPosts
-
Guust is correct, Kleo adds their own version of the map directly to the home template. You’ll need to ask to their support staff how to remove it as I’m not sure about it.
Thanks
I’m sorry, but Transposh is not compatible and we don’t provide support for it.
Thanks
Hi,
please provide a link and admin credentials in a private reply and we will have a look at your settings.
Thanks
Hi,
the link is the link, the arrow opens the sub menu. That’s how that kind of UI works by default. (we didn’t built it we use a popular js plugin)
You could try with css to make the arrow either bigger or a different color…
Thanks
Hi,
you needed to set your permalinks as postname.
https://wpgeodirectory.com/docs/basic-installation/#permalink
Please check now.
Thanks
Just FYI
the setting to change how many post to show per page in archives and search results is in settings >> reading.
Let us know if that’s what you were looking for.
Thanks
Hi Cyril,
this is really beyond support as it would take hours of work, not few minutes.
You should hire a developer on codeable-io or upwork.com to help you out with customization.
Please read our support policy: https://wpgeodirectory.com/support-policy/
Thanks
Hi,
did you enter and activate the license that you find here in GeoDirectory >> Auto Updates / Licenses?
If yes, please provide a link and admin credentials in a private reply and we will follow up.
Thanks
hi,
Yes is Prices and Payments > Notifications you can send up to 3.
Thanks
Hi,
please provide a link and admin credentials of the site where this is happening.
Thanks
Next time please avoid opening duplicate posts: https://wpgeodirectory.com/support/topic/custom-body-classes/
Thanks
That example is for a WP blog archive, not for GeoDirectory CPTs.
For custom taxonomies you will use has_terms:
Try this for a gd_place CPT category:
function my_custom_body_class_in_category($classes) { // add 'my-class' to the my-category archive and single posts of the category. if ( has_term('my-category', 'gd_placecategory') ) $classes[] = 'my-class'; // return the modified $classes array return $classes; } // add my custom class via body_class filter add_filter('body_class','my_custom_body_class_in_category');Thanks
Hi,
that’s can’t be done automatically, we added the package name to the titles manually to make it clearer.
Thanks
Hi,
It should be possible, but I believe it’ll be hard to keep it square on all devices.
I asked a developer to check and to give us some pointers.
Thanks
Hi,
that’s because you have more than 1 custom post type and that code only works for the places CPT.
Change Guust’s CSS with this:
.post-type-archive .search_by_post { display: none !important }Thanks
-
AuthorPosts