Alberto Martin
Forum Replies Created
-
Forum: Plugins
In reply to: [YITH Pre-Order for WooCommerce] Cannot Add products to cartHello there,
Their site is still under construction and you can’t see the product. I have tested it in my environment and it works without problem. Have you checked that the product has an assigned price?
Forum: Plugins
In reply to: [YITH WooCommerce Subscription] Plugin integration with StripeHi @diogohovo,
yes, the premium version of the plugin works with Stripe. For any issue concerning the premium version of the plugin, please, write to our support service at yithemes.com/my-account, otherwise it could be misleading for other users here on www.remarpro.com. Don’t worry, our support developers will certainly help you solve the issue you are experiencing.
Forum: Plugins
In reply to: [YITH WooCommerce Subscription] Range prices in varible productsHi @davidmtz,
I tried this code and it works without errors, maybe the problem is in another area of ??your functions.php file where you are adding the code.
I send you the code again in case there was an error
//Hide Price Range for WooCommerce Variable Products add_filter( 'woocommerce_variable_sale_price_html', 'lw_variable_product_price', 10, 2 ); add_filter( 'woocommerce_variable_price_html', 'lw_variable_product_price', 10, 2 ); function lw_variable_product_price( $v_price, $v_product ) { // Product Price $prod_prices = array( $v_product->get_variation_price( 'min', true ), $v_product->get_variation_price( 'max', true ) ); $prod_price = $prod_prices[0]!==$prod_prices[1] ? sprintf(__('%1$s', 'woocommerce'), wc_price( $prod_prices[0] ) ) : wc_price( $prod_prices[0] ); // Regular Price $regular_prices = array( $v_product->get_variation_regular_price( 'min', true ), $v_product->get_variation_regular_price( 'max', true ) ); sort( $regular_prices ); $regular_price = $regular_prices[0]!==$regular_prices[1] ? sprintf(__('%1$s','woocommerce'), wc_price( $regular_prices[0] ) ) : wc_price( $regular_prices[0] ); if ( $prod_price !== $regular_price ) { $prod_price = ''.$regular_price.$v_product->get_price_suffix() . ' ' . $prod_price . $v_product->get_price_suffix() . ''; } return $prod_price; }
Hi @andrewsllvn ,
I have tried different themes but I have not been able to replicate the problem, perhaps it is your specific theme or some other plugin that is affecting the behavior of the plugin.
Hi @gee911 ,
The plugin works without the need for the administrator to be connected to the backend.
I have been able to add a product to the quote list on your website, perhaps the problem has been that being a variable product, the product cannot be added until the variations are marked.
It also has various cached css and custom components that could affect how the plugin works.
Forum: Plugins
In reply to: [YITH Request a Quote for WooCommerce] “Request quote” page responsive issueHi @eyedia ,
I have tried other themes and it works fine, it is possible that you have a problem related to the responsiveness of your theme. Try changing the theme and checking if it works fine.
Hi @andrewsllvn ,
I have tried the FREE plugin and I don’t have that problem, You could try to change the theme to another default WordPress theme and check if it works.
Hi @bastiaanburg,
I have tried the latest version of the plugin and the version of php 7.4.1 and 8.0.0 and I don’t have those errors, it works without any problem with the FREE version
Forum: Plugins
In reply to: [YITH WooCommerce Subscription] Range prices in varible productsHi @davidmtz ,
Could you try modifying your code for the following?
//Hide Price Range for WooCommerce Variable Products add_filter( 'woocommerce_variable_sale_price_html', 'lw_variable_product_price', 10, 2 ); add_filter( 'woocommerce_variable_price_html', 'lw_variable_product_price', 10, 2 ); function lw_variable_product_price( $v_price, $v_product ) { // Product Price $prod_prices = array( $v_product->get_variation_price( 'min', true ), $v_product->get_variation_price( 'max', true ) ); $prod_price = $prod_prices[0]!==$prod_prices[1] ? sprintf(('%1$s', 'woocommerce'), wc_price( $prod_prices[0] ) ) : wc_price( $prod_prices[0] ); // Regular Price $regular_prices = array( $v_product->get_variation_regular_price( 'min', true ), $v_product->get_variation_regular_price( 'max', true ) ); sort( $regular_prices ); $regular_price = $regular_prices[0]!==$regular_prices[1] ? sprintf(('%1$s','woocommerce'), wc_price( $regular_prices[0] ) ) : wc_price( $regular_prices[0] ); if ( $prod_price !== $regular_price ) { $prod_price = ''.$regular_price.$v_product->get_price_suffix() . ' ' . $prod_price . $v_product->get_price_suffix() . ''; } return $prod_price; }
Hello @andersonviviel ,
If you have installed the premium version of the plugin, you can write to our support service at yithemes.com/my-account, otherwise it could be misleading to other users here on www.remarpro.com. Don’t worry, our support developers will certainly help you solve the problem you are experiencing.
Forum: Plugins
In reply to: [YITH WooCommerce Subscription] Problems with PaypalHi @diymama ,
the subscription Free plugin only works with Paypal. If the date has already passed, it cannot be renewed,it would have to be done manually.
For any issue concerning the premium version of the plugin, please, write to our support service at yithemes.com/my-account, otherwise it could be misleading for other users here on www.remarpro.com. Don’t worry, our support developers will certainly help you solve the issue you are experiencing.
Forum: Plugins
In reply to: [YITH WooCommerce Subscription] Plugin integration with StripeHi @diogohovo ,
Unfortunately the subscription Free plugin only works with Paypal.
Forum: Plugins
In reply to: [YITH WooCommerce Cart Messages] Coupon free shippingHello @chiarelliarreda ,
Both versions do not have this feature, but you could contact us on yithemes.com for a further discussion.
Forum: Plugins
In reply to: [YITH WooCommerce Subscription] helloHi @nivben27,
I’m very sorry but the minimum WordPress version has to be 5.6.
Forum: Plugins
In reply to: [YITH WooCommerce Subscription] Subscription Status HooksHi @iamchris48,
We do not have an exclusive documentation with the hooks that exist, but if you are using the premium version of the plugin, you can write to our support service at yithemes.com/my-account, otherwise it could be misleading for other users here on www.remarpro.com. Don’t worry, our support developers will definitely help you solve the problem or questions you may have.