2017-11-25 4 views
0

카트, 바닥 글 및 계정 페이지에서 Storefront 휴대용 바닥 글 막대를 숨기려고합니다. 나는 Wordpress와 Woocommerce에서 코딩에 익숙하지 않고 다음과 같은 코드를 작성했다. 아래 3 가지 시도가 잘못되었습니다. 어떤 도움이라도 대단히 감사하겠습니다.woocommerce storefront 핸드 헬드 바닥 글을 카트, 체크 아웃 및 계정에 숨기기

add_action('wp_head','noshowHHFCSS'); 
function noshowHHFCSS() { 
echo '<style> 
/* Do not show hand held footer bar on cart, check out and account page*/ 
.page-id-5 .page-id-6 .page-id-7 .storefront-handheld-footer-bar { 
display: none!important; 
} 
</style>'; 
} 


if (is_cart() || is_checkout() || is_account_page()) { 
echo '<style> 
/* Do not show hand held footer bar on cart, check out and account page*/ 
.storefront-handheld-footer-bar { 
display: none!important; 
} 
</style>'; 
} 


add_action('init', 'jk_remove_storefront_handheld_footer_bar'); 
if (is_cart() || is_checkout() || is_account_page()) { 
function jk_remove_storefront_handheld_footer_bar() { 
remove_action('storefront_footer', 'storefront_handheld_footer_bar', 999); 
} 
} 

답변

0

이 뭔가를 시도 할 수 있습니다 : 루트 테마 폴더에 이미이없는 경우 CSS라는 새 폴더를 만듭니다. 그런 다음 바닥 글 스타일 코드가 포함 된 customFooterStyle.css 파일을 만듭니다. function.php 장소에서

이 코드 :

function footerBarStyle() { 
    wp_enqueue_style('custom_footer_css', get_template_directory_uri() . '/css/customFooterStyle.css'); 
} 
if(is_cart() || is_checkout() || is_account_page()){ 
    add_action('wp_enqueue_scripts', 'footerBarStyle'); 
} 
+0

좋아 나는이 탄주고, 그것은 작동하지 않았다. 이 문제에 영향을주는 유일한 방법은 assets/sass/woocommerce 폴더에서 상점 직판 woocommerce css를 직접 변경하는 것입니다. 지금까지는 주사위를 사용하지 않고 몇 가지 옵션을 시도했습니다. – user2974907