Clement Gonnet
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast SEO] Recoverable fatal error Sitemap xmlThis is now solved with WPML v 4.2.1. Thank you.
Forum: Plugins
In reply to: [Yoast SEO] Recoverable fatal error Sitemap xmlHi,
I experience same issue here.
Found a similar Fatal error linked with Divi since updating WPML as follows:
– WPML Media from 2.4.1 to 2.5.0
– WPML Multilingual from CMS 4.1.3 to 4.2.0
– WPML String Translation from 2.9.1 to 2.10.0
– WPML Translation Management from 2.7.2 to 2.8.0
– Theme: Divi 3.19.4 to 3.19.14
The issue was reported here and there is a Divi specific workaround: https://wpml.org/forums/topic/recoverable-fatal-error-object-of-class-wp_term-could-not-be-converted-to-strin/
I wonder if there’s been major changes to WPML. This will need reporting to these guys.Forum: Plugins
In reply to: [Autoptimize] Google Fonts not working since 2.4.1@optimizingmatters, I have tested the github version and it has fixed the 400 error. Many thanks.
Forum: Plugins
In reply to: [Autoptimize] Google Fonts not working since 2.4.1From a user point of view the duplication of subsets doesn’t really make sense since the options read “Combine and …”
However if technically there is no difference and the fonts load properly then it sounds fine to me.Forum: Plugins
In reply to: [Invisible reCaptcha for WordPress] Fatal ErrorThanks @matrixmedia. Whilst this is a good workaround, it is not a fix.
Something has changed in the way the plugin loads. It is either WPML or Recaptcha plugin’s fault. With WPML having undergone a major update (4.0) I am inclined to believe WPML is at fault – but then again they could be doing a better job than other developers. Here is there explanation.
Authors, if you haven’t already done so, please can you respond to WPML attempts to contact you?
Cooperation would be more than appreciated.Forum: Plugins
In reply to: [Saeid Simple Text Rotator] Inline script breaks XML sitemapUnfortunately, the fix doesn’t do the job. It takes a while to test it because the sitemap isn’t regenerating ad hoc but when Yoast wants to.
Explanation found here: https://wordpress.stackexchange.com/questions/235905/how-to-add-inline-css-js-inside-a-shortcodeI’ve tried also adding
!is_feed()
before the shortcode is rendered, but that doesn’t seem to work either.Author, can we have some help here?
Forum: Plugins
In reply to: [Invisible reCaptcha for WordPress] Fatal ErrorHey @matrixmedia, see details here: https://www.ads-software.com/support/topic/incompatible-with-wpml-4-0-1/
I have the same problem.
I need to send as an alias of my G Suite mail account. Otherwise emails from WordPress are stored in the Sent Mail and sometimes even marked as read.There seems to be a function for this in Gmail API: https://developers.google.com/gmail/api/v1/reference/users/settings/sendAs
How complex would it be to incorporate this feature?
If you have a system in place how can make a feature request?Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] Multisite backups@duongcuong96, when will this fix be included in stable release?
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] Multisite backups@duongcuong96 the solution seems to work fine now.
Forum: Plugins
In reply to: [Testimonials Widget] Widget now showing 10 testimonials instead of 1Hi, this is not resolved.
I was on 3.4.2 Since last update 3.4.4 the shortcode provided in the admin list returns 10 random testimonials instead of a specific one.
Here is what I use:
[testimonials ids="777" paging="false"]
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] Multisite backupsNot fixed yet. Still having issues.
To recap:
- BackWPUp is Network activated.
- Got 4 subsites. Daily backup is running.
- 4 files are created each time. They all have a different hash and contain exactly the same files and DB backup.
- Test using
ALTERNATE_WP_CRON
. Seems daily backup schedule was not working for several weeks. - Set up manual cron on server. Deactivated WP CRON using
DISABLE_WP_CRON
. Still 4 backup file are created. - Create two additional subsites on network. Now I get 6 identical backup files in storage.
- Unfortunately these duplicate backups files count towards the File Deletion rule on local and remote storage. So I would have to use multiple of 6 to ensure I keep a number of days worth of backup.
- I recreated the backup job just in case there was some legacy settings lurking around. Still no success.
Please can you fix the Network version of the plugin? I am happy to provide more details if necessary.
Forum: Plugins
In reply to: [Termly - GDPR/CCPA Cookie Consent Banner] Inline JS not declared properly.Or an alternative would be to ensure the script loads only after jQuery is loaded. Maybe using dependencies.
Does the script have to be in the footer? If it cannot be loaded using
wp_enqueue_script
where a dependency can be defined, then how about using the following:
wp_add_inline_script( string $handle, string $data, string $position = 'after' );
where $handle is ‘jquery’.Forum: Plugins
In reply to: [Invisible reCaptcha for WordPress] Contact Form 7 Error Message EverytimeThe alert message is now gone.
Though I’m not convinced the recaptcha behaves properly.
On form submission, usually it would pop up the question to verify as not human. When I try in an incognito window, no pop up appear at all, and the google logo on page refreshes within a split second. Then the form submits as if no recaptcha verification was necessary.Forum: Plugins
In reply to: [Google Analytics for WooCommerce] Console errorsI’m experiencing a similar issue, where extra JS code is rendered visible on the page.
This JS is added after each Add to Basket buttons on product list. However it only seems to appear on my Storefront theme homepage and not in the shop page.
(function($) { $( '.products .post-58 a' ).click( function() { if ( true === $(this).hasClass( 'add_to_cart_button' ) ) { return; } ga( 'ec:addProduct', { 'id': '58', 'name': 'Small Crystal Nail File', 'category': 'Nail Files', 'position': '1' }); ga( 'ec:setAction', 'click', { list: 'Product List' }); ga( 'send', 'event', 'UX', 'click', ' Product List' ); }); })(jQuery);
Issue with shortcodes maybe?