This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% capture sidebar_content_1 %}{% section 'sidebar-1' %}{% endcapture %} | |
{% capture sidebar_content_2 %}{% section 'sidebar-2' %}{% endcapture %} | |
{% capture collection_template_content %} | |
{% section 'collection' %} | |
{% endcapture %} | |
{% assign collection_template_content = collection_template_content | replace: "%%SIDEBAR-1%%", sidebar_content_1 %} | |
{% assign collection_template_content = collection_template_content | replace: "%%SIDEBAR-2%%", sidebar_content_2 %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% capture handles %}{{section.settings.handles}}{% endcapture %} | |
{% assign handles1 = handles | split: ',' %} | |
{% for tag in handles1 %} | |
{% if collection.handle contains tag %} | |
{% endif %} | |
{% break %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//info collection.multy.liquid = template | |
//product-loop-multiple.liquid = snippet | |
{% include "bl-constants" %} | |
{% include 'breadcrumbs' %} | |
<div class="row"> | |
{% assign sidebar_on = false %} | |
{% if settings.sidebar_linklist_1 != blank %} | |
{% assign sidebar_on = true %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
css file | |
.compare-at-span{ | |
display: inline-block !important; | |
float: left !important; | |
margin-left: 0 !important; | |
.money{ | |
color: #ddd; | |
text-decoration: line-through; | |
font-size: 15px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="homepage-image-grid reverse-hover"> | |
<!-- check if the repeater field has rows of data --> | |
<?php if( have_rows('images-group','options') ): ?> | |
<!-- add a counter --> | |
<?php | |
$count = 0; | |
$group = 0; | |
?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.safervpn.com/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function searchfilter($query) { | |
if ($query->is_search && !is_admin() ) { | |
if(isset($_GET['post_type'])) { | |
$type = $_GET['post_type']; | |
if($type == 'book') { | |
$query->set('post_type',array('book')); | |
} | |
} | |
} | |
return $query; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% if collection.handle == 'all' or product.handle == 'eagle-energy-1-pack' or product.handle == 'eagle-energy-3-pack' or product.handle == 'eagle-energy-10-pack' %} | |
<script type="text/javascript"> | |
//Begin Get a customer's location | |
jQuery.ajax( { | |
url: '//freegeoip.net/json/', | |
type: 'POST', | |
dataType: 'jsonp', | |
success: function(location) { | |
// If the visitor is browsing from US. | |
if (location.country_code === 'JP') { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.youtube.com/user/howtoshopify/videos?app=desktop = video despre shopify | |
https://onlygrowth.com/blogs/posts/customizing-your-checkout-page-with-shopify-plus = customize Checkout page | |
https://sufio.com/articles/shopify/taxes/vat-eu-shopify/vat-exempt-eu/checkout-page/ = Capture VAT numbers on Checkout page | |
https://outofthesandbox.com/blogs/shopify-theme-blog/customize-shopify-checkout-pages = Secrets to tweaking and customizing Shopify checkout pages | |
https://onlygrowth.com/blogs/posts/how-merchants-are-flexing-shopify-plus-to-create-fully-customized-checkout-experiences = Shopify Plus To Create Fully Customized Checkout Experiences |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="top"> | |
<?php | |
// query for the agents page | |
$your_query = new WP_Query( 'pagename=agents' ); | |
// "loop" through query (even though it's just one page) | |
while ( $your_query->have_posts() ) : $your_query->the_post(); | |
the_title('<h1>', '</h1>'); | |
the_content(); | |
endwhile; |