Reputation: 591
I am trying to remove a class from a button in woocommerce that is in the wc_cart_functions.php file. There is a string in the wc_add_to_cart_message
function which inserts this string:
<a href="%s" class="button wc-forward">%s</a> %s
function wc_add_to_cart_message( $products, $show_qty = false ) {
$titles = array();
$count = 0;
if ( ! is_array( $products ) ) {
$products = array( $products );
$show_qty = false;
}
if ( ! $show_qty ) {
$products = array_fill_keys( array_keys( $products ), 1 );
}
foreach ( $products as $product_id => $qty ) {
$titles[] = ( $qty > 1 ? absint( $qty ) . ' × ' : '' ) . sprintf( _x( '“%s”', 'Item name in quotes', 'woocommerce' ), strip_tags( get_the_title( $product_id ) ) );
$count += $qty;
}
$titles = array_filter( $titles );
$added_text = sprintf( _n( '%s has been added to your cart.', '%s have been added to your cart.', $count, 'woocommerce' ), wc_format_list_of_items( $titles ) );
// Output success messages
if ( 'yes' === get_option( 'woocommerce_cart_redirect_after_add' ) ) {
$return_to = apply_filters( 'woocommerce_continue_shopping_redirect', wc_get_raw_referer() ? wp_validate_redirect( wc_get_raw_referer(), false ) : wc_get_page_permalink( 'shop' ) );
$message = sprintf( '<a href="%s" class="button wc-forward">%s</a> %s', esc_url( $return_to ), esc_html__( 'Continue Shopping', 'woocommerce' ), esc_html( $added_text ) );
} else {
$message = sprintf( '<a href="%s" class="button wc-forward">%s</a> %s', esc_url( wc_get_page_permalink( 'cart' ) ), esc_html__( 'View Cart', 'woocommerce' ), esc_html( $added_text ) );
}
wc_add_notice( apply_filters( 'wc_add_to_cart_message', $message, $product_id ) );
}
I tried to create a filter which would just replace that specific string, since it appears twice and in both instances I want the class removed. This does not seem to work though:
add_filter( 'wc_add_to_cart_message', 'add_to_cart_mod');
function add_to_cart_mod($message) {
$message = str_replace ( '<a href="%s" class="button wc-forward">%s</a> %s' , '<a href="%s" class="button">%s</a> %s', $message );
return $message;
}
With this filter set as it is, I still see the button with the same unchanged class. Any thoughts?
Upvotes: 0
Views: 365
Reputation: 350345
Your filter expects to find %s
, but that was replaced by the previous call to sprintf
: these %s
are not there any more.
You could try with a regular expression:
$message = preg_replace ('/(<a [^>]+ )class="button wc-forward"/',
'$1class="button"', $message );
The [^>]+
part means: any sequence of characters that does not contain a >
(end of a
tag).
$1
means: whatever was matched between the parentheses. It could be something like <a href="http://example.com"
.
Upvotes: 1
Reputation: 3816
You can try this:
add_filter( 'wc_add_to_cart_message', 'add_to_cart_mod');
function add_to_cart_mod( $message ) {
// Output success messages
if ( 'yes' === get_option( 'woocommerce_cart_redirect_after_add' ) ) {
$return_to = apply_filters( 'woocommerce_continue_shopping_redirect', wc_get_raw_referer() ? wp_validate_redirect( wc_get_raw_referer(), false ) : wc_get_page_permalink( 'shop' ) );
$message = sprintf( '<a href="%s" class="button">%s</a> %s', esc_url( $return_to ), esc_html__( 'Continue Shopping', 'woocommerce' ), esc_html( $added_text ) );
} else {
$message = sprintf( '<a href="%s" class="button">%s</a> %s', esc_url( wc_get_page_permalink( 'cart' ) ), esc_html__( 'View Cart', 'woocommerce' ), esc_html( $added_text ) );
}
return $message;
}
Upvotes: 0