Paolo
Forum Replies Created
-
AuthorPosts
-
yes that is an option too.
Thanks
Yes please, that should be enought to troubleshoot the problem.
If you can install query monitor plugin in advance for our developers, you’ll make their like easier.
Let us know,
Thanks
This reply has been marked as private.Hi,
please see: https://wpgeodirectory.com/support/topic/remove-tags-and-description/#post-55058
Add your default text with that jquery and use CSS to hide the field from the form.
Thanks
Gd Booster is an HTML cache. Database threads will not be affected, however it is not normal at all that Geodirectory would leave a bunch of sleeping database threads connected to the server without shutting them down.
If you please provide a link and admin credentials in a private reply, I’ll ask to the developers to find what’s wrong on your install.
Thanks
Hi Stiofan is resolving other problem related to his computer right now. He’ll be back to you as soon as possible.
Thanks
Becuase GeoDirectory Framework theme is a theme and not a plugin.
https://wpgeodirectory.com/docs/installing-themes/
Thanks
Yes it will, but if your database is hammered by the plugin with no traffic, it means that the server hosting the database is not good enough.
Thanks
It takes minutes to load the plugin page and there are plenty of errors:
MySQL server has gone away in /homepages/27/d487702718/htdocs/clickandbuilds/BesserBilden2016/wp-includes/wp-db.php on line 1811 Warning: mysqli_query(): Error reading result set's header in /homepages/27/d487702718/htdocs/clickandbuilds/BesserBilden2016/wp-includes/wp-db.php on line 1811 Warning: mysqli_query(): MySQL server has gone away in /homepages/27/d487702718/htdocs/clickandbuilds/BesserBilden2016/wp-includes/wp-db.php on line 1811 Warning: mysqli_query(): Error reading result set's header in /homepages/27/d487702718/htdocs/clickandbuilds/BesserBilden2016/wp-includes/wp-db.php on line 1811 Warning: Cannot modify header information - headers already sent by (output started at /homepages/27/d487702718/htdocs/clickandbuilds/BesserBilden2016/wp-includes/wp-db.php:1811) in /homepages/27/d487702718/htdocs/clickandbuilds/BesserBilden2016/wp-includes/option.php on line 823 Warning: Cannot modify header information - headers already sent by (output started at /homepages/27/d487702718/htdocs/clickandbuilds/BesserBilden2016/wp-includes/wp-db.php:1811) in /homepages/27/d487702718/htdocs/clickandbuilds/BesserBilden2016/wp-includes/option.php on line 824Whatever Stiofan finds, you should consider upgrading your hosting provider.
Shared hosting plan are enough for small blogs and static websites only. Just FYI.
Thanks
I don’t know what to say, maybe ask for support to your hosting provider? If you could provide FTP credentials directly it would be much easier for me too.
Thanks
Hi,
I’m sorry but there is no option currently to do something similar.
Thanks
Hi,
Breadcrumbs are only added by the plugin to the directory pages as explained above.
Blog and pages have no breadcrumb unless the theme includes them. I think none of our theme does.
I asked to the developers to answer your last question.
Thanks
just tried, please see image attached.
Thanks
You are welcome 🙂
Breadcrumbs are controlled by plugin temaplates.
The best way to add soemthing after them is via functions.php file of your child theme using actions.
These are the actions that add the breadcrumbs to each GD page:
add_action('geodir_detail_before_main_content', 'geodir_breadcrumb', 20); add_action('geodir_listings_before_main_content', 'geodir_breadcrumb', 20); add_action('geodir_author_before_main_content', 'geodir_breadcrumb', 20); add_action('geodir_search_before_main_content', 'geodir_breadcrumb', 20); add_action('geodir_home_before_main_content', 'geodir_breadcrumb', 20); add_action('geodir_location_before_main_content', 'geodir_breadcrumb', 20);WHat you’ll need to do is something similar but with your custom function and a slight higher priority.
Example for the detail page:
add_action('geodir_detail_before_main_content', 'after_geodir_breadcrumb', 21); function after_geodir_breadcrumb() {echo 'Hello World!';}This will output Hello World after the breadcrumb of the detail page.
Hope this helps.
Thanks
-
AuthorPosts