// To change the add to cart button on the single product page add_filter( 'woocommerce_product_single_add_to_cart_link', 'custom_single_add_to_cart_link', 10, 2 ); function custom_single_add_to_cart_link( $button, $product ) { $url = $product->get_permalink(); $button_text = __( 'See Prices', 'woocommerce' ); $button = '<a href="' . esc_url( $url ) . '" class="button single_add_to_cart_button"><img src="https://mejormovil.es/wp-content/themes/woodmart/images/amazon-icon.png?_t=1717658998" alt="Amazon Icon" style="vertical-align: middle; margin-right: 5px; width: 16px; height: 16px;" />' . esc_html( $button_text ) . '</a>'; return $button; } // To change the add to cart button on the product archives (collection) page add_filter( 'woocommerce_loop_add_to_cart_link', 'custom_loop_add_to_cart_link', 10, 2 ); function custom_loop_add_to_cart_link( $button, $product ) { $url = $product->get_permalink(); $button_text = __( 'See Prices', 'woocommerce' ); $button = '<a href="' . esc_url( $url ) . '" class="button add_to_cart_button"><img src="https://mejormovil.es/wp-content/themes/woodmart/images/amazon-icon.png?_t=1717658998" alt="Amazon Icon" style="vertical-align: middle; margin-right: 5px; width: 16px; height: 16px;" />' . esc_html( $button_text ) . '</a>'; return $button; }
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter