faxlain
Forum Replies Created
-
You have never blocked a third-party cookie injected by a plugin script, haven’t you?
It’s not as simple as you describe, my friend.If I don’t need active the YouTube experimental options the GTM4WP plugin must not include a script that I don’t need to use.
Hello theme’s Author,
I’ve realized that the problem that I’ve encountered happens only with my local installation (with XAMPP panel); instead in my remote installation I’ve not this problem.
Therefore, thank you very much for your support and I mark this topic as solved!No, it doesn’t; my child theme is made by: style.css + default.css + images folder + back-up languages file folder. I’ve tried to delete the parent theme and install the new version of theme via ftp (like you have suggested), but nothing has changed…. I have also tried to:
1) open the parent Theme’s Options screen,
2) deactivate the parent and activate the child (in another screen) and than
3) refresh the Theme’s Options screen
and I’ve seen this error message: “You must get authorization to access this page.”
It seems that If I activate the child theme I lose the permission to access to the Theme Options…
And this happens also with the Virtue 2.3.2 version (I’ve just tried it).Ah! another thing… I’ve upgraded the parent theme via FTP
Hi Kadence T.
thanks for your question. If I activate the parent theme (2.3.1) instead of the child I can see again the Virtue’s Option Theme Panel and everithing looks like ok.
Substantially, I lose the “Options Theme” voice only if I activate the child…Hi Hannah,
my child theme is made by: style.css + default.css + images folder.
If I downgrade the theme-father to the previous version (2.3.0) I can see the Options Panel and everithing looks like ok; if I upgrade the theme I lose the Virtue’s panel… and it’s replaced by default theme options panel of WP. Does this only happen to me?Forum: Themes and Templates
In reply to: [Customizr] No translation for Post Meta Data (2 Issues)Oh my god, what kind of stupid am I? Finally, I’ve understood what you say, and it is so logic…. thanks very much for your patience!
Forum: Themes and Templates
In reply to: [Customizr] No translation for Post Meta Data (2 Issues)This is the piece of code that I have added to my theme-child’s function.php:
add_filter('tc_meta_utility_text', 'rdc_meta_utility_text', 15); function rdc_meta_utility_text($output) { // CHANGE TO DEFAULT TEXT IF NON-ENGLISH LANGUAGE $oldentry1 = 'Articolo '; $oldposted1 = 'pubblicato in '; $oldposted2 = 'pubblicato il '; $oldtagged1 = 'and tagged '; $olddate1 = 'il '; $oldby1 = 'da '; $oldfullstop = '.'; // CHANGE TO DEFAULT TEXT IF NON-ENGLISH LANGUAGE // Edit this wording to your needs, to remove completely use '' $newentry1 = 'Articolo '; $newposted1 = 'pubblicato in '; // Category $newposted2 = 'pubblicato il '; $newtagged1 = 'and tagged '; // Tag $newdate1 = 'il '; // Date $newby1 = 'da '; // Author $newfullstop = '.'; // Edit above wording only return str_replace(array( $oldentry1, $oldposted1, $oldposted2, $oldtagged1, $olddate1, $oldby1, $oldfullstop ), array( $newentry1, $newposted1, $newposted2, $newtagged1, $newdate1, $newby1, $newfullstop ), $output); }
Before this I’ve added other filters that work fine…
Forum: Themes and Templates
In reply to: [Customizr] No translation for Post Meta Data (2 Issues)Hi Rdellconsulting,
Firstly, thanks for your attention; I’ve done what you suggested but nothing, I can’t change the default english text before the post’s date…Forum: Themes and Templates
In reply to: [Customizr] No translation for Post Meta Data (2 Issues)Hi Sir,
In the article “Remove Post Meta Details” the author explains how to change default english text, but the instructions seem to be outdated; the code that is suggested doesn’t work…//Change meta text add_filter('tc_meta_utility_text', 'rdc_meta_utility_text'); function rdc_meta_utility_text($output) { // CHANGE TO DEFAULT TEXT IF NON-ENGLISH LANGUAGE $oldentry1 = 'This entry '; $oldposted1 = 'was posted in '; $oldposted2 = 'was posted on '; $oldtagged1 = 'and tagged '; $olddate1 = 'on '; $oldby1 = 'by '; $oldfullstop = '.'; // CHANGE TO DEFAULT TEXT IF NON-ENGLISH LANGUAGE // Edit this wording to your needs, to remove completely use '' $newentry1 = 'This entry '; $newposted1 = 'was posted in '; // Category $newposted2 = 'was posted on '; $newtagged1 = 'and tagged '; // Tag $newdate1 = 'on '; // Date $newby1 = 'by '; // Author $newfullstop = '.'; // Edit above wording only return str_replace(array( $oldentry1, $oldposted1, $oldposted2, $oldtagged1, $olddate1, $oldby1, $oldfullstop ), array( $newentry1, $newposted1, $newposted2, $newtagged1, $newdate1, $newby1, $newfullstop ), $output); }
Maybe the variables $oldentry1, $oldposted1, $oldposted2, $oldtagged1 etc. are changed…? is it possible? Can you tell me what’s wrong? Thanks for your help and your great job!
Forum: Plugins
In reply to: [mqTranslate] Option to display default content if no translation availableHi chsxf,
I’ve done what you have suggested but I don’t see the default content, I get the notice “Sorry, this entry is only available in %LANG”. How can I display default content for missing elements?
Thanks for your attention and your great job,
C.Forum: Plugins
In reply to: WooCommerce – Products without prices (possible?)Try this, if isn’t too late…
Not Price WoocommerceFollow the link below:
https://postimg.org/image/ybpyd6lwz/Yes, it doesn’t. But you can use only the cookie_button and write something like this:
[:en]This website uses cookies to improve your experience. If you continue to use this site We will assume that you are happy with it. < a href = “https://www.yoursite.com/cookie-policy-page/?lang=fr” >Read More< / a> [cookie_button]
??
Solution for QTranslate:
you have to use shortcodes of QTranslate (like [:en] [:it] [:fr] ecc.) to specify the different Cookie Law Messages.
I hope this will help.