Home › Forums › WoodMart support forum › WooCommerce Extra Product Options error in Product Archiv Page
WooCommerce Extra Product Options error in Product Archiv Page
- This topic has 7 replies, 2 voices, and was last updated 2 years, 3 months ago by Elise Noromit.
-
AuthorPosts
-
October 2, 2022 at 6:51 pm #409806
MugiParticipantGood day,
there is an error in the display on the products archive page https://lilafleur.at/shop/ . As soon as I configure a product with the WooCommerce Extra Product Options plugin, an error is produced at select options. The quantity popup is displayed incorrectly and I can’t get to the product page via the select options field.
Is there a way to hide the select option on the product archive page, so that you only get to the product page.
Or is there a way to show the parameters set with WooCommerce Extra Product Options in the field.Thanks a lot in advance.
Kind regards,
ChristophAttachments:
You must be logged in to view attached files.October 3, 2022 at 3:48 am #409839
Elise NoromitMemberHello,
Most likely this plugin is not compatible with WoodMart. Please try to set the Standard buttons in the Theme Settings > Product Archives > Product Styles.
In addition, disable the quantity field in the product grid.
If you have any questions please feel free to contact us.
Best Regards
October 3, 2022 at 3:14 pm #409981
MugiParticipantSorry, forgot to mention that none of the standart Woodmart settings fix the error.
When the quantity is turned off, the “Add Cart” button is the error and does not work either.
Is there any way to make the “select option” button a “continue to product”? That would be enough.
Attachments:
You must be logged in to view attached files.October 4, 2022 at 2:40 am #410157
Elise NoromitMemberHello,
Please deactivate all the plugins except these ones:
Slider Revolution
WPBakery Page Builder or Elementor
Woodmart Core
Contact Form 7
MailChimp for WordPress
WooCommerce
Safe SVGIf the problem has gone, activate the plugins one by one, checking the issue to detect which one causes the problem.
In case, the problem remains, even after all the plugins are deactivated, provide your site admin access (insert the site credentials into the Private content block under the message area) and confirm the permission for plugins deactivation, switching to the parent or default theme. As soon as we complete the testing we will enable all back, however, the site would be without plugins for 15-20 min. You would better make the full backup of your site.
Best Regards
October 4, 2022 at 9:11 pm #410700
MugiParticipantI have tried unfortunately no change
October 6, 2022 at 3:31 am #411129
Elise NoromitMemberHello,
When did it stop working?
Please make the full backup of your site we will check without plugins and on the parent theme.
Best Regard
October 6, 2022 at 6:22 pm #411428
MugiParticipanthave made the backup
October 8, 2022 at 2:51 am #411922
Elise NoromitMemberHello,
Please add this code to the functions.php of the child theme:
if ( ! function_exists( 'wd_update_add_to_cart_btn' ) ) { function wd_update_add_to_cart_btn() { remove_action( 'woodmart_add_loop_btn', 'woocommerce_template_loop_add_to_cart', 10 ); add_action( 'woodmart_add_loop_btn', function () { global $product; echo '<a href="' . $product->get_permalink() . '" class="button product_type_variable add_to_cart_button add-to-cart-loop" rel="nofollow"><span>' . esc_html__('add_to_cart', 'woodmart' ) . '</span></a>'; }, 15 ); } add_action( 'wp', 'wd_update_add_to_cart_btn', 15 ); }
Best Regards
-
AuthorPosts
- You must be logged in to create new topics. Login / Register