pzxyz
Forum Replies Created
-
Forum: Plugins
In reply to: [Translate Multilingual sites - TranslatePress] Multi language emailsThis can help:
https://translatepress.com/docs/translation-shortcode/You have to add second condition to snippet. For example like this:
add_filter( 'trp_beautify_language_name', 'trpc_change_language_name', 10, 3 ); function trpc_change_language_name ($name, $code, $english_or_native ){ if ( $code == 'pl_PL' ){ // replace with the code of the language to change return 'polski'; // replace with your desired language name } if ( $code == 'en_US' ){ // replace with the code of the language to change return 'english'; // replace with your desired language name } return $name; }
Forum: Plugins
In reply to: [Quotes for WooCommerce] Menus stopped being visible in Appearance/MenusYes. When only Woo & Quotes are active the issue is there. When I deactivate Quotes menu comes back. I can give you access to the staging version of the site.
Forum: Plugins
In reply to: [Rank Math SEO – AI SEO Tools to Dominate SEO Rankings] Activation failedI don’t know why but today the activation worked out.
Same for me.
Forum: Plugins
In reply to: [Rank Math SEO – AI SEO Tools to Dominate SEO Rankings] Activation failedSame here
Forum: Plugins
In reply to: [LiteSpeed Cache] Problem with setting transparent placeholderTopic is resolved. Thank you.
Forum: Plugins
In reply to: [Two-Factor] Error 403 after introducing Authenticator CodeDo you have any security headers set up?
Forum: Fixing WordPress
In reply to: Blank page on Editor after 5.0 update on Editor/Author users@katherinefoodwisdom you have made a lot of errors being result of bad methodology of work with WP
1. Contact your hosting company maybe they have a daily backup of your page and can restore it.
2. Backup your page using some plugin. There’s a whole topic about it in Codex.
3. Do you have any custom code added in functions.php?
Forum: Fixing WordPress
In reply to: Blank page on Editor after 5.0 update on Editor/Author usersFor me that snippet caused error:
// Remove type attribute from script and style tags added by WordPress add_filter('script_loader_tag', 'clean_script_tag'); function clean_script_tag($input) { $input = str_replace("type='text/javascript' ", '', $input); return str_replace("'", '"', $input); }
Forum: Fixing WordPress
In reply to: Blank page on Editor after 5.0 update on Editor/Author users@midnitedev do you have any custom code added in functions.php? For me this code caused error.
Forum: Fixing WordPress
In reply to: Blank page on Editor after 5.0 update on Editor/Author usersHi, on one of my sites I have the same issue like @vipini: blank page after clicking “add new post” or “add new page”.
I tried to deactive all plugins, clear cache. It didn’t help.
I have 3 errors in console:
1) first appeared after logging-in:
Uncaught SyntaxError: missing ) after argument list (post-new.php:2039)2) second and third errors appear after clicking “add new post”:
Uncaught SyntaxError: Unexpected identifier (post-new.php:2107)
Uncaught SyntaxError: Unexpected identifier (post-new.php:2203)Forum: Plugins
In reply to: [Redirection] Can’t deleted or enable redirectsThe same.
For example click here https://bukrower.pl/kategoria-produktu/bieganie/. It redirects me to https://bukrower.pl/katalog/?swoof=1&product_cat=bieganie. The Shop page is now /sklep. When I used to use WC Products Filter the shop page was /katalog.
After removing plugin everything works fine except product categories adresses.