webmasteral
Forum Replies Created
-
Forum: Plugins
In reply to: [Conditional Fields for Contact Form 7] this issue still seems to existI am also using Accordion Blocks Version 1.5.0 By Phil Buchanan but not in use on this form but it is present within the wordpress site. The server is running PHP 7.4 atm and Im trying to think of any other plugin that could interfere.
Forum: Plugins
In reply to: [Conditional Fields for Contact Form 7] this issue still seems to existTheme – Twenty Fourteen.
Plugin – “Popup Maker” Version 1.20.5 to house the contact form.
Plugin – “Contact Form 7” Version 6.1 to create the contact form.
Plugin – “Conditional Fields for Contact Form 7” Version 2.6 (with my personal edits currently) to cause a field in the contact form to expand if it is chosen from a dropdown.Hope that helps
- This reply was modified 11 months, 1 week ago by webmasteral. Reason: clarification
Forum: Plugins
In reply to: [Conditional Fields for Contact Form 7] this issue still seems to existHere is a link to the post directly
https://ww.wp.xz.cn/support/topic/error-with-2-5-6/Forum: Plugins
In reply to: [Conditional Fields for Contact Form 7] this issue still seems to existyes, I posted it on another post in this form, look for my username, probably on page 2 by now. It’s two sections of code that need to be updated in the script.js file
I think its something to do with the “save changes” on the “additional settings” tab. If I press that “save changes” then it goes blank on next refresh.
Whats crazy is if I dont leave the plugin page after “Success! Your website is connected to Cloudflare Turnstile” everything works fine but the moment I refresh the plugin page, its all blank again like I never entered it.
Forum: Plugins
In reply to: [Conditional Fields for Contact Form 7] Error with 2.5.6So I was able to solve the problem by updating the following code in js\scripts.js
const buttonEntries = [ ... jQuery('button', form.$form).get() ].map(entry => [entry.name, entry.value]);
//const buttonEntries = [ ... jQuery('button', form.$form) ].map(entry => [entry.name, entry.value]);
---- and ----
/*Wpcf7cfForm.prototype.updateGroups = function() {
const form = this;
form.$groups = form.$form.find('[data-class="wpcf7cf_group"]');
form.$groups.height('auto');
form.conditions = window.wpcf7cf.get_nested_conditions(form);
};*/
Wpcf7cfForm.prototype.updateGroups = function() {
const form = this;
// Find the groups and make sure they are safely iterable
form.$groups = form.$form.find('[data-class="wpcf7cf_group"]');
// Set the height to 'auto' for each group
form.$groups.height('auto');
// Convert jQuery object to an array for iterable functionality
const groupsArray = form.$groups.toArray();
// Optionally, you can now loop over each group using forEach or another method
groupsArray.forEach(function(group) {
// Handle each group here if necessary
// Example: console.log(group);
});
// Now fetch conditions and assign them
form.conditions = window.wpcf7cf.get_nested_conditions(form);
};
I hope this information is helpful to youForum: Plugins
In reply to: [Conditional Fields for Contact Form 7] Error messageI also got this error. I uninstalled and did a fresh install of the plugin.
I am now seeing this error in my browserUncaught TypeError: jQuery(...) is not iterable
updateSimpleDom https://www.example.com/wp-content/plugins/cf7-conditional-fields/js/scripts.js?ver=2.5.6:111
wpcf7cf_timeout https://www.example.com/wp-content/plugins/cf7-conditional-fields/js/scripts.js?ver=2.5.6:410Also the animations are no longer working.
When digging through the error logs I finally found the following
PHP Fatal error: Uncaught Error: Class ‘Wbcr_Factory465_Requirements’ not found in /home/public_html/websites/wp-content/plugins/hide-login-page/hide-login-page.php:74
Stack trace: 0 /home/public_html/websites/wp-settings.php(473): include_once() 1 /home/public_html/websites/wp-config.php(81): require_once(‘/home/p11iqgg22…’) 2 /home/public_html/websites/wp-load.php(50): require_once(‘/home/…’) 3 /home/public_html/websites/wp-blog-header.php(13): require_once(‘/home/…’) 4 //home/public_html/websites/index.php(17): require(‘/home/…’) 5 {main}thrown in /home/public_html/websites/wp-content/plugins/hide-login-page/hide-login-page.php on line 74
hope that helps
My thought was maybe because the plugin is not downloadable during this locked review process the update process isnt happening correctly.
There was no php errors sadly. No errors at all other then the custom url no longer working.
What happened is on the 27th the update was applied, after that links that normally pointed to (custom login url example: hello) pointed to wp-login.php like the login button went from /hello back to /wp-login.php
I tried to turn the plugin off and back on, change the url, hide the default url on/off the link for the login button did not change.
Rolling the plugin back to 1.1.7 caused the url to point again to the correct url.I was not able to investigate the issue further as my clients customers were messaging about noting being able to login but if I had time I wish I could have checked the DB to see if the url value was being updated.
I should also mention this “bug” did not replicate itself on my other clients websites that also use this plugin but those updates were applied before the plugin was locked for review.
During the clients next maintenance window I was planning on DL the plugin from client A and uploading it to client B (the one that had the issue) and see if that solve the issue or if the issue re-appears.
- This reply was modified 2 years, 6 months ago by webmasteral.
After more tests it looks like everything is working correctly and I am going to mark this issue as closed and resolved.
Thank you again for your support in helping me set your plugin up correctly.
Waited 20min, tried the test again and that seems to have worked.
I still need to test and see if when a guest post is created and held for review a notification is created and sent.
I will preform more tests through the day and let you know if I have any future issues with notifications being created or sent.
When I set the skip timer down to 1 min (and wait 5min) between tests I am still getting a “skipped” This notification is very similar to another one sent less than 1 minutes ago for the same receiver
First test – 2023-10-18 11:00:55
Second test – 2023-10-18 11:05:19
Not sure why im getting the skipped message if longer then 1min has passed between notifications?
I have uncheck the box for Asyn Notifications and retesting the notification
Thank you for your continued support
WP-Cron is active and working but your notification plugin keeps giving me aError: The notification was set as “Scheduled” but the cron task is not found
(asynchronous)When I followed the troubleshooting it said to install “Advanced Cron Manager” plugin. After installing that plugin I was able to confirm the WP-Cron is running just fine. I can also create a cron job inside that plugin but I need to type in the “hook” to be called to push the notification out.
What I would like to know is what hook can I use to create a cron inside “advance cron manager” so that your plugin no longer gives me the error
(“Scheduled” but the cron task is not found)
What cron task is your plugin looking for I guess is another way to ask the question?