首页 > 解决方案 > Elementor - 在添加到购物车旁边动态添加“立即购买”按钮

问题描述

我正在尝试在自定义单个产品页面的elementor中添加一个立即购买按钮,因此有两个按钮:

添加到购物车立即购买(这将重定向到结帐并跳过购物车)我仍然希望添加到购物车以正常运行。

我怎样才能做到这一点?非常感谢。

标签: wordpresswoocommercedynamicelementor

解决方案


After a little research I came up with a solution to this problem

using PHP code snippet

<?php

  
   $product = wc_get_product();
   $id = $product->get_id();
    echo home_url('/checkout/?add-to-cart='.$product->id);
    
?>

then i linked the button to this code using shortcode


推荐阅读