Compatibility issue with Jet Builder for elementor plugin
-
Dear support team,
This quote plugin is causing a compatibility problem with my theme which uses a plugin called “JetWooBuilder for elementor”.
In fact, after installing the JetWooBuilder which is required by my theme, the “YITH WooCommerce Request A Quote” plugin no longer display the “add to quote” button (in french, it is called: ajouter au devis).
To confirm this strange behavior, after deactivating the JetWooBuilder plugin, the link called “Ajouter au devis” (which lets the customers able to add the product to quote request) is well shown as highlighted in yellow in this picture:
picture1
and after reactivating the “JetWooBuilder” plugin, the “add to quote link” and the “product title” are no longer shown as portrayed in the next picture (which corresponds to the product detail page of the same product:
picture2Note that even the product image disposition is affected compared to the first image.
After a deep investigation inside the “Yith Quote plugin”, I figured out a turnaround permitting to display the “Add to Quote button”. More precisely, inside the file (includes/class.yith-request-quote-frontend.php), in the constructor (construct), I changed the “add_action” as following:
//I changed //add_action( 'woocommerce_single_product_summary', array( $this, 'add_button_single_page' ), 35 ); //to: add_action( 'woocommerce_after_add_to_cart_quantity', array( $this, 'add_button_single_page' ), 2 );
Thanks to this slight modification of the used woocommerce hook, the Add to quote button becomes visible in the product detail page. But, several problems persist:
- After adding a product to quote, the input (quantity) field stills displayed in the product detail page.
- The add to cart button stills displayed in shop page even after checking the “hide add to cart button” option.
- The product title is not shown in the product detail page and the layout of the product picture is modified compared to its layout before activating the “Yith Quote plugin”.
Could you please tell me how to fix these problems?
- The topic ‘Compatibility issue with Jet Builder for elementor plugin’ is closed to new replies.