빌더 템플릿 후크

ShopEngine은 기본 동작을 변경하거나 새로운 기능으로 확장할 수 있도록 빌더 템플릿에 대한 많은 PHP 후크를 제공합니다.

후크 이전: #

템플릿 콘텐츠 이전에 호출되는 Hook입니다.

/before_shop #

에 적용 가게 페이지 빌더 템플릿.

add_action( 'shopengine/templates/elementor/content/before_shop', function () { // 여기에 코드가 있습니다... } );

/before_archive #

에 적용 보관소 페이지 빌더 템플릿.

add_action( 'shopengine/templates/elementor/content/before_archive', function () { // 여기에 코드가 있습니다... } );

/before_single #

에 적용 하나의 페이지 빌더 템플릿.

add_action( 'shopengine/templates/elementor/content/before_single', function () { // 여기에 코드가 있습니다... } );

/before_cart #

에 적용 카트 페이지 빌더 템플릿.

add_action( 'shopengine/templates/elementor/content/before_cart', function () { // 여기에 코드가 있습니다... } );

/before_checkout #

에 적용 점검 페이지 빌더 템플릿.

add_action( 'shopengine/templates/elementor/content/before_checkout', function () { // 여기에 코드가 있습니다... } );

/before_my_account #

에 적용 내 계정 페이지 빌더 템플릿.

add_action( 'shopengine/templates/elementor/content/before_my_account', function () { // 여기에 코드가 있습니다... } );

/이전_주문 #

에 적용 주문/감사합니다 페이지 빌더 템플릿.

add_action( 'shopengine/templates/elementor/content/before_order', function () { // 여기에 코드가 있습니다... } );

/before_quick_view #

에 적용 퀵뷰 모달 빌더 템플릿.

add_action( 'shopengine/templates/elementor/content/before_quick_view', function () { // 여기에 코드가 있습니다... } );

/before_quick_checkout #

에 적용 빠른 결제 모달 빌더 템플릿.

add_action( 'shopengine/templates/elementor/content/before_quick_checkout', function () { // 여기에 코드가 있습니다... } );

후크 이후: #

템플릿 콘텐츠 이후에 호출되는 후크입니다.

/애프터샵 #

에 적용 가게 페이지 빌더 템플릿.

add_action( 'shopengine/templates/elementor/content/after_shop', function () { // 여기에 코드가 있습니다... } );

/after_archive #

에 적용 보관소 페이지 빌더 템플릿.

add_action( 'shopengine/templates/elementor/content/after_archive', function () { // 여기에 코드가 있습니다... } );

/after_single #

에 적용 하나의 페이지 빌더 템플릿.

add_action( 'shopengine/templates/elementor/content/after_single', function () { // 여기에 코드가 있습니다... } );

/after_cart #

에 적용 카트 페이지 빌더 템플릿.

add_action( 'shopengine/templates/elementor/content/after_cart', function () { // 여기에 코드가 있습니다... } );

/after_checkout #

에 적용 점검 페이지 빌더 템플릿.

add_action( 'shopengine/templates/elementor/content/after_checkout', function () { // 여기에 코드가 있습니다... } );

/after_my_account #

에 적용 내 계정 페이지 빌더 템플릿.

add_action( 'shopengine/templates/elementor/content/after_my_account', function () { // 여기에 코드가 있습니다... } );

/after_order #

에 적용 주문/감사합니다 페이지 빌더 템플릿.

add_action( 'shopengine/templates/elementor/content/after_order', function () { // 여기에 코드가 있습니다... } );

/after_quick_view #

에 적용 퀵뷰 모달 빌더 템플릿.

add_action( 'shopengine/templates/elementor/content/after_quick_view', function () { // 여기에 코드가 있습니다... } );

/after_quick_checkout #

에 적용 빠른 결제 모달 빌더 템플릿.

add_action( 'shopengine/templates/elementor/content/after_quick_checkout', function () { // 여기에 코드가 있습니다... } );
당신의 감정은 무엇입니까?
2022년 3월 18일 업데이트