从购物车中的产品链接中删除属性(Woocommerce - get_permalink)

时间:2015-01-20 12:32:46

标签: wordpress attributes woocommerce permalinks cart

在购物车页面中回应woocommerce产品上的the_permalink将创建一个链接,其中包含链接中包含的属性选项,如下所示:

http://ourdemo.com/product/product-test-2/?attribute_pa_frame=polished-chrome

我们希望将这些属性从链接中取出(出于各种原因),但是当产品ID上运行时,似乎是_permalink会自动返回它们。

查看文档我似乎无法找到不返回属性的参数?有没有其他方法可以获得没有任何参数的基本永久链接?

由于

1 个答案:

答案 0 :(得分:1)

问题在于,只要有问题的产品是变体,$_product->get_permalink($cart_item)就会自动将属性添加到固定链接。

我不明白为什么你想摆脱这种行为,但可以通过将$_product->get_permalink()方法切换到WordPress的默认get_permalink()函数来实现。对于非变异产品,无论如何,该方法只是一个“包装”。

如果您没有显示缩略图,则可以通过过滤器切换标题链接:

function so_remove_attributes_from_permalink( $name, $cart_item, $cart_item_key ){

    $_product     = apply_filters( 'woocommerce_cart_item_product', $cart_item['data'], $cart_item, $cart_item_key );
    if ( ! $_product->is_visible() ){
        $name = sprintf( '<a href="%s">%s</a>', get_permalink( $cart_item['product_id'] ), $_product->get_title(), $cart_item, $cart_item_key );
    }

    return $name;
}
add_filter( 'woocommerce_cart_item_name', 'so_remove_attributes_from_permalink', 10, 3 );

如果您在购物车中显示缩略图,那么我认为您需要覆盖cart/cart.php模板并修改参考

$_product->get_permalink( $cart_item )

get_permalink( $cart_item['product_id'] )