ویرایش متن افزودن به سبد خرید بر اساس دسته بندی محصول
شما میتوانید بر اساس دسته بندی محصولات خود ، متن ” افزودن به سبد خرید ” را تغییر دهید . بفرض مثال برای دسته بندی محصولات پوشاک میتوانید از متن ” افزودن این لباس خوشگل به سبد ” و برای دسته بندی لوازم ماشین میتوانید از متن ” این رو برای ماشینت سفارش بده ” استفاده نمایید
برای ویرایش متن افزودن به سبد خرید در ووکامرس کافیست کد زیر را در functions.php قرار دهید
add_filter( 'woocommerce_product_add_to_cart_text', 'a4fran3_archive_custom_cart_button_text' ); function a4fran3_archive_custom_cart_button_text() { global $product; $terms = get_the_terms( $product->ID, 'product_cat' ); foreach ($terms as $term) { $product_cat = $term->name; break; } switch($product_cat) { case 'category1'; return 'Category 1 button text'; break; case 'category2'; return 'Category 2 button text'; break; // case 'category3'; etc... // return 'Category 3 button text'; break; default; return 'Default button text when no match found'; break; } }
نتیجه کد بالا :