// ========================================================================= // CHANGE ADD TO CART BUTTON TEXT ON SPECIFIC PAGES // ========================================================================= function translate_add_to_cart() { global $product; if( $product->id == 2028 ){ return __( 'Add to basket', 'woocommerce' ); } elseif($product->id == 2027){ return __( 'Buy now', 'woocommerce' ); } else{ return __( 'Add to cart', 'woocommerce' ); } } add_filter( 'woocommerce_product_single_add_to_cart_text', 'translate_add_to_cart', 10, 3 );
add to cart
Change add to cart button to view product
/*STEP 1 - REMOVE ADD TO CART BUTTON ON PRODUCT ARCHIVE (SHOP) */ function remove_loop_button(){ remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 ); } add_action('init','remove_loop_button'); /*STEP 2 -ADD NEW BUTTON THAT LINKS TO PRODUCT PAGE FOR EACH PRODUCT */ add_action('woocommerce_after_shop_loop_item','replace_add_to_cart'); function replace_add_to_cart() { global $product; $link = $product->get_permalink(); echo do_shortcode('<a href="'.$link.'" class="button addtocartbutton">Megtekintés</a>'); }
Add Tabs after Add to cart button
//Add Tabs after Add to cart button add_action( 'woocommerce_single_product_summary', 'wc_custom_show_attributes_outside_tabs', 35 ); function wc_custom_show_attributes_outside_tabs() { global $product; $product->list_attributes(); }