如何在bigcommerce的快速查看部分添加产品说明?

时间:2014-05-22 11:56:29

标签: bigcommerce

我想在我的大商店的快速查看部分添加产品说明。那么请任何人如何实现这一目标?

我已经尝试将此面板%% Panel.ProductDescription %%添加到我的Quickview.html文件中。但没有运气。

请任何人..

2 个答案:

答案 0 :(得分:1)

有一个BC变量可用于在快速视图中显示产品描述摘录:%% GLOBAL_QuickViewProductDescription %%将其添加到QuickViewContent.html

答案 1 :(得分:0)

我做了一些Ajax脚本调用

您需要在“Panels / QuickViewContent.html”面板中添加以下脚本。

它将从其产品页面中获取描述。

function processData(item){

    return function(data){

      var desc = jQuery(data).find("#ProductDescription .ProductDescriptionContainer").text();
    desc = desc.substr(0,450);
    jQuery("#QuickViewContent").find('.PriceRow').after("<div class='desc'>"+desc+"...<a class='read-more' href='"+item+"'>more</a></div>");

  }
}


jQuery(document).ready(function(){

        var path = '%%GLOBAL_QuickViewProductURL%%';

        if(path!="") {
        path = path.replace("http://","//").replace("https://","//");

        var item = path;
        $.ajax({
          url: path,
          type: "GET",
           async: true,
             success: processData(item)
        });
        }

});