Skip to content

Instantly share code, notes, and snippets.

View arafatjamil01's full-sized avatar
🏠
Working from home

Arafat Jamil arafatjamil01

🏠
Working from home
View GitHub Profile
@arafatjamil01
arafatjamil01 / popular_posts_query.php
Created September 11, 2021 06:40 — forked from mdjwel/popular_posts_query.php
WordPress Custom Query Based Condition
/* Normal desktop :1200px. */
@media (min-width: 1200px) and (max-width: 1500px) {
}
/* Normal desktop :992px. */
@media (min-width: 992px) and (max-width: 1200px) {
@arafatjamil01
arafatjamil01 / product-section.liquid
Last active May 10, 2020 09:48
Shopify Product, category and images
<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">
@arafatjamil01
arafatjamil01 / Short codes
Created April 18, 2020 09:35
Shopify theme codes
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: ', ' %} &ndash; {{ 'general.meta.tags' | t: tags: meta_tags }}{% endif %}{% if current_page != 1 %} &ndash; {{ 'general.meta.page' | t: page: current_page }}{% endif %}{% unless page_title contains shop.name %} &ndash; {{ shop.name }}{% endunless %}
@arafatjamil01
arafatjamil01 / Theme Links
Last active April 18, 2020 07:31
Shopify theme development series.