如何让“添加到购物车按钮”出现在我放置的位置
问题:如何让“添加到购物车按钮”出现在我放置的位置 我现在有这段代码,它在我的 woocommerce 网站上的“添加到购物车”按钮之后添加了一个按钮。这是我在网上找到的一段代码。 add_action( 'woocommerce_after_add_to_cart_button', 'additional_simple_add_to_cart_10', 20 ); function additi
·
问题:如何让“添加到购物车按钮”出现在我放置的位置
我现在有这段代码,它在我的 woocommerce 网站上的“添加到购物车”按钮之后添加了一个按钮。这是我在网上找到的一段代码。
add_action( 'woocommerce_after_add_to_cart_button', 'additional_simple_add_to_cart_10', 20 );
function additional_simple_add_to_cart_10() {
global $product;
// Only for variable product type
$href = '?add-to-cart=' . esc_attr( $product->get_id() ) . '&quantity=10';
$class = 'ingle_add_to_cart_button-10 button alt';
$style = 'display: inline-block; margin-top: 12px;';
$button_text = __( "10 Tickets", "woocommerce" );
// Output
echo '<br><a rel="no-follow" href="'.$href.'" class="'.$class.'" style="'.$style.'">'.$button_text.'</a>';
}
我想编辑它,以便按钮移动到我在页面上放置此代码的任何位置,只需要一个将 10 个单位添加到购物车的通用按钮 - 因为它目前会在添加到购物车后自动放置。
解答
您可以使用 WordPress 的短代码功能为您的功能附加_simple_add_to_cart_10 创建一个短代码。这是示例:
add_shortcode('add-to-cart', 'additional_simple_add_to_cart_10');
更多推荐
已为社区贡献13074条内容
所有评论(0)