我正在尝试在默认的bigcommerce wordpress单一产品模板的右侧添加侧边栏。
<?php
/**
* Default Product Single Template
* Override this template in your own theme by creating a file at
* [your-theme]/bigcommerce/single-bigcommerce_product.php
*/
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}
get_header();
get_sidebar();
echo apply_filters( 'bigcommerce/template/product/single', '', get_the_ID() );
get_footer();
上面的代码工作正常,但显示在主要内容区域的左侧。我试过直接在get_footer()之前添加,但是它显示在底部。
我正在使用带有Elementor + Bigcommerce的Generate Press for Wordpress插件。
我正在使用的确切页面是https://test.sumoninja.net/products/copy-of-mount-switzerland/
任何帮助将不胜感激!