pickme
Forum Replies Created
-
Forum: Plugins
In reply to: [ReCaptcha v2 for Contact Form 7] Error msg translationHello,
On another topic I red that error message ‘Please verify that you are not a robot.’ can be translated:
And you already have made the error message ‘Please verify that you are not a robot’ translation ready with gettext fn call esc_html__( ‘Please verify that you are not a robot.’, ‘wpcf7-recaptcha’ )
Within loco translate plugin I added translation for ‘Please verify that you are not a robot.’ but does not appear on frontend.
My defualt language is Italian and secondary language is English. On Italian page I would like to display Italian error message while english error message on English page. Could you please let me know which method is correct?
Thank you
Hi!
The issue is solved. It has nothing to do with latest Polylang 2.6.7 or WP 5.3 updates.
I noticed that the issue occurs only when logged in to WP control panel.
To solve the issue, go to WP control Panel > Users > Admin > Edit > Admin Settings Page > Language > Change to default website language (Not any specific language in particular).
Regards!
Forum: Plugins
In reply to: [Simple Custom CSS and JS] JS codes don’t workThank you for your help Diana!
It did work!
Nothing to do with Simple Custom CSS and JS.- This reply was modified 6 years, 6 months ago by pickme.
Forum: Plugins
In reply to: [Simple Custom CSS and JS] JS codes don’t workForum: Plugins
In reply to: [ReCaptcha v2 for Contact Form 7] Error msg translationHello,
I red this post:
I added the php code, mentioned in the link above, to my website, but the issue is that it is a bilingual website. The ‘error message’ should appear translated only in the second language of the website and remain in its original language (as in line 75 in file recaptcha-v2.php) when website loads in its default/first language.
Could you please help me on this one how this is accomplished?
Thank you
- This reply was modified 6 years, 6 months ago by pickme.
Forum: Plugins
In reply to: [Polylang] wpml-config.xmlHi,
I was advised by the plugin developer about this procedure and the code needed within wpml-config.xml that work for the particular plugin which I needed its options to be translated.
You should consult the plugin developer of the plugin you want its options translated.
Maybe a different method is needed for your case.
Regards
Forum: Plugins
In reply to: [Polylang] wpml-config.xmlHi,
Create a wpml-config.xml file and add the following code:
<wpml-config>
<admin-texts>
<key name=”xxxx”/>
<key name=”xxxx”/>
</admin-texts>
</wpml-config>Add as many lines of <key name=”xxxx”/> as you need.
Where xxx is the id attribute of each option you want to translate.
Place wpml-config.xml file in the folder of the plugin using the get_option function for translating options.
Normally you will see the options listed under the string translations of polylang when selecting the corresponding plugin.Regards
- This reply was modified 6 years, 9 months ago by pickme.
Forum: Plugins
In reply to: [Polylang] pll_language cookie does not change when loading home pagesThank you for the advice. I will exclude Polylang’s JS.
Forum: Plugins
In reply to: [Polylang] pll_language cookie does not change when loading home pagesI found what is causing the problem. Autoptimize plugin is making cookie pll_language not switching according to language. I will contant their support.
Forum: Plugins
In reply to: [Polylang] wpml-config.xmlOk!
I have created the wpml-config.xml file and saved it at several locations within the theme’s, plugin’s and polylang’s root directories as well as at a newly created wp-content/polylang directory. None worked.
I have created the wpml-config.xml file with relevant field IDs of a plugin’s field options I want to translate in the form of:
<wpml-config>
<admin-texts>
<key name=”my_plugins_options”>
<key name=”option_name_1″ />
<key name=”option_name_2″ />
</key>
</admin-texts>
</wpml-config>But that does not add the plugin’s option fields in Polylang’s table of string translations.
The plugin’s creator has told me that he has translated these option fields with WPML and that they can also be translated with Polylang.
Could you please advise me if I need an additional procedure to add option fields in polylang’s table and translate them?
Thank you
- This reply was modified 7 years, 2 months ago by pickme.
- This reply was modified 7 years, 2 months ago by pickme.
- This reply was modified 7 years, 2 months ago by pickme.
- This reply was modified 7 years, 2 months ago by pickme.
- This reply was modified 7 years, 2 months ago by pickme.
- This reply was modified 7 years, 2 months ago by pickme.
Forum: Plugins
In reply to: [W3 Total Cache] Rendering errors after upgrade to 0.9.7.1When I disable w3 total cache these errors vanish and website renders normaly.
I have to keep w3 total cache disabled for now.
Forum: Plugins
In reply to: [Autoptimize] Microsoft Edge – Website menu bar and custom headingsYes, the problem is not created from an aggregated and minified ao js code file including the functions.js code of theme. If I exclude functions.js from ao js the page is blank (not rendered at all).
I found out I had not updated the theme. If that does not fix the issue I will have to contact theme’s support.
Sorry for creating a post regarding these issues eventually not coming from ao. At least this can help other developers in solving similar issues.
Thank you for your help!
Forum: Plugins
In reply to: [Autoptimize] Microsoft Edge – Website menu bar and custom headingsThe problem is not autoptimize! Is not w3tc.
It is a compatibility issue with the theme I use and edge.
The code creating an issue and is included in functions.js of the theme I use, is this:
* Provide compatibility for browser unsupported features
*/
objectFitfallback: function objectFitfallback() {if (this.isEdge) {
objectFitImages();
}
},No clue what to do…
Forum: Plugins
In reply to: [Autoptimize] Microsoft Edge – Website menu bar and custom headingsI found in which js file this part of code comes from:
themes/assets/js/functions.js
I will exclude functions.js and I will see what happens…
Forum: Plugins
In reply to: [Autoptimize] Microsoft Edge – Website menu bar and custom headingsIs there there a way to identify within the ao js file from which js file is aggregated from?