删除了单一产品页面中的边栏

时间:2019-07-10 作者:Aj Dalore Andang

嗨,伙计们,关于删除我的单一产品页面上的侧栏,我有一些问题,

我在寻找一些php代码来摆脱它,但什么都不适合我。

>     /**  * @snippet       Remove Sidebar @ Single Product Page  * @how-to        Watch tutorial @ https://businessbloomer.com/?p=19055 
> * @sourcecode    https://businessbloomer.com/?p=19572  * @author        Rodolfo Melogli  * @testedwith    WooCommerce 3.2.6  */   add_action(
> \'wp\', \'bbloomer_remove_sidebar_product_pages\' );   function
> bbloomer_remove_sidebar_product_pages() { if ( is_product() ) {
> remove_action( \'woocommerce_sidebar\', \'woocommerce_get_sidebar\', 10 );
> } }
在我的功能中插入此代码。php但什么都没发生我用avada作为我的主题。

我设法删除了侧边栏,但产品图像和描述仍保留在页面的右侧。

有关更多信息,请参见图片:https://ibb.co/k9qtfxB

您可以在此处查看页面:http://sumuri2.us.tempcloudsite.com/product/customize-your-workstation/

我希望有人能帮我,谢谢你。

1 个回复
SO网友:Oscprofessionals
function remove_sidebar( $is_active_sidebar, $index ) {
if( ! is_product() ) {
return $is_active_sidebar;
}
return false;
}
add_filter( \'is_active_sidebar\', \'remove_sidebar\', 10, 2 );

相关推荐