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
<?php | |
$popular_post = new WP_Query(array( | |
'post_type' => 'post', | |
'posts_per_page' => 5, | |
'meta_key' => 'post_views_count', | |
'orderby' => 'meta_value_num', | |
'order' => 'DESC' | |
)); |
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
/* Normal desktop :1200px. */ | |
@media (min-width: 1200px) and (max-width: 1500px) { | |
} | |
/* Normal desktop :992px. */ | |
@media (min-width: 992px) and (max-width: 1200px) { |
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
<section class="products section bg-gray"> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-md-12"> | |
<div class="title text-center"> | |
<h2>Trending Products</h2> | |
</div> | |
</div> | |
{% assign home_collections = collections[section.settings.home_product_collection] %} | |
<div class="row"> |
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
Add favicon: | |
=========== | |
{% if settings.favicon_enable %} | |
<link rel="shortcut icon" href="{{ 'favicon.png' | asset_url }}" type="image/png" /> | |
{% endif %} | |
<!-- Title and description ================================================== --> | |
<title> | |
{{ page_title }}{% if current_tags %}{% assign meta_tags = current_tags | join: ', ' %} – {{ 'general.meta.tags' | t: tags: meta_tags }}{% endif %}{% if current_page != 1 %} – {{ 'general.meta.page' | t: page: current_page }}{% endif %}{% unless page_title contains shop.name %} – {{ shop.name }}{% endunless %} |
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
shopify cheat sheet: | |
-------------------- | |
https://www.shopify.com/partners/shopify-cheat-sheet | |
Shopify liquid documentation: | |
---------------------------- | |
https://shopify.dev/docs/themes/liquid/reference | |
NewerOlder