在WooCommerce存档页面中添加“查看产品”按钮,然后添加到购物车按钮

时间:2017-10-28 13:14:32

标签: php wordpress woocommerce hook-woocommerce storefront

互联网上的大多数文章都是关于如何删除/替换“查看产品”或“阅读更多”按钮。
我找不到允许两个按钮一起工作的相关内容。

我感兴趣的是两个按钮并行工作(同时)。 要显示的第一个按钮应为“查看产品”(在同一页面上打开),然后在“添加到购物车”下面

目前,我的商店只显示添加到购物车按钮。 我正在使用店面主题(+自定义子主题)。

有人会这么善良并告诉我该怎么做吗?

1 个答案:

答案 0 :(得分:1)

使用此 woocommerce_after_shop_loop_item 操作挂钩中的自定义功能添加链接到该产品的自定义按钮:

add_action('woocommerce_after_shop_loop_item', 'add_a_custom_button', 5 );
function add_a_custom_button() {
    global $product;

    // Not for variable and grouped products that doesn't have an "add to cart" button
    if( $product->is_type('variable') || $product->is_type('grouped') ) return;

    // Output the custom button linked to the product
    echo '<div style="margin-bottom:10px;">
        <a class="button custom-button" href="' . esc_attr( $product->get_permalink() ) . '">' . __('View product') . '</a>
    </div>';
}

代码放在活动子主题(或主题)的function.php文件中,或者放在任何插件文件中。

经过测试和工作。

嵌入样式(与作者评论相关)

add_action('wp_head', 'custom_button_styles', 9999 );
function custom_button_styles() {
    if( is_shop() || is_product_category() || is_product_tag() ):

    // The styles
    ?>
    <style>
        .button.custom-button { background-color: white !important;
            color: black !important; border: 2px solid #4CAF50 !important; }
        .button.custom-button:hover { background-color: black !important;
            color: white !important; border: 2px solid black !important; }
    </style>
    <?php
    endif;
}

代码放在活动子主题(或主题)的function.php文件中,或者放在任何插件文件中。

经过测试和工作。