{"id":376588,"date":"2023-04-13T11:43:32","date_gmt":"2023-04-13T11:43:32","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=376588"},"modified":"2024-12-23T07:43:22","modified_gmt":"2024-12-23T07:43:22","slug":"how-to-create-cs-cart-custom-theme","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-create-cs-cart-custom-theme\/","title":{"rendered":"How to create the custom theme in CS-Cart?"},"content":{"rendered":"\n<p>Creating a custom theme in CS-Cart can help you design a store that matches your unique branding. This guide will show you how to create a custom theme in CS-Cart with detailed steps<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Choose a Base CS-Cart Theme<\/h2>\n\n\n\n<p>Firstly, The first step in creating a custom theme in CS-Cart is to choose a base theme for <a href=\"https:\/\/webkul.com\/cs-cart-development\/\" target=\"_blank\" rel=\"noreferrer noopener\">CS-Cart customization<\/a>. <\/p>\n\n\n\n<p>CS-Cart comes with several pre-built themes that you can use as a starting point for your custom theme. In this example, we will be using the <strong>&#8220;<span style=\"text-decoration: underline\">Responsive<\/span>&#8220;<\/strong> theme as our base theme.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Create a New Cs-Cart Theme Directory<\/h2>\n\n\n\n<p>Navigate to the &#8220;<strong>design\/themes<\/strong>&#8221; directory in your CS-Cart Instance. Create a new folder named <strong>&#8220;timer&#8221;<\/strong> for your custom theme. This folder will hold all the files for your new theme.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Copy Base Cs-Cart Theme Files<\/h2>\n\n\n\n<p>Additionally, copy the base theme files properly to ensure your custom theme inherits the necessary features. For example, copy files from the <strong>&#8220;Responsive&#8221;<\/strong> theme directory to the <strong>&#8220;Timer&#8221;<\/strong> directory.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Folder Structure of CS-Cart theme<\/h2>\n\n\n\n<p>In contrast, Inside the &#8220;<strong>Timer<\/strong>&#8221; directory, there will be the following subfolders:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>&#8220;<strong>css<\/strong>&#8220;: This folder will contain all the CSS files for your theme.<\/li>\n\n\n\n<li>&#8220;<strong>layouts<\/strong>&#8220;: This folder will get the layout from blocks.<\/li>\n\n\n\n<li>&#8220;<strong>media<\/strong>&#8220;: This folder will contain all the image files for your theme.<\/li>\n\n\n\n<li>&#8220;<strong>js<\/strong>&#8220;: This folder will contain all the JavaScript files for your theme.<\/li>\n\n\n\n<li>&#8220;<strong>templates<\/strong>&#8220;: This folder will contain all the template files for your theme.<\/li>\n\n\n\n<li><strong>manifest.json<\/strong>: This file will contain the setting of our theme.<\/li>\n<\/ul>\n\n\n\n<p>Once you have created these folders, your folder structure should look like this:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"983\" height=\"147\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/12\/structure.webp\" alt=\"Steps to create a custom theme in CS-Cart folder structure\" class=\"wp-image-477676\" title=\"Theme Folder Structure\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/12\/structure.webp 983w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/12\/structure-300x45.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/12\/structure-250x37.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/12\/structure-768x115.webp 768w\" sizes=\"(max-width: 983px) 100vw, 983px\" loading=\"lazy\" \/><figcaption class=\"wp-element-caption\">Theme folder Structure<\/figcaption><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Code<\/h2>\n\n\n\n<p>Finally, we have our folder structure in place, let&#8217;s start adding some code.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">CSS Files<\/h3>\n\n\n\n<p>Firstly, CSS files are used to style the look and feel of your website. After copying the base theme files and folders, navigate to the CSS folder to locate the <strong>&#8220;styles.less&#8221;<\/strong> file.<\/p>\n\n\n\n<p>This file contains the styles for your theme, written in the <strong>LESS<\/strong> preprocessor language. You can modify it to change the colors, fonts, and layout of your site.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">\/* Define colors *\/\n@primary-color: #007bff;\n@secondary-color: #6c757d;\n@success-color: #28a745;\n@danger-color: #dc3545;\n@warning-color: #ffc107;\n@info-color: #17a2b8;\n@light-color: #f8f9fa;\n@dark-color: #343a40;\n\n\/* Define fonts *\/\n@base-font-size: 16px;\n@base-font-family: &#039;Open Sans&#039;, sans-serif;\n@base-line-height: 1.5;\n\n\/* Define layout *\/\n@container-max-width: 1140px;\n@grid-gutter-width: 30px;\n\n\/* Import base theme styles *\/\n@import &#039;responsive\/styles.less&#039;;\n\n\/* Add custom styles *\/\nbody {\n  font-family: @base-font-family;\n  font-size: @base-font-size;\n  line-height: @base-line-height;\n  color: #ccc;\n}<\/pre>\n\n\n\n<p>You can add as many Less\/CSS files as you need in this folder.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Media Image Files<\/h3>\n\n\n\n<p>Next, image files are used to add visual elements to your website. Add all the required image files to the <strong>&#8220;media\/images&#8221;<\/strong> folder of your custom theme.<\/p>\n\n\n\n<p>For example, if you want to add a new logo to your website, create an image file named <strong>&#8220;logo.png&#8221;<\/strong> and place it in the <strong>&#8220;media\/images&#8221;<\/strong> folder.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Javascript Files<\/h3>\n\n\n\n<p>Next, JavaScript files are used to add interactivity and dynamic behavior to your website. Create a new file called <strong>&#8220;scripts.js&#8221;<\/strong> in the &#8220;js&#8221; folder of your custom theme.<\/p>\n\n\n\n<p>For example, to create a button that changes the background color of your website to red, add the required JavaScript code to the <strong>&#8220;scripts.js&#8221;<\/strong> file.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">document.querySelector(&#039;button&#039;).addEventListener(&#039;click&#039;, function() {\n  document.body.style.backgroundColor = &#039;red&#039;;\n});<\/pre>\n\n\n\n<p>You can add as many JavaScript files as you need in this folder.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Template Files<\/h3>\n\n\n\n<p>Next, template files define the structure and layout of your website. The default templates are located in the <strong>&#8220;design\/themes&#8221;<\/strong> directory of your CS-Cart installation.<\/p>\n\n\n\n<p>To create custom templates, copy the default templates to the <strong>&#8220;templates&#8221;<\/strong> folder of your custom theme.<\/p>\n\n\n\n<p>For example, to customize the product listing template, create a new file in the &#8220;templates&#8221; folder. Name the file <strong>&#8220;design\/themes\/Timer\/templates\/blocks\/product_templates\/grid_list.tpl&#8221;<\/strong>.<\/p>\n\n\n\n<p>Add your custom code for the product in that file to modify the product listing template as needed.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Product Listing Template<\/h3>\n\n\n\n<p>Next, The product listing template is used to display a list of products. Here&#8217;s an example of what the product listing template could look like:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">{* design\/themes\/timer\/templates\/blocks\/product_templates\/grid_list.tpl *}\n\n{strip}\n   {foreach from=$products item=&quot;product&quot;}\n      &lt;div class=&quot;product&quot;&gt;\n         &lt;a href=&quot;{$product.product_url}&quot;&gt;\n            &lt;img src=&quot;{$product.main_pair.icon}&quot; alt=&quot;{$product.product}&quot; class=&quot;product-image&quot;&gt;\n         &lt;\/a&gt;\n         &lt;h3 class=&quot;product-title&quot;&gt;{$product.product}&lt;\/h3&gt;\n         &lt;p class=&quot;product-price&quot;&gt;{$product.price|format_price}&lt;\/p&gt;\n         {if $product.add_to_cart_link}\n         &lt;div class=&quot;product-buttons&quot;&gt;\n            &lt;a href=&quot;{$product.add_to_cart_link}&quot; class=&quot;btn btn-primary btn-block&quot;&gt;{$lang.add_to_cart}&lt;\/a&gt;\n         &lt;\/div&gt;\n         {\/if}\n      &lt;\/div&gt;\n   {\/foreach}\n{\/strip}<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">mainfest.json<\/h2>\n\n\n\n<p>Finally, We have also added a new &#8220;<code><strong><span style=\"text-decoration: underline\">manifest.json<\/span>\"<\/strong><\/code> file, which can be used to override the default settings for the theme.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">{\n    &quot;title&quot;: &quot;Timer&quot;,\n    &quot;description&quot;: &quot;Enhance the look and feel of your CS-Cart store with CS-Cart Timer Theme. Simply create your own style, as the Timer theme has a complete recoloring power and you can recolor anything. Its responsive nature gives a beautiful look which looks great on any device. Timer is crafted to be simple to use so you can build your clean, modern online store quickly and easily with CS-Cart.&quot;,\n    &quot;developer&quot;: &quot;Webkul Software&quot;,\n    &quot;parent_theme&quot;: &quot;responsive&quot;,\n    &quot;gift_cert&quot;: &quot;media\\\/images\\\/timer-logo.png&quot;,\n    &quot;theme&quot;: &quot;media\\\/images\\\/cart.png&quot;,\n    &quot;favicon&quot;: &quot;media\\\/images\\\/favicon.ico&quot;,\n    &quot;mail&quot;: &quot;media\\\/images\\\/invoice_logo.png&quot;,\n    &quot;settings_overrides&quot;: {\n        &quot;General&quot;: {\n            &quot;enable_compare_products&quot;: true\n        },\n        &quot;Appearance&quot;: {\n            &quot;enable_quick_view&quot;: true\n        },\n        &quot;Thumbnails&quot;: {\n            &quot;product_lists_thumbnail_width&quot;: 330,\n            &quot;product_lists_thumbnail_height&quot;: 300,\n            &quot;product_details_thumbnail_width&quot;: 300,\n            &quot;product_details_thumbnail_height&quot;: 300,\n            &quot;product_quick_view_thumbnail_width&quot;: 220,\n            &quot;product_cart_thumbnail_width&quot;: 120,\n            &quot;product_cart_thumbnail_height&quot;: 120,\n            &quot;category_lists_thumbnail_width&quot;: 60,\n            &quot;category_details_thumbnail_width&quot;: 120\n        }\n    }\n}<\/pre>\n\n\n\n<p>To activate your new theme, go to the &#8220;<strong><span style=\"text-decoration: underline\">Administration<\/span><\/strong>&#8221; panel of your CS-Cart installation and navigate to the <strong>&#8220;Website > Themes&#8221;<\/strong> section.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"571\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/12\/theme-menu-1-1200x571.webp\" alt=\"Theme Menu\" class=\"wp-image-477918\" title=\"Theme Menu\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/12\/theme-menu-1-1200x571.webp 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/12\/theme-menu-1-300x143.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/12\/theme-menu-1-250x119.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/12\/theme-menu-1-768x365.webp 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/12\/theme-menu-1-1536x731.webp 1536w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/12\/theme-menu-1.webp 1829w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><figcaption class=\"wp-element-caption\">Theme Menu<\/figcaption><\/figure>\n\n\n\n<p>Select your new theme from the <strong>&#8220;<span style=\"text-decoration: underline;\">Browse all available themes<\/span>&#8220;<\/strong>\u00a0tab\u00a0and click &#8220;<strong><span style=\"text-decoration: underline\">Install<\/span><\/strong>&#8220;.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"608\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/12\/browse-and-install-theme-1200x608.webp\" alt=\"Install CS-Cart Custom Theme\" class=\"wp-image-477919\" title=\"Cs-cart Custom Theme\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/12\/browse-and-install-theme-1200x608.webp 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/12\/browse-and-install-theme-300x152.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/12\/browse-and-install-theme-250x127.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/12\/browse-and-install-theme-768x389.webp 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/12\/browse-and-install-theme-1536x778.webp 1536w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/12\/browse-and-install-theme.webp 1829w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><figcaption class=\"wp-element-caption\">Install CS-Cart Custom Theme<\/figcaption><\/figure>\n\n\n\n<p>After installation, your theme will be presented in the &#8220;<strong>Installed theme<\/strong>&#8221; section. Now you can Activate your theme using the &#8220;<strong>Activate<\/strong>&#8221; button.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"611\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/12\/activate-theme-1200x611.webp\" alt=\"Activate CS-Cart Custom Theme\" class=\"wp-image-477920\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/12\/activate-theme-1200x611.webp 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/12\/activate-theme-300x153.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/12\/activate-theme-250x127.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/12\/activate-theme-768x391.webp 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/12\/activate-theme-1536x782.webp 1536w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/12\/activate-theme.webp 1815w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><figcaption class=\"wp-element-caption\">Activate CS-Cart Custom Theme<\/figcaption><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Another way to install a theme is:<\/strong><\/h2>\n\n\n\n<p>First, after creating your custom theme directory and adding all the necessary files and folders, move the directory into the <mark style=\"background-color:#fcb900\" class=\"has-inline-color has-black-color\">&#8220;var\/theme_repository&#8221;<\/mark> folder.<\/p>\n\n\n\n<p>This step is essential for CS-Cart to recognize and load your custom theme properly.<\/p>\n\n\n\n<p>Next, create an <strong>&#8220;addon.xml&#8221;<\/strong> file under the <strong>&#8220;app\/addons\/timer&#8221;<\/strong> folder. The <strong>&#8220;timer&#8221;<\/strong> folder is the one you created for your custom theme.<\/p>\n\n\n\n<p>This file contains essential information about your custom theme, such as its name, version, and description.<\/p>\n\n\n\n<p>Then, for basic add-ons, refer to the instructions in the <a href=\"https:\/\/docs.cs-cart.com\/4.0.x\/addons\/tutorials\/hello_world.html#:~:text=Go%20to%20the%20app%2Faddons,be%20operational%20is%20the%20addon.\">New Add-on<\/a> documentation provided by CS-Cart.<\/p>\n\n\n\n<p>These instructions will guide you through the process of creating and installing your custom theme as an add-on for <strong>CS-Cart<\/strong>.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><strong>That&#8217;s it! You now have a custom theme for your CS-Cart store.<\/strong><\/p>\n<\/blockquote>\n\n\n\n<p><\/p>\n\n\n\n<p>If you need custom&nbsp;<a href=\"https:\/\/webkul.com\/cs-cart-development\/\" target=\"_blank\" rel=\"noreferrer noopener\">CS-Cart Development services<\/a>&nbsp;then feel free to&nbsp;<a href=\"https:\/\/webkul.com\/contacts\" target=\"_blank\" rel=\"noreferrer noopener\">reach us<\/a>&nbsp;and also explore our exclusive range of&nbsp;<a href=\"https:\/\/store.webkul.com\/CS-Cart.html\">CS-Cart Addons<\/a>.<br><br>!!Have a Great Day Ahead!!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Creating a custom theme in CS-Cart can help you design a store that matches your unique branding. This guide will show you how to create a custom theme in CS-Cart with detailed steps Choose a Base CS-Cart Theme Firstly, The first step in creating a custom theme in CS-Cart is to choose a base theme <a href=\"https:\/\/webkul.com\/blog\/how-to-create-cs-cart-custom-theme\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":458,"featured_media":377637,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1496],"tags":[1661,14029,2840,30],"class_list":["post-376588","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-cs-cart","tag-cs-cart","tag-cs-cart-custom-theme","tag-cs-cart-mobile-application-builder","tag-e-commerce"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to create the custom theme in CS-Cart - Webkul Blog<\/title>\n<meta name=\"description\" content=\"In this blog post, we will walk you through the steps to create a custom theme in CS-Cart, including the folder structure and code.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/how-to-create-cs-cart-custom-theme\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to create the custom theme in CS-Cart - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"In this blog post, we will walk you through the steps to create a custom theme in CS-Cart, including the folder structure and code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-create-cs-cart-custom-theme\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-04-13T11:43:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-12-23T07:43:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/icon-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"500\" \/>\n\t<meta property=\"og:image:height\" content=\"500\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Vishal Verma\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Vishal Verma\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-cs-cart-custom-theme\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-cs-cart-custom-theme\/\"},\"author\":{\"name\":\"Vishal Verma\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/45eb31829cd032c0b0bc4687f5a66013\"},\"headline\":\"How to create the custom theme in CS-Cart?\",\"datePublished\":\"2023-04-13T11:43:32+00:00\",\"dateModified\":\"2024-12-23T07:43:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-cs-cart-custom-theme\/\"},\"wordCount\":861,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-cs-cart-custom-theme\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/icon-1.png\",\"keywords\":[\"cs-cart\",\"cs-cart custom theme\",\"CS-Cart Mobile Application Builder\",\"e-commerce\"],\"articleSection\":[\"Cs Cart\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-create-cs-cart-custom-theme\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-cs-cart-custom-theme\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-create-cs-cart-custom-theme\/\",\"name\":\"How to create the custom theme in CS-Cart - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-cs-cart-custom-theme\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-cs-cart-custom-theme\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/icon-1.png\",\"datePublished\":\"2023-04-13T11:43:32+00:00\",\"dateModified\":\"2024-12-23T07:43:22+00:00\",\"description\":\"In this blog post, we will walk you through the steps to create a custom theme in CS-Cart, including the folder structure and code.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-cs-cart-custom-theme\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-create-cs-cart-custom-theme\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-cs-cart-custom-theme\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/icon-1.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/icon-1.png\",\"width\":500,\"height\":500,\"caption\":\"Webkul\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-cs-cart-custom-theme\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to create the custom theme in CS-Cart?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/45eb31829cd032c0b0bc4687f5a66013\",\"name\":\"Vishal Verma\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/4043345377b7d2bfcc7e20a2d3d92c06113513f627020d280dca02b94e7d7f6f?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/4043345377b7d2bfcc7e20a2d3d92c06113513f627020d280dca02b94e7d7f6f?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Vishal Verma\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/vishal-verma676\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to create the custom theme in CS-Cart - Webkul Blog","description":"In this blog post, we will walk you through the steps to create a custom theme in CS-Cart, including the folder structure and code.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/webkul.com\/blog\/how-to-create-cs-cart-custom-theme\/","og_locale":"en_US","og_type":"article","og_title":"How to create the custom theme in CS-Cart - Webkul Blog","og_description":"In this blog post, we will walk you through the steps to create a custom theme in CS-Cart, including the folder structure and code.","og_url":"https:\/\/webkul.com\/blog\/how-to-create-cs-cart-custom-theme\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2023-04-13T11:43:32+00:00","article_modified_time":"2024-12-23T07:43:22+00:00","og_image":[{"width":500,"height":500,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/icon-1.png","type":"image\/png"}],"author":"Vishal Verma","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Vishal Verma","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-to-create-cs-cart-custom-theme\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-cs-cart-custom-theme\/"},"author":{"name":"Vishal Verma","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/45eb31829cd032c0b0bc4687f5a66013"},"headline":"How to create the custom theme in CS-Cart?","datePublished":"2023-04-13T11:43:32+00:00","dateModified":"2024-12-23T07:43:22+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-cs-cart-custom-theme\/"},"wordCount":861,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-cs-cart-custom-theme\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/icon-1.png","keywords":["cs-cart","cs-cart custom theme","CS-Cart Mobile Application Builder","e-commerce"],"articleSection":["Cs Cart"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-create-cs-cart-custom-theme\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-create-cs-cart-custom-theme\/","url":"https:\/\/webkul.com\/blog\/how-to-create-cs-cart-custom-theme\/","name":"How to create the custom theme in CS-Cart - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-cs-cart-custom-theme\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-cs-cart-custom-theme\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/icon-1.png","datePublished":"2023-04-13T11:43:32+00:00","dateModified":"2024-12-23T07:43:22+00:00","description":"In this blog post, we will walk you through the steps to create a custom theme in CS-Cart, including the folder structure and code.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-cs-cart-custom-theme\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-create-cs-cart-custom-theme\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/how-to-create-cs-cart-custom-theme\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/icon-1.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/icon-1.png","width":500,"height":500,"caption":"Webkul"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-create-cs-cart-custom-theme\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to create the custom theme in CS-Cart?"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/45eb31829cd032c0b0bc4687f5a66013","name":"Vishal Verma","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/4043345377b7d2bfcc7e20a2d3d92c06113513f627020d280dca02b94e7d7f6f?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4043345377b7d2bfcc7e20a2d3d92c06113513f627020d280dca02b94e7d7f6f?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Vishal Verma"},"url":"https:\/\/webkul.com\/blog\/author\/vishal-verma676\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/376588","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/458"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=376588"}],"version-history":[{"count":78,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/376588\/revisions"}],"predecessor-version":[{"id":477947,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/376588\/revisions\/477947"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/377637"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=376588"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=376588"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=376588"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}