2017-07-29 11 views
0

商品ページのShipping欄にある「Shipping」のページに「Tab Content Shipping」を追加します。ここでは、コードShopify、ページ内に書かれた内容にテキストを変更する

<div id="tabs" class="htabs"> 
<a href="#tab-description" class="selected">{{'products.product.description' | t}}</a> 
<a href="#tab-new">Tab Heading</a> 
<a href="#tab-review" class="">{{'products.product.customer_reviews' | t}} 
</a> 
    {%- if product.featured_image.alt contains 'iframe' -%} 
<a href="#tab-video">{{'products.product.video' | t}}</a> 
{%- endif -%} 
</div> 
<div id="tab-description" class="tab-content" itemprop="description"> 
{{product.description}}</div> 
<div id="tab-new" class="tab-content" itemprop="description">Tab Content <a 
href="/shiiping/page/link">Shipping</a></div> 
<div id="tab-review" class="tab-content"><div id="shopify-product-reviews" 
data-id="{{product.id}}">{{product.metafields.spr.reviews}}</div></div> 
{%- if product.featured_image.alt contains 'iframe' -%} 
<div id="tab-video" class="tab-content">{{product.featured_image.alt}}</div> 
{%- endif -%} 

Here is what it looks like now

はありがとうございました!

答えて

0

変更

<div id="tab-new" class="tab-content" itemprop="description">Tab Content <a 
href="/shiiping/page/link">Shipping</a></div> 

<div id="tab-new" class="tab-content" itemprop="description">{{pages.shipping.content}}<a 
href="/shiiping/page/link">Shipping</a></div> 

に注意さらにこのコードでは、あなた the code in the original questionの両方の "出荷" にはおそらく正しい "shiiping" 必要があること。

関連する問題