改变WooCommerce产品布局的外观

时间:2013-03-15 作者:kurzweilguy

我是WooCommerce的新手,我的产品目前正以缩略图、产品名称和价格进行布局。理想情况下,我希望将它们水平放置,并在图像右侧摘录一小段内容。

现在,这可以在WooCommerce界面中完成吗,或者我必须在PHP中添加函数,然后使用CSS进行样式设计?我在文档中找不到任何答案。

提前感谢!

1 个回复
SO网友:Ewout

这确实是您需要为其创建特定页面模板的内容。只是CSS不会起作用,因为您需要在函数中添加函数。php文件(在您的主题或child-theme 文件夹),以显示摘录。

您可以这样做:

add_action( \'wp\' , \'add_excerpt\', 20);

function add_excerpt() {
    if ( is_shop() || is_product_category() || is_product_tag() ) {
        add_action( \'woocommerce_after_shop_loop_item\', \'woocommerce_template_single_excerpt\', 5);
    }
}
这将把摘录添加到产品列表中。

结束

相关推荐

plugins_url vs plugin_dir_url

我看到WordPress插件在为一些文件夹创建常量时使用plugins\\u url或plugin\\u dir\\u url。一个比另一个好吗?示例:define( \'MEMBERS_URI\', trailingslashit( plugin_dir_url( __FILE__ ) ) ); define( \'WPACCESS_INC\', plugins_url( \'inc\', __FILE__ ) , true );