编程语言
首页 > 编程语言> > php – 在WooCommerce存档页面的“添加到购物车”按钮下方添加“查看产品”按钮

php – 在WooCommerce存档页面的“添加到购物车”按钮下方添加“查看产品”按钮

作者:互联网

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

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

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

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

解决方法:

使用挂钩在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文件中,或者放在任何插件文件中.

经过测试和工作.

标签:php,wordpress,woocommerce,hook-woocommerce,storefront
来源: https://codeday.me/bug/20191007/1866049.html