發佈日期:

WordPress theme valentia 開啟側欄 (Sidebar),在 WooCommerce 產品頁 (single-product)

WordPress theme valentia 開啟側欄 (Sidebar),在 WooCommerce 產品頁 (single-product)

須改兩個程式:

themes/valentia/inc/context.php: 找下列函式

function valentia_get_layout_classes: 關閉下列四行程式

if ( function_exists(‘is_product’) && is_product() ) {

    $sidebar_position = ‘fullwidth’;

    $sidebar_width = 0;

}

themes/valentia/sidebar.php: 關閉下列三行程式

if ( function_exists(‘is_product’) && is_product() ) {
    return;
}