Riversatile
Forum Replies Created
-
Hi,
No need to worry and wait a fix for this from the Turnstile or Elementor plugins developpers.
I was experiencing the same issue like all of you.
Don’t forget that Elementor editor allows you to set “Enable” (by default) or “Disable” cache on every Elementor Widget ! So, disable cache specifically for your Elementor Form widget, then the issue goes away.Cheers 😉
Hi,
Don’t forget that Elementor editor allows you to set “Enable” (by default) or “Disable” cache on every Elementor Widget ! So, try to Disable cache specifically for your Elementor Form widgets, then check if the issue goes away.
Hi everyone,
No need to worry and wait a fix for this from the Turnstile or Elementor plugins developpers.
I was experiencing the same issue like all of you.
I also noticed that purge Elementor’s cache with “Clear Files & Data” button solves the issue (temporarily).
But clearly, I would not imagine to purge each hour with a scheduled task/cron.Today, I found the final solution.
I remembered that Elementor editor allows to set “Enable” (by default) or “Disable” cache on every Elementor Widget ! So, I disabled cache specifically for my Elementor Form widget, then the issue goes away for ever.
Hello Turnstile !Cheers 😉
Hi,
Thanks for your reply and your support.
I can confirm the issue is now solved thanks to this last release.
Many thanksHi,
It’s easier to send you the configuration Json file.
{"fragment_prefix":"i","position":"before","start":"4","show_heading_text":"1","heading_text":"Sommaire","enabled_post_types":{"post":"post"},"show_hierarchy":"1","counter":"decimal","smooth_scroll_offset":"50","width":"auto","width_custom":"275","width_custom_units":"px","wrapping":"none","title_font_size":"120","title_font_size_units":"%","title_font_weight":"500","font_size":"95","font_size_units":"%","theme":"grey","custom_background_colour":"#fff","custom_border_colour":"#ddd","custom_title_colour":"#999","custom_link_colour":"#428bca","custom_link_hover_colour":"#2a6496","custom_link_visited_colour":"#428bca","heading_levels":{"1":"1","2":"2","3":"3","4":"4","5":"5","6":"6"},"css_container_class":"","exclude":"Ces articles pourraient vous int\u00e9resser","lowercase":"1","hyphenate":"1","toc_loading":"js","smooth_scroll":"1","child_font_size":"90","child_font_size_units":"%","fixedtoc":"0","custom_para_number":"1","counter-position":"inside","sticky-toggle-position":"left","sticky-toggle-width":"auto","sticky-toggle-height":"auto","sticky-toggle-open-button-text":"Sommaire","headings-padding-top_units":"px","headings-padding-bottom_units":"px","headings-padding-left_units":"px","headings-padding-right_units":"px","heading-text-direction":"ltr","mobile_smooth_scroll_offset":"50","heading_text_tag":"p","disable_in_restapi":"1","sticky-toggle-alignment":"top","custom_img_number":"1","visibility_hide_by_device":{"mobile":"mobile","desktop":"desktop"},"font_weight":"500","load_js_in":"footer","no_heading_text_value":"No heading found","truncate_headings_words":"5","truncate_headings_special":":","sticky-post-types":{"post":"post"},"sticky-toggle-width-custom_units":"px","sticky-toggle-height-custom_units":"px","sticky-toggle-close-on-mobile":"1","sticky-toggle-close-on-desktop":"1","sticky-toggle":"1","headings-padding-top":"0","headings-padding-bottom":"0","headings-padding-left":"0","headings-padding-right":"0","device_target":"","restrict_path":"","restrict_url_text":"","widget_affix_selector":"","truncate_headings":"","sticky_device_target":"","sticky-toggle-width-custom":"","sticky-toggle-height-custom":"","sticky_restrict_url_text":"","blockqoute_checkbox":"0","visibility_on_header_text":"0","visibility":"0","visibility_hide_by_default":"0","avoid_anch_jump":"0","toc-run-on-amp-pages":"0","toc_wrapping":"0","headings-padding":"0","include_homepage":"0","include_category":"0","include_tag":"0","include_product_category":"0","include_custom_tax":"0","exclude_css":"0","inline_css":"0","schema_sitenav_checkbox":"0","schema_sitenav_yoast_compat":"0","all_fragment_prefix":"0","add_request_uri":"0","add_self_reference_link":"0","remove_special_chars_from_title":"0","show_title_in_toc":"0","generate_toc_link_ids":"0","enable_memory_fix":"0","prsrv_line_brk":"0","ajax_load_more":"0","no_heading_text":"0","disable_toc_links":"0","sticky_include_homepage":"0","sticky_include_category":"0","sticky_include_tag":"0","sticky_include_product_category":"0","sticky_include_custom_tax":"0","sticky-toggle-open":"0","mediavine-create":"0","goodlayers-core":"0","molongui-authorship":"0","delete-data-on-uninstall":"0"}- Import these data in a Json file from “Import/Export Settings” of your test system.
- Check that “Sticky TOC” feature is enabled only for POSTS.
- Then check the Heading Title code on your PAGES (not posts). You’re supposed to see the same problem.
<h1><span class="ez-toc-section" id="test"></span>Test<span class="ez-toc-section-end"></span></h1>Hi,
Thanks for your reply.
New release of Booking and Rental Manager Pro solved the JS issue revealed in the console, but the main issue still occurs.
The fields still look misplaced.After a quick look in the CSS, I found some differences.
When Booking and Rental Manager Pro is enabled, the plugin add stripe.css file.
The “height” property is causing the issue.
Here is the result when Booking and Rental Manager Pro is disabled

- This reply was modified 1 year ago by Riversatile.
Forum: Plugins
In reply to: [Responsive Gallery Grid] breaking WP log-in, only admin users can log inSince version 2.3.16, developper added a security check based on the “manage_options” capability into the file “rgg-options.php”.
Because of this, users that doesn’t have this capability (all but administrators) may encounter the message “You do not have sufficient permissions to access this page.”From version 2.3.16, for best practice the developper should implement a “Role Management” section into the RGG settings panel, and accordingly adapt the security check added in “rgg-options.php” (since version 2.3.16).
Here is a Fix in case your users face “You do not have sufficient permissions to access this page.” in the WordPress Dashboard.
- Find the WordPress capability that is common to the different users who must access to the WordPress Dashboard.
eg: “manage_woocommerce” if users have the “Shop Manager” role
eg: “edit_page” if users have the “Editor” role
eg: “read” if users have the “Subscriber” role - Add the code below into the functions.php file of your child theme
(replace the below bold capability with the one depending your case)
remove_action('admin_init', 'rgg_admin_init');
add_action('admin_init', 'FIX_rgg_admin_init');
function FIX_rgg_admin_init(){
if (!current_user_can('manage_woocommerce')) {
wp_die('You do not have sufficient permissions to access this page.');
}
register_setting( RGG_OPTIONS, RGG_OPTIONS, 'rgg_options_sanitize' );
add_settings_section('rgg_main', 'Main Settings', 'rgg_section_text', RGG_PLUGIN);
add_settings_field('rgg_text_string', 'Plugin Text Input', 'rgg_setting_string', RGG_PLUGIN, 'rgg_main');
}Forum: Plugins
In reply to: [Responsive Gallery Grid] Latest update breaks all public AJAX callsSince version 2.3.16, developper added a security check based on the “manage_options” capability into the file “rgg-options.php”.
Because of this, users that doesn’t have this capability may encounter the message “You do not have sufficient permissions to access this page.”From version 2.3.16, the developper should implement a “Role Management” section into the RGG settings panel, and accordingly adapt the security check added in “rgg-options.php” (since version 2.3.16).
Here is a Fix in case you faces “You do not have sufficient permissions to access this page.”
- Find the WordPress capability that is common to the different users who must access to Responsive Gallery Grid, and/or should not get the error message.
eg: “manage_woocommerce” if users have the “Shop Manager” role
eg: “edit_page” if users have the “Editor” role - Add the code below into the functions.php file of your child theme
remove_action('admin_init', 'rgg_admin_init');
add_action('admin_init', 'FIX_rgg_admin_init');
function FIX_rgg_admin_init(){
if (!current_user_can('manage_woocommerce')) {
wp_die('You do not have sufficient permissions to access this page.');
}
register_setting( RGG_OPTIONS, RGG_OPTIONS, 'rgg_options_sanitize' );
add_settings_section('rgg_main', 'Main Settings', 'rgg_section_text', RGG_PLUGIN);
add_settings_field('rgg_text_string', 'Plugin Text Input', 'rgg_setting_string', RGG_PLUGIN, 'rgg_main');
}Sorry, but I see a lots of these notice in :
/wp-admin/edit.php&post_status=all&post_type=pageWhere post-type=page, not on products.
En effet, j’ai vu que vous utilisiez la bonne fonction wc_get_order_item_meta dans 2 de vos fichiers.
Nous avons bien sûr la dernière version du plugin (2.0.1).
Malheureusement, debug.log n’affiche que ceci :[12-Jun-2024 07:31:51 UTC] The WC_Order::get_item_meta function is deprecated since version 3.0. Replace with wc_get_order_item_meta.Je vais devoir creuser en mode “recherche dans les fichiers” de nos autres extensions.
Je vous remercie de votre retour.- This reply was modified 1 year, 11 months ago by Riversatile.
Thanks @razyrx
Forum: Plugins
In reply to: [YARPP - Yet Another Related Posts Plugin] WordPress bug related to YARPPMême souci de mon côté pour ces fichiers de traduction (merci pour l’info @pierreripka).
Une erreur de type E_ERROR a été causée dans la ligne 1045 du fichier /home/xxxxxx/public_html/yyyyyy/wp-content/zzzzzz/yet-another-related-posts-plugin/^_^/YARPP_Admin.phpConcernant la vulnérabilité émise, même si j’ai la protection OWASP chez Cloudflare, perso j’ai préféré désactiver YARPP en attendant la version patchée qui apparemment ne devrait plus tarder.
- This reply was modified 3 years ago by Riversatile.
Hi,
I did not add any CSS fix got the moment.
What I’ve done was disable your plugin, then sent new issue validation request to Google. After 2 days, the issue was solved. So I was pretty sure the issue came from “Easy Table of Contents”.
Then I activated back the plugin to allow you to troubleshoot the issue.
And now, Google doesn’t notify me about something that fails that deals with “clickable elements too close.Thank you
More detailed screenshots :
Screenshots- This reply was modified 4 years, 1 month ago by Riversatile.