amazon icon with text

PHOTO EMBED

Sun Jun 23 2024 09:52:57 GMT+0000 (Coordinated Universal Time)

Saved by @Promakers2611

// 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;
}

content_copyCOPY