<?php
/*
Template Name: WooCommerce
*/
?>
<?php
$eltdf_sidebar_layout = gourmand_elated_sidebar_layout();
get_header();
gourmand_elated_get_title();
get_template_part( 'slider' );
do_action('gourmand_elated_before_main_content');
//Woocommerce content
if ( ! is_singular( 'product' ) ) { ?>
<div class="eltdf-container">
<div class="eltdf-container-inner clearfix">
<div class="eltdf-grid-row">
<div <?php echo gourmand_elated_get_content_sidebar_class(); ?>>
<?php gourmand_elated_woocommerce_content(); ?>
</div>
<?php if ( $eltdf_sidebar_layout !== 'no-sidebar' ) { ?>
<div <?php echo gourmand_elated_get_sidebar_holder_class(); ?>>
<?php get_sidebar(); ?>
</div>
<?php } ?>
</div>
</div>
</div>
<?php } else { ?>
<div class="eltdf-container">
<div class="eltdf-container-inner clearfix">
<?php gourmand_elated_woocommerce_content(); ?>
</div>
</div>
<?php } ?>
<?php get_footer(); ?>
안녕하세요, 우커머스 상품 상세 페이지에서 사이드바에 카테고리 메뉴를 넣고 싶은데요..
사이트 대시보드 상에서는 도저히 사이드바를 넣을 수가 없었는데
아래 PHP 파일에서 위 와 같은 코드를 찾았는데.. 어느 부분을 수정하면 사이드바를 추가 할 수 있을 까요?
제가 프로그래밍 언어는 전혀 몰라서.. 도움을 요청합니다. ㅠㅠ
https://imgur.com/undefined
위와 같이 페이지 내에 넣은 사이드바 위젯(장바구니/메뉴)을 상품 상세 페이지에도 넣고 싶습니다.
https://imgur.com/cPTx77V
안녕하세요~^^
저희가 해당 플러그인의 코드를 모두 알 수 없기 때문에
저희가 만든 제품이 아니라면 해당 제작자에게도 문의해보시는 게 좋을 듯합니다.
추가로, 워드프레스 사이트에서 사이드바 메뉴는 테마와 관련이 있습니다.
테마에 따라서는 특정 페이지에서만 표시되는 설정을 지원할 수도 있습니다.
또 다른 방법으로는 상품 상세 페이지를 직접 커스텀하는 방법이 있습니다.
우커머스 플러그인의 레이아웃은
FTP로 접속해서 /wp-content/plugins/woocommerce/templates/ 경로의 파일에서 표시하고 있습니다.
/wp-content/themes/사용중인테마/woocommerce/ 경로에 파일을 복사해서 커스텀하실 수 있습니다.
자세한 방법은 아래 링크를 참고해주세요.
https://docs.woocommerce.com/document/template-structure/
고맙습니다.