Search

הסרת תוכן של מוצר לפי קטגוריה – ווקומרס

הסניפט הבא יסיר את תמונות המוצר בעמודי המוצר עצמו (Single Product Pages) רק עבור מוצרים הנמצאים בקטגוריה ״Music״.

/**
 * Remove product content based on category
 */
add_action( 'wp', 'remove_product_content' );
function remove_product_content() {
    // If a product in the 'Cookware' category is being viewed...
    if ( is_product() && has_term( 'Music', 'product_cat' ) ) {
        //... Remove the images
        remove_action( 'woocommerce_before_single_product_summary', 'woocommerce_show_product_images', 20 );
        // For a full list of what can be removed please see woocommerce-hooks.php
    }
}
מצאתם טעות בקוד? הסניפט לא עובד לכם? רישמו לי בתגובות ואני מבטיח לטפל בכך במהרה ולספק סניפט תקין...
0 תגובות...

תגובה חדשה

Up!
לבלוג