pajik
Forum Replies Created
-
I couldn’t get the debug log. I have the database reduced back. But in time I believe it will grow again to hundreds of GB. So far, after the database is shrinking, it keeps happening to me that when I come back over time, I see a huge increase in the size of the database.
Forum: Reviews
In reply to: [FOX - Currency Switcher Professional for WooCommerce] Plugin stop working.SUPER, it’s working again. Good work!
Thank you.I don’t know how to make a bug report. I can only use the wp-config.php and set “define (‘WP_DEBUG’, true);”.
But when I turn on debug, my entire web stops appearing.
Is there a plugin that would do that bug report?Thank you.
Deprecated: Volaná metoda konstruktoru t?ídy pro WP_Widget v Feature_Posts je zastaralá od verze 4.3.0! Místo toho pou?ijte __construct(). in /home/www/XXX.net/domains/XXX.cz/www/wp-includes/functions.php on line 4870
Warning: Cannot modify header information – headers already sent by (output started at /home/www/XXX.net/domains/XXX.cz/www/wp-includes/functions.php:4870) in /home/www/XXX.net/domains/XXX.cz/www/wp-includes/functions.php on line 6274
Deprecated: Function create_function() is deprecated in /home/www/XXX.net/domains/XXX.cz/www/wp-content/plugins/file-gallery/includes/media-tags.php on line 48
Deprecated: Function create_function() is deprecated in /home/www/XXX.net/domains/XXX.cz/www/wp-content/plugins/file-gallery/includes/media-tags.php on line 55
Deprecated: Function create_function() is deprecated in /home/www/XXX.net/domains/XXX.cz/www/wp-content/plugins/file-gallery/includes/media-settings.php on line 43
Warning: Cannot modify header information – headers already sent by (output started at /home/www/XXX.net/domains/XXX.cz/www/wp-includes/functions.php:4870) in /home/www/XXX.net/domains/XXX.cz/www/wp-admin/includes/misc.php on line 1310
Warning: Cannot modify header information – headers already sent by (output started at /home/www/pyramida.net/domains/mandaly-obrazky.cz/www/wp-includes/functions.php:4870) in /home/www/XXX.net/domains/XXX.cz/www/wp-admin/admin-header.php on line 9
- This reply was modified 4 years, 4 months ago by pajik.
Thank you for your response. I just submitted a report. I own about 5 websites and my database is growing everywhere.
Thank you.Forum: Reviews
In reply to: [FOX - Currency Switcher Professional for WooCommerce] Plugin stop working.Older plugin work fine. I adjusted the rating. I believe that with the next version it will be fixed.
- This reply was modified 4 years, 4 months ago by pajik.
Thanks for the link to the older version, it works fine. I do not use the cache plugin.
Thank you.- This reply was modified 4 years, 4 months ago by pajik.
For now, I solved the problem by using an older version of the plugin (1.2.1) which works fine.
Please there are older versions of the plugin (than 1.3.3.1) available that I could download?The problem still persists.
- This reply was modified 4 years, 4 months ago by pajik.
Hi, is anyone here?
my database is growing!
The problem is in the table “_wfconfig” which is constantly growing and already has a few MB of something around 1GBForum: Themes and Templates
In reply to: [Customizr] No title on homepageThank you.
Forum: Themes and Templates
In reply to: [Customizr] No title on homepageThank you very VERY MUCH!
I need to not display entry-meta, is it possible?Forum: Themes and Templates
In reply to: [Customizr] No title on homepageYes static front page? Without Featured Pages.
Forum: Themes and Templates
In reply to: [Customizr] No title on homepageOnly those pages I create, I have it on localhost.
I look in the html code of the page, so I do not see h1 tag.
I tried this procedure:
I try adding my child-theme functions.phpadd_action('__before_loop', 'titles_patch', 0); function titles_patch(){ add_filter('tc_post_formats_with_no_header', 'show_titles_in_non_single'); } function show_titles_in_non_single($post_formats_array){ remove_filter('tc_post_formats_with_no_header', 'show_titles_in_non_single'); if ( ! is_single() ){ return array_diff($post_formats_array,[get_post_format()]); } return $post_formats_array; } add_action('__before_content', 'exclude_post_formats_titles', 5); function exclude_post_formats_titles(){ if ( in_array( get_post_format(), apply_filters('tc_post_formats_with_no_header', TC_init::$instance -> post_formats_with_no_header ) ) ) remove_action('__before_content', array(TC_headings::$instance, 'tc_headings_view')); else add_action('__before_content', array(TC_headings::$instance, 'tc_headings_view')); }
But it did not work, the title does not show homepage.