אני משתמש בקוד הזה בשביל להפוך את הכפתור הוספה לסל (בארכיונים) לצפייה במוצר
הבעיה שבעמוד הבית אני משתמש בווידג'ט מוצרים של אלמנטור, ומשום מה זה רק מעלים את הכפתור שמה,
מישהו יודע איך אפשר לתקן?
PHP:
add_filter( 'woocommerce_loop_add_to_cart_link', 'ts_replace_add_to_cart_button', 10, 2 );
function ts_replace_add_to_cart_button( $button, $product ) {
if (is_product_category() || is_shop()) {
$button_text = __("המוצר מקרוב", "woocommerce");
$button_link = $product->get_permalink();
$button = '<a class="button" href="' . $button_link . '">' . $button_text . '</a>';
return $button;
}
}
מישהו יודע איך אפשר לתקן?