제품이미지 제품이미지 제품이미지
제품명 제품명 제품명
가격 가격 가격
제품간략설명(상세페이지에 나옴) 제품간략설명(상세페이지에 나옴) 제품간략설명(상세페이지에 나옴)
제품 리스트 목록이 저렇게 나오게 하고싶습니다.
기존에는 제품명, 가격까지 보여지고 있는데요~
제품간략설명 부분을 가져오고 싶습니다. 예시 사이트 http://zionbrick.co.kr/ 사이트에서 205x 90x 75 mm / ㎡당 : 50매 이부분이요 리스트에도 나오고
클릭하면 상세에도 조그많게 나오네요ㅠㅠ
며칠쨰 찾고있는데 도움 부탁드려요ㅠㅠ
우아 막막했는데ㅠ
알려주셔서 너무 감사합니다~^^
FTP로 접속해서 /wp-content/plugins/woocommerce/templates/loop/price.php 파일을
/wp-content/themes/사용중인테마/woocommerce/loop/ 경로에 복사해보세요.
그 다음, /wp-content/themes/사용중인테마/woocommerce/loop/price.php 파일의 코드를
아래처럼 교체해보시겠어요?
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
global $product;
?>
<?php if ( $price_html = $product->get_price_html() ) : ?>
<span class="price"><?php echo $price_html; ?></span>
<div class="excerpt"><?php echo get_the_excerpt()?></div>
<?php endif; ?>
get_the_excerpt 함수를 활용하시면 상품 요약 설명을 표시할 수 있습니다.
get_the_content 함수는 상품 내용을 표시하실 수 있습니다.
고맙습니다.
함수를 어떻게 써먹어야하나요
/wp-content/plugins/woocommerce/templates/content-product.php파일 밑에
do_action( 'woocommerce_get_the_content' ); 이거 해봤는데 안먹네요ㅠ
http://xn--pq1bo3o1mhfmh.com/?product=%eb%aa%a8%eb%85%b8-%eb%b2%bd%eb%8f%8c-390%ec%82%ac%ec%84%a0%ed%98%95
경로 페이지에서 추가정보탭 290 x 70 x 70 mm / ㎡당 : 36매 이부분을 .woocommerce-product-attributes-item__value -->이 클래스를 제품 리스트 가격밑에 배치하고 싶습니다.
제품 리스트 http://xn--pq1bo3o1mhfmh.com/?product_cat=product01_06 여기 페이지에
가격 밑에 표기하고 싶은데요
이부분만 알려주시면 감사하겠습니다.
/wp-content/plugins/woocommerce/templates/loop 처럼 루프 경로에 연결되고 먼가 복잡하네요ㅠㅠ
안녕하세요.
우커머스 플러그인 Shop 페이지에서 가격은
FTP로 접속해서 /wp-content/plugins/woocommerce/templates/loop/price.php 파일에서 표시하고 있습니다.
확인해보시겠어요?
우커머스 상품 내용은 워드프레스 get_the_content 함수 또는 the_content 함수로 표시하실 수 있습니다.
고맙습니다.
<?php
/**
* The template for displaying product content within loops
*
* This template can be overridden by copying it to yourtheme/woocommerce/content-product.php.
*
* HOWEVER, on occasion WooCommerce will need to update template files and you
* (the theme developer) will need to copy the new files to your theme to
* maintain compatibility. We try to do this as little as possible, but it does
* happen. When this occurs the version of the template file will be bumped and
* the readme will list any important changes.
*
* @see https://docs.woocommerce.com/document/template-structure/
* @package WooCommerce/Templates
* @version 3.6.0
*/
defined( 'ABSPATH' ) || exit;
global $product;
// Ensure visibility.
if ( empty( $product ) || ! $product->is_visible() ) {
return;
}
?>
<li <?php wc_product_class( '', $product ); ?>>
<?php
/**
* Hook: woocommerce_before_shop_loop_item.
*
* @hooked woocommerce_template_loop_product_link_open - 10
*/
do_action( 'woocommerce_before_shop_loop_item' );
/**
* Hook: woocommerce_before_shop_loop_item_title.
*
* @hooked woocommerce_show_product_loop_sale_flash - 10
* @hooked woocommerce_template_loop_product_thumbnail - 10
*/
do_action( 'woocommerce_before_shop_loop_item_title' );
/**
* Hook: woocommerce_shop_loop_item_title.
*
* @hooked woocommerce_template_loop_product_title - 10
*/
do_action( 'woocommerce_shop_loop_item_title' );
/**
* Hook: woocommerce_after_shop_loop_item_title.
*
* @hooked woocommerce_template_loop_rating - 5
* @hooked woocommerce_template_loop_price - 10
*/
do_action( 'woocommerce_after_shop_loop_item_title' );
/**
* Hook: woocommerce_after_shop_loop_item.
*
* @hooked woocommerce_template_loop_product_link_close - 5
* @hooked woocommerce_template_loop_add_to_cart - 10
*/
do_action( 'woocommerce_after_shop_loop_item' );
?>
</li>
이렇게 소스가 되어있는데요
가격밑에다가 설명글 라인 제품마다 표기되게 하고싶은데.. 어느 부분인지 알려주시면 감사하겠습니다^^
205x 90x 75 mm / ㎡당 : 50매
우커머스 상점(Shop) 페이지에서 개별 상품은
FTP로 접속해서 /wp-content/plugins/woocommerce/templates/content-product.php 파일에서 표시하고 있습니다.
사용 중이신 테마에 따라서 테마 쪽에서 표시하고 있을 수도 있습니다.
FTP로 접속해서 /wp-content/themes/사용중인테마/woocommerce/ 이쪽 경로에 있는 파일들을 살펴보시겠어요?
고맙습니다.
WC_Structured_Data::generate_product_data() no more hooked in to wooc…
15 months ago
Pass product objects to wc_get_product_class to avoid reloading the p…
2 years ago
Fix Squiz.PHP.EmbeddedPhp violations
7 months ago
Fix wrong hooked function, issue #25996
3 months ago
content-widget-price-filter.php
Adding the "translators" comment.
12 months ago
2 years ago
Fix Squiz.PHP.EmbeddedPhp violations
7 months ago
Removed @author tag from docbloc in the template files
2 years ago
Update template versions for 4.3.
13 days ago
Fix Squiz.ControlStructures.ControlSignature violations
7 months ago
Fix WordPress.WhiteSpace.DisallowInlineTabs violations
7 months ago
이중에서 제품목록 커스텀하는 부분은 어느 부분을 봐야할까요ㅠㅠ
안녕하세요~^^
우커머스 플러그인의 레이아웃은
FTP로 접속해서 /wp-content/plugins/woocommerce/templates/ 경로의 파일에서 표시하고 있습니다.
/wp-content/themes/사용중인테마/woocommerce/ 경로에 파일을 복사해서 커스텀하실 수 있습니다.
자세한 방법은 아래 링크를 참고해주세요.
https://docs.woocommerce.com/document/template-structure/
레이아웃을 원하시는 대로 편집하시려면
HTML과 CSS 코드에 대해 어느 정도 알고 계셔야 합니다.
고맙습니다.