abilis
Forum Replies Created
-
Thank you for the quick and helpful answer!
Forum: Plugins
In reply to: [WooCommerce] Product table variation + dropdown attribute fieldPlease let me know. Is it possible to do? It’s very important for me.
Forum: Plugins
In reply to: [WooCommerce] Product table variation + dropdown attribute fieldHello
* There is a color dropdown. CORRECT
* There are table variations underneath. CORRECT
* Changing the color also changes the displayed table variations. A customer chooses a color from the dropdown field and a variation of the product from the variation table. And I will see which the variation and the product’s color has been choosen by the customer in an order emailIf I comment the code from my last reply then standard variation fields and quantity field are appeared on the page. And if I choose the color attribute and variation of product from the appeared field(please see the image4) then the color attribute visible in the cart page. But if I choose the color attribute and variation of product from fields below(please see the image5) then the color attribute is not visible. Any ideas?
This code was added by me because the code below, hides a select field which is added using PPOM
* Hide variations and add to cart.*/ add_action( 'woocommerce_before_single_product', 'child_hide_product_variations', 90, 0 ); function child_hide_product_variations() { global $product; if ( $product->is_type( 'variable' ) || count( $product->get_attributes() ) > 0 ) { remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart' ); remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 ); } }- This reply was modified 5 years, 6 months ago by abilis.
Forum: Fixing WordPress
In reply to: Preload key requests(Google Speed Page)