WooCommerce在价格后增加变量

时间:2013-06-05 作者:gil hamer

我是woocommerce的新手,但到目前为止,我发现这个插件非常棒。。我试图找出如何在价格之后添加一个变量,这将为买家提供有关他购买了多少信用卡的额外信息(使用stars)

有一个添加属性并将其显示为变量的选项,但它都显示在“附加信息”选项卡的下方,我希望它显示在价格之后

以下截图更好地描述了我正在寻找的内容:enter image description here

*This "stars" additional information must be added to the checkout page as well as sent to the customer as additional important information

提前谢谢Gil

1 个回复
SO网友:Ravinder Kumar

使用woocommerce_single_product_summary 具有优先级的动作挂钩15

//test
add_action(\'woocommerce_single_product_summary\',\'ravs_credits\',15);
function ravs_credits(){
    echo\'testing\';
}
以上代码打印testing 低于产品页面上的价格。

Important Link:

woocommerce_single_product_summary

WordPress hooks introduction

<人力资源>Updated:

我假设你的信用范围表1100 然后指定它们。现在

在product post type中创建自定义元框。阅读How To Create Custom Post Meta Boxestechnique to create product rating in css现在每个产品中都有元框,给它一个介于1100现在代码看起来像

//credits with rating
    add_action(\'woocommerce_single_product_summary\',\'ravs_credits\',15);
    function ravs_credits(){
     global $post;
     ?>
     <div class="ravs-credits">
       <p>This package will grant you <?php echo get_post_meta($post->ID, $key, $single); ?> Stars</p>
       <span style="width:<?php echo get_post_meta($post->ID, $key, $single); ?>%" class="rating"></span>
     </div>
     <?php
    }
Important Link:

  1. get_post_meta()

结束

相关推荐

Google Map在Tab Plugins的第二个选项卡上无法使用

我正在使用postTabs plugin 和Comprehensive Google Map Plugin, 我的问题是,当我在第二个选项卡上有我的谷歌地图时,地图没有按预期加载。但是如果我把它移到第一个标签上,效果会非常好。。有没有办法让地图在第二个选项卡上工作?实际上,无论我使用哪个选项卡插件,地图都不会正确加载到第二个选项卡上。。欢迎提出任何建议。谢谢:)