alansnell
Forum Replies Created
-
Perfect, thank you both.
I went for the simple hide row visibility route.
Cheers
Al
- This reply was modified 4 years, 4 months ago by alansnell.
Thankyou @jasonlazarus this also cleared my orange error code in contact form 7 with SG Optimiser
jasonlazarus (@jasonlazarus)
9 months ago
I believe I found the issue. It had to do with my cache plugin. We use SG Optimizer – I excluded some of the Defer Render-blocking JS settings – There are 21. /plugins/contact-form-7/includes/js/scripts.js
2. https://www.google.com/recaptcha/api.js?render= WITH A BUNCH OF CHARACTERS HEREWHen I added these to FRONTEND> Defer Render-blocking JS it worked just fine
Hi @prashantrai
OPTION 2 worked for me and all is now working as it should.
Many thanks for your helpRegards
Al
OPTION ONE reslted in the following error code:
Fatal error: Uncaught RuntimeException: Error saving action: Error saving action: Table ‘alansnel_twenty7.wp_actionscheduler_actions’ doesn’t exist in /home/alansnel/public_html/twenty7.net/wp-content/plugins/wpforms-lite/vendor/woocommerce/action-scheduler/classes/migration/ActionScheduler_DBStoreMigrator.php:44 Stack trace: #0 /home/alansnel/public_html/twenty7.net/wp-content/plugins/wpforms-lite/vendor/woocommerce/action-scheduler/classes/data-stores/ActionScheduler_HybridStore.php(242): ActionScheduler_DBStoreMigrator->save_action(Object(ActionScheduler_Action), NULL) #1 /home/alansnel/public_html/twenty7.net/wp-content/plugins/wpforms-lite/vendor/woocommerce/action-scheduler/classes/ActionScheduler_ActionFactory.php(177): ActionScheduler_HybridStore->save_action(Object(ActionScheduler_Action)) #2 /home/alansnel/public_html/twenty7.net/wp-content/plugins/wpforms-lite/vendor/woocommerce/action-scheduler/classes/ActionScheduler_ActionFactory.php(84): ActionScheduler_ActionFactory->store(Object(ActionScheduler_Action)) # in /home/alansnel/public_html/twenty7.net/wp-content/plugins/wpforms-lite/vendor/woocommerce/action-scheduler/classes/migration/ActionScheduler_DBStoreMigrator.php on line 44
There has been a critical error on your website. Please check your site admin email inbox for instructions.I’m having the same issues and a similar error message but haven’t received a solution yet from wpforms that works
Any futrher assistance please?
I’ve had to switch to another forms plugin but I would rather stick with a wpforms that doesn’t crash my site @prashantraiThankyou
The theme function code didn’t appear to work
Disabling the server response cache did work but caused problems if you delete items from your cart and update your cart. It would still show items in your cart that you have deleted
- This reply was modified 4 years, 8 months ago by alansnell.
Hi @prashantrai
I can’t access “WPForms > Tools > Scheduled Actions” because activating WPFoms-lite instantly crashes the site.
Following the link to “Troubleshoot Action Scheduler Issues (WP Mail SMTP 2.1.1)” I don’t have “WP Mail SMTP Plugin” in my plugins folder so cannot disable that.
Running the Action Scheduler plugin also instntly crashes my site with the following error message. I have to rename the action schedular plugin to re-access the webite.
Can you please advise further?
Thanks
Al
Fatal error: Uncaught RuntimeException: Error saving action: Error saving action: Table ‘alansnel_twenty7.wp_actionscheduler_actions’ doesn’t exist in /home/alansnel/public_html/twenty7.net/wp-content/plugins/wpforms-lite/vendor/woocommerce/action-scheduler/classes/migration/ActionScheduler_DBStoreMigrator.php:44 Stack trace: #0 /home/alansnel/public_html/twenty7.net/wp-content/plugins/wpforms-lite/vendor/woocommerce/action-scheduler/classes/data-stores/ActionScheduler_HybridStore.php(242): ActionScheduler_DBStoreMigrator->save_action(Object(ActionScheduler_Action), NULL) #1 /home/alansnel/public_html/twenty7.net/wp-content/plugins/wpforms-lite/vendor/woocommerce/action-scheduler/classes/ActionScheduler_ActionFactory.php(177): ActionScheduler_HybridStore->save_action(Object(ActionScheduler_Action)) #2 /home/alansnel/public_html/twenty7.net/wp-content/plugins/wpforms-lite/vendor/woocommerce/action-scheduler/classes/ActionScheduler_ActionFactory.php(84): ActionScheduler_ActionFactory->store(Object(ActionScheduler_Action)) # in /home/alansnel/public_html/twenty7.net/wp-content/plugins/wpforms-lite/vendor/woocommerce/action-scheduler/classes/migration/ActionScheduler_DBStoreMigrator.php on line 44
There has been a critical error on your website. Please check your site admin email inbox for instructions.Learn more about debugging in WordPress.
No help then, nothing, not even to say you don’t know what the problem is!
Any potential solution here? I’d like to keep using Ninja but I can’t if it breaks the function of my cart on mobile
Forum: Plugins
In reply to: [WooCommerce] Product category modificationsWorked it out, 3 columns on the site then 2 columns for three of the categories, this worked in the functions.php
// Change columns in product loop to 3
function loop_columns() {
if ( is_product_category( ‘panoramic-canvas’, ‘mousemats’, ‘mugs’ ) ) {
return 2;
} else {
return 3;
}
}add_filter( ‘loop_shop_columns’, ‘loop_columns’ );
function woocustom_ninja_hook() {
remove_action( ‘woocommerce_after_shop_loop_item_title’, ‘woocommerce_template_loop_price’, 10);
remove_action( ‘woocommerce_after_shop_loop_item’, ‘woocommerce_template_loop_add_to_cart’, 10);
}
add_action(‘init’, ‘woocustom_ninja_hook’);————————————————————–
and something like this in the custom.cssul.products li.product {
width: 31%;
margin-right: 2.8%;
}.term-mousemats ul.products li.product, .term-mugs ul.products li.product, .term-panoramic-canvas ul.products li.product {
width:47% !important;
margin-right: 2.8% !important;
clear: none; !important
}