function custom_elementor_template_shortcode( $atts ) {
if ( ! isset( $atts[‘id’] ) ) {
return »; // Если не указан ID, шорткод не будет работать
}
$template_id = intval( $atts['id'] );
// Получаем контент шаблона Elementor по ID
$content = \Elementor\Plugin::$instance->frontend->get_builder_content_for_display( $template_id );
// Если контент пустой, возвращаем пустую строку
if ( empty( $content ) ) {
return '';
}
return $content;
}
// Регистрируем шорткод [elementor-template id=»XXX»]
add_shortcode( ‘elementor-template’, ‘custom_elementor_template_shortcode’ );
add_action(‘wp_enqueue_scripts’, ‘enqueue_custom_js_for_elementor_reviews_block’);
function enqueue_custom_js_for_elementor_reviews_block() {
if (is_product()) {
wp_enqueue_script(‘custom-elementor-reviews-debug’, get_template_directory_uri() . ‘/js/custom-elementor-reviews-debug.js’, array(‘jquery’), null, true);
}
}
add_action(‘woocommerce_after_single_product_summary’, ‘add_elementor_reviews_block’, 15);
function add_elementor_reviews_block() {
echo ‘
‘; echo do_shortcode(‘[elementor-template id=»40235″]’); echo »;
}