ruthkl
Forum Replies Created
-
Hi there, many thanks for replying! I installed your beta version of the plugin and I can’t find a way of using WP Bakery Builder to build content blocks. There is only a simple text field for adding content, there is no option to switch to WP Bakery Builder.
At the WP Bakery Builder Role Manager I can’t see any option to enable your Content Blocks…
Maybe I am missing something here. Could you tell me what I have to do to enable WP Bakery Builder in Content Blocks?
Many thanks in advance!
Forum: Plugins
In reply to: [Message Filter for Contact Form 7] How to block spam with linkHi there,
I tested your newest release, and messages like “visit xxx.co.uk!” are still not being flagged as spam even though I have added [link] as a spam word.
Many thanks four your help!
- This reply was modified 5 months, 1 week ago by ruthkl.
Forum: Plugins
In reply to: [Message Filter for Contact Form 7] How to block spam with linkHi there,
many thanks for your reply. I will wait for the next release then. I just wanted to let you know what the exact problem is: if there is a link without www or http, like domain.co.uk instead of https://www.domain.co.uk, then the message is not been flagged as spam in the version that I am currently using.
Forum: Plugins
In reply to: [Message Filter for Contact Form 7] How to block spam with linkHi, here is the text that I copied:
{"spam_words":"[russian],[link]","spam_emails":"[email protected],[email protected]","is_contact_form_7_filter_enabled":"Yes","is_spam_filter_enabled":"Yes","is_message_filter_enabled":"Yes","is_wp_forms_filter_enabled":"No","is_sync_allowed":"No","plugin_version":"1.6.2.1","contact_form_7_version":"5.9.8","wp_forms_version":"","wordpress_version":"6.6.2","php_version":"8.2.23"}
Many thanks!
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Deprecated warningI am not sure if I should include this into the same topic, but I am also getting the following warnings:
Warning: Cannot modify header information – headers already sent by (output started at …/wp-content/plugins/google-calendar-events/includes/calendars/views/default-calendar-grid.php:174) in …/wp-admin/includes/misc.php on line 1438
Warning: Cannot modify header information – headers already sent by (output started at …/wp-content/plugins/google-calendar-events/includes/calendars/views/default-calendar-grid.php:174) in …/wp-includes/functions.php on line 7108
Warning: Cannot modify header information – headers already sent by (output started at …/wp-content/plugins/google-calendar-events/includes/calendars/views/default-calendar-grid.php:174) in…/wp-admin/admin-header.php on line 9- This reply was modified 5 months, 2 weeks ago by ruthkl.
Great, thanks a lot!
Forum: Plugins
In reply to: [Easy Table of Contents] Enable Sticky TOC only on some pagesThanks a lot!
Forum: Plugins
In reply to: [Conditional Fields for Contact Form 7] Calls to webpackBrilliant! Thanks a lot!
Forum: Plugins
In reply to: [Jellyfish Counter Widget] Create a dynamic counterHi, I found out how to pass dynamic values as parameters to a shortcode.
In my functions.php I created an own shortcode with an attribute $date_of_birth. Then I calculate the age, and pass it on to the real counter shortcode using do_shortcode().
function age_counter_shortcode($atts) { extract( shortcode_atts( array( 'date_of_birth' => '01.01.2000', ), $atts ) ); $counter_value = (date('Y') - date('Y',strtotime($date_of_birth))); return do_shortcode("[jellyfish_counter end='{$counter_value}']"); } add_shortcode('age_counter', 'age_counter_shortcode');
- This reply was modified 1 year, 5 months ago by ruthkl.