Home Forums WoodMart support forum WooCommerce Extra Product Options error in Product Archiv Page

WooCommerce Extra Product Options error in Product Archiv Page

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #409806

    Mugi
    Participant

    Good 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,
    Christoph

    Attachments:
    You must be logged in to view attached files.
    #409839

    Hello,

    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

    #409981

    Mugi
    Participant

    Sorry, 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.
    #410157

    Hello,

    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 SVG

    If 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

    #410700

    Mugi
    Participant

    I have tried unfortunately no change

    #411129

    Hello,

    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

    #411428

    Mugi
    Participant

    have made the backup

    #411922

    Hello,

    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

Viewing 8 posts - 1 through 8 (of 8 total)