WPXtension
Forum Replies Created
-
Forum: Plugins
In reply to: [PVT - Product Variation Table for WooCommerce] Cart redirection not workingHi,
Thanks for getting back to us. I am sorry for our late response.
Basically, we have changed the cart behavior of WooCommerce to control notice(after cart).
So, ‘redirection after the cart’ will not work. But it is a great idea, I am keeping it as a feature request.
We will look into it and will try to release a new version with this functionality.
But it will take time to research. I hope you will understand.
Thanks
Hi,
If your wholesale plugin didn’t customize the
get_price_html()function the above snippet should work.Which plugin you are using for wholesale functionality?
Hope to hear from you soon!
Thanks
Hi,
I am very glad that it worked.
BTW, if you found this plugin and my support helpful; my humble request to you to write your beautiful words here.
Thanks in advance for your beautiful words
Hi Karen,
Thanks for reaching out to us. Please try the below code at your child theme’s functions.php or use it as a snippet using the Code Snippets plugin-
add_filter('pvtfw_row_cart_btn_oos', function( $text, $product_id, $cart_url, $product_url, $variant_id){ $new_text = __('Currently licensed', 'product-variant-table-for-woocommerce'); $btn = sprintf( '<button class="pvtfw_variant_table_cart_btn button alt" disabled> <span class="pvtfw-btn-text">%s</span> <div class="spinner-wrap"><span class="flaticon-spinner-of-dots"></span></div> </button>', $new_text ); return $btn; }, 10, 5);Please let us know if you wanted something like this or not.
Hope to hear from you soon!
Hi,
Thanks for reaching out to us. Please try the below snippet.
Note: You can place the below code at your child theme’s functions.php or snippet using the Code Snippets plugin
if( class_exists('PVTFW_TABLE' )){ function pvt_adp_price_condition( $price_html, $single_variation ){ return $single_variation->get_price_html(); } add_filter( 'pvtfw_price_html', 'pvt_adp_price_condition', 10, 2 ); }Then check if it resolves your issue or not.
Hi,
You are using Divi builder for product layout.
Basically, Divi changed the basic behavior of WooCommerce Cart Notice Wrapper.
That’s why PVT couldn’t find that wrapper to push notifications.
We have tried to fix this but it affects other themes.
If we can find a solution in near future we will update it.
Thanks in advance for understanding.
Hi,
It should work for each product if it works for one product. Can you please confirm whether both products’ setups are the same or not?
You can change the “Available Options” text from the plugin settings page. Setting page > Settings Tab > Available Options Button Text
Thanks
Hi,
Thanks for reaching out to us.
1. add to cart button is not working.
From our inspection, our plugins add to cart script is not running on your single product page. Did you customize anything?
2. Is it possible to add a little bit of spacing after each column in mobile view (see the attached screenshot)?
Please try the below CSS at Appearance > Customize > Additional CSS–
@media screen and (max-width: 767px){ table.variant tbody tr:not(:last-child) { margin-bottom: 20px;display: table; } }3. Is it possible to hide the Available Options text?
Do you want to change the text or hide the text? If you want to hide the button please go to Plugin Setting page > Settings Tab and uncheck the Available Options Button checkbox then save.
Thanks
Hi,
Thanks for reaching out to us and for your interest in our plugin.
Unfortunately, you can’t change the look and feel of PVT using Divi Builder.
Because right now, we have no Divi module feature. To change the style of PVT you should write custom CSS on your own.
Hopefully, this information will help.
Thanks
Thanks a lot. ❤
Have a nice day! 🙂
Hi,
Thanks for reaching out to us. Please place the below code at your child theme’s functions.php or create a snippet using Code Snippets plugin and add the below code as a snippet-
For Mobile
add_filter( 'pvtfw_image_link_title', function( $description_title ){ return __('Photo', 'product-variant-table-for-woocommerce'); } );For Desktop
add_filter( 'pvtfw_columns_labels', function( $columns ){ $default_column_labels = array( 'image_link' => __('Photo', 'product-variant-table-for-woocommerce'), 'sku' => __('SKU', 'product-variant-table-for-woocommerce'), 'variation_description' => __('Description', 'product-variant-table-for-woocommerce'), 'attributes' => __('Attributes', 'product-variant-table-for-woocommerce'), 'dimensions_html' => __('Dimensions', 'product-variant-table-for-woocommerce'), 'weight_html' => __('Weight', 'product-variant-table-for-woocommerce'), 'availability_html' => __('Stock', 'product-variant-table-for-woocommerce'), 'price_html' => __('Price', 'product-variant-table-for-woocommerce'), 'quantity' => __('Quantity', 'product-variant-table-for-woocommerce'), 'action' => __('Action', 'product-variant-table-for-woocommerce'), ); return $default_column_labels; } );The above is enough to change the Title. 🙂
BTW, if you found this plugin and my support helpful; my humble request to you to write your beautiful words here.
Thanks in advance for your beautiful words.
Forum: Plugins
In reply to: [PVT - Product Variation Table for WooCommerce] Make default Value equal ZeroHi,
Thanks for reaching out to us. We are very glad that you found the option to stop table breakdown.
Unfortunately, this feature is not currently available. You already know, by default, quantity is 1 even in WooCommerce.
But it is a great idea. We will keep it on our to-do list.
Thanks for understanding.
Hi
The default behavior of WooCommerce is- you have to set up price to display variations on single product/product description page.
You can test it by temporarily deactivate PVT and remove all prices from variations.
But, we will look into it if we can manage it without a price setup, we will update a new release.
Thanks
Hi
We have updated a new version 1.4.0.
Please update your PVT to 1.4.0 and test with Woo Discount Rules plugin.
Thank You