{"id":2174,"date":"2013-01-14T18:18:52","date_gmt":"2013-01-14T23:18:52","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2013\/01\/14\/edit-opencart-template\/"},"modified":"2021-08-16T23:24:05","modified_gmt":"2021-08-17T03:24:05","slug":"edit-opencart-template","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/edu\/opencart\/edit-opencart-template\/","title":{"rendered":"Edit OpenCart template"},"content":{"rendered":"<p>In this tutorial we will show you a quick example of how you can <strong>edit a OpenCart template<\/strong> to change the default layout that is used for your OpenCart site. As an example let\u2019s say you have <a href=\"\/support\/edu\/opencart\/307-manually-creating-gift-vouchers-in-opencart\/\" target=\"_blank\" rel=\"noopener noreferrer\">created a gift voucher in OpenCart<\/a>. By default it\u2019s just going to show a link for customers to redeem their gift voucher at the bottom of the page in your site map. If you don\u2019t have your categories menu at the top filled all the way up, adding a link to your gift vouchers in this menu might be handy for your customers.<\/p>\n<h2>Edit the OpenCart header template<\/h2>\n<p>By default when you install OpenCart all of the templates will be located in the following directory:<\/p>\n<div><code>\/catalog\/view\/theme\/default\/template\/<\/code><p><\/p>\n<\/div>\n<ol class=\"article_list\">\n<li><a href=\"\/support\/edu\/cpanel\/file-manager-code-editor\/\" target=\"_blank\" rel=\"noopener noreferrer\">Open up the File Manager Code Editor in cPanel<\/a>.<\/li>\n<li><a href=\"\/support\/wp-content\/uploads\/2013\/01\/opencart_edit-template_navigate-to-common-template-directory.png\" rel=\"lightbox-0\"><img decoding=\"async\" width=\"232\" height=\"426\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/opencart_edit-template_navigate-to-common-template-directory.png\" class=\"optimized-lcp-image\" alt=\"navigate to common template directory\" loading=\"eager\" fetchpriority=\"high\" sizes=\"(max-width: 768px) 100vw, 768px\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/opencart_edit-template_navigate-to-common-template-directory.png 232w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/opencart_edit-template_navigate-to-common-template-directory-163x300.png 163w\"><\/a>\n<div style=\"clear:both;\"><\/div>\n<p>Navigate to the following directory in the File Manager:<\/p>\n<p><code>\/catalog\/view\/theme\/default\/template\/common\/<\/code><\/p><\/li>\n<li style=\"clear: both;\">Right click on the <strong>header.tpl<\/strong> file and select <strong>Code Edit<\/strong>.\n<p>If the encoding check pop-up displays, you can simply click <strong>Edit<\/strong><\/p>\n<\/li>\n<li><a href=\"\/support\/wp-content\/uploads\/2013\/01\/opencart_edit-template_done-editing.png\" rel=\"lightbox-0\"><img loading=\"lazy\" decoding=\"async\" alt=\"done editing header template click on save changes\" class=\"std_ss\" height=\"467\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/opencart_edit-template_done-editing.png\" style=\"width: 160px; margin-left: 10px; position: relative; bottom: 15px; float: right;\" width=\"1431\"><\/a>\n<div style=\"clear:both;\"><\/div>\n<p>Around line <strong>93<\/strong> will be where the menu at at the top of your page completes. You\u2019ll want to insert a link to your gift voucher page here. The link you\u2019ll want to use should look like this:\n\t<code style=\"white-space: pre-wrap; margin-left: 20px;\">\n&lt;p&gt; &lt;span class=\"code_block\"&gt;&lt;\/span&gt;&lt;\/p&gt;\n\n&lt;\/li&gt;&lt;li&gt;&lt;a href=\".\/index.php?route=account\/voucher\"&gt;Gift Voucher&lt;\/a&gt;&lt;\/li&gt;\n\n&lt;p&gt; &lt;\/p&gt;\n\n&lt;p&gt;The section of code that you're adding this to is the &lt;strong&gt;DIV&lt;\/strong&gt; with the ID \n&lt;strong&gt;menu&lt;\/strong&gt;, the full code once you're done should look like this:&lt;\/p&gt;\n\n&lt;pre&gt;\n\n&lt;\/p&gt;&lt;div id=\"menu\"&gt; &lt;p&gt;&lt;\/p&gt;\n\n&lt;ul&gt; &lt;!--?php foreach ($categories as $category) { ?--&gt; &lt;p&gt;&lt;\/p&gt;\n\n&lt;li&gt;&lt;a href=\"&lt;?php echo $category['href']; ?&gt;\"&gt;&lt;!--?php echo $category['name']; ?--&gt;&lt;\/a&gt;\n&lt;br&gt; &lt;!--?php if ($category['children']) { ?--&gt; \n\n&lt;div&gt; &lt;!--?php for ($i = 0; $i &lt; count($category['children']);) { ?--&gt; &lt;p&gt;&lt;\/p&gt;\n\n&lt;ul&gt; &lt;!--?php $j = $i + ceil(count($category['children']) \/ $category['column']); ?--&gt;&lt;br&gt; &lt;!--?php for (; $i &lt; $j; $i++) { ?--&gt;&lt;br&gt; &lt;!--?php if (isset($category['children'][$i])) { ?--&gt; &lt;p&gt;&lt;\/p&gt;\n\n&lt;li&gt;&lt;a href=\"&lt;?php echo $category['children'][$i]['href']; ?&gt;\"&gt;&lt;!--?php echo $category['children'][$i]['name']; ?--&gt;&lt;\/a&gt;&lt;\/li&gt;\n\n&lt;p&gt; &lt;!--?php } ?--&gt;&lt;br&gt; &lt;!--?php } ?--&gt; &lt;\/p&gt;&lt;\/ul&gt;\n\n&lt;p&gt; &lt;!--?php } ?--&gt; &lt;\/p&gt;&lt;\/div&gt;\n\n&lt;p&gt; &lt;!--?php } ?--&gt; &lt;\/p&gt;&lt;\/li&gt;\n\n&lt;p&gt; &lt;!--?php } ?--&gt;&lt;br&gt; &lt;strong&gt;&lt;\/strong&gt;&lt;\/p&gt;&lt;strong&gt;\n\n&lt;li&gt;&lt;a href=\".\/index.php?route=account\/voucher\"&gt;Gift Voucher&lt;\/a&gt;&lt;\/li&gt;\n\n&lt;\/strong&gt;&lt;p&gt;&lt;strong&gt;&lt;\/strong&gt; &lt;\/p&gt;&lt;\/ul&gt;\n\n&lt;\/div&gt;\n<\/code>\n<\/p><\/li>\n<br>\n<p>Once you\u2019re done making your modification, click on <strong>Save Changes<\/strong> at the top right.<\/p>\n\n<\/ol>\n<p>Now you should have a nice visible link to your gift vouchers right in your top menu, instead of tucked away down in the bottom menu. Here is a before and after showing what this change accomplished:<\/p>\n<table class=\"article_table\" style=\"width:70%\">\n<tbody><tr>\n<th>Before<\/th>\n<th>After<\/th>\n<\/tr>\n<tr>\n<td><a href=\"\/support\/images\/stories\/opencart\/edit-template\/opencart-categories-header-before.png\" rel=\"lightbox-0\"><img decoding=\"async\" alt=\"\" class=\"std_ss\" src=\"\/support\/images\/stories\/opencart\/edit-template\/opencart-categories-header-before.png\" style=\"\" title=\"Click here to view the larger image\" width=\"200\"><\/a><p><\/p>\n<div style=\"clear:both;\"><\/div>\n<\/td>\n<td><a href=\"\/support\/images\/stories\/opencart\/edit-template\/opencart-categories-header-after.png\" rel=\"lightbox-0\"><img decoding=\"async\" alt=\"\" class=\"std_ss\" src=\"\/support\/images\/stories\/opencart\/edit-template\/opencart-categories-header-after.png\" style=\"\" title=\"Click here to view the larger image\" width=\"200\"><\/a><p><\/p>\n<div style=\"clear:both;\"><\/div>\n<\/td>\n<\/tr>\n<\/tbody><\/table>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial we will show you a quick example of how you can edit a OpenCart template to change the default layout that is used for your OpenCart site. As an example let\u2019s say you have created a gift voucher in OpenCart. By default it\u2019s just going to show a link for customers to<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/opencart\/edit-opencart-template\/\"> Read More ><\/a><\/p>\n","protected":false},"author":57014,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[81],"tags":[],"class_list":["post-2174","post","type-post","status-publish","format-standard","hentry","category-opencart"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Edit OpenCart template | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"In this tutorial we will show you a quick example of how you can edit a OpenCart template to change the default layout that is used for your OpenCart site.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/opencart\/edit-opencart-template\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Edit OpenCart template | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"In this tutorial we will show you a quick example of how you can edit a OpenCart template to change the default layout that is used for your OpenCart site.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/edu\/opencart\/edit-opencart-template\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Support Center\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2013-01-14T23:18:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-17T03:24:05+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/opencart_edit-template_navigate-to-common-template-directory.png\" \/>\n<meta name=\"author\" content=\"InMotion Hosting Contributor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"InMotion Hosting Contributor\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/opencart\/edit-opencart-template\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/opencart\/edit-opencart-template\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\"},\"headline\":\"Edit OpenCart template\",\"datePublished\":\"2013-01-14T23:18:52+00:00\",\"dateModified\":\"2021-08-17T03:24:05+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/opencart\/edit-opencart-template\/\"},\"wordCount\":261,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/opencart\/edit-opencart-template\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/opencart_edit-template_navigate-to-common-template-directory.png\",\"articleSection\":[\"OpenCart\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/opencart\/edit-opencart-template\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/opencart\/edit-opencart-template\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/opencart\/edit-opencart-template\/\",\"name\":\"Edit OpenCart template | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/opencart\/edit-opencart-template\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/opencart\/edit-opencart-template\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/opencart_edit-template_navigate-to-common-template-directory.png\",\"datePublished\":\"2013-01-14T23:18:52+00:00\",\"dateModified\":\"2021-08-17T03:24:05+00:00\",\"description\":\"In this tutorial we will show you a quick example of how you can edit a OpenCart template to change the default layout that is used for your OpenCart site.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/opencart\/edit-opencart-template\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/opencart\/edit-opencart-template\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/opencart\/edit-opencart-template\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/opencart_edit-template_navigate-to-common-template-directory.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/opencart_edit-template_navigate-to-common-template-directory.png\",\"width\":232,\"height\":426,\"caption\":\"navigate to common template directory\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/opencart\/edit-opencart-template\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Edit OpenCart template\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\",\"name\":\"InMotion Hosting Contributor\",\"description\":\"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!\",\"sameAs\":[\"https:\/\/www.linkedin.com\/company\/inmotion-hosting\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting\"],\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Edit OpenCart template | InMotion Hosting","description":"In this tutorial we will show you a quick example of how you can edit a OpenCart template to change the default layout that is used for your OpenCart site.","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:\/\/www.inmotionhosting.com\/support\/edu\/opencart\/edit-opencart-template\/","og_locale":"en_US","og_type":"article","og_title":"Edit OpenCart template | InMotion Hosting","og_description":"In this tutorial we will show you a quick example of how you can edit a OpenCart template to change the default layout that is used for your OpenCart site.","og_url":"https:\/\/www.inmotionhosting.com\/support\/edu\/opencart\/edit-opencart-template\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2013-01-14T23:18:52+00:00","article_modified_time":"2021-08-17T03:24:05+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/opencart_edit-template_navigate-to-common-template-directory.png","type":"","width":"","height":""}],"author":"InMotion Hosting Contributor","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"InMotion Hosting Contributor","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/opencart\/edit-opencart-template\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/opencart\/edit-opencart-template\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644"},"headline":"Edit OpenCart template","datePublished":"2013-01-14T23:18:52+00:00","dateModified":"2021-08-17T03:24:05+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/opencart\/edit-opencart-template\/"},"wordCount":261,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/opencart\/edit-opencart-template\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/opencart_edit-template_navigate-to-common-template-directory.png","articleSection":["OpenCart"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/opencart\/edit-opencart-template\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/opencart\/edit-opencart-template\/","url":"https:\/\/www.inmotionhosting.com\/support\/edu\/opencart\/edit-opencart-template\/","name":"Edit OpenCart template | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/opencart\/edit-opencart-template\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/opencart\/edit-opencart-template\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/opencart_edit-template_navigate-to-common-template-directory.png","datePublished":"2013-01-14T23:18:52+00:00","dateModified":"2021-08-17T03:24:05+00:00","description":"In this tutorial we will show you a quick example of how you can edit a OpenCart template to change the default layout that is used for your OpenCart site.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/opencart\/edit-opencart-template\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/opencart\/edit-opencart-template\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/opencart\/edit-opencart-template\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/opencart_edit-template_navigate-to-common-template-directory.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2013\/01\/opencart_edit-template_navigate-to-common-template-directory.png","width":232,"height":426,"caption":"navigate to common template directory"},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/opencart\/edit-opencart-template\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Edit OpenCart template"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644","name":"InMotion Hosting Contributor","description":"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!","sameAs":["https:\/\/www.linkedin.com\/company\/inmotion-hosting\/","https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting"],"url":"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":null,"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/2174","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/users\/57014"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=2174"}],"version-history":[{"count":5,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/2174\/revisions"}],"predecessor-version":[{"id":85088,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/2174\/revisions\/85088"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=2174"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=2174"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=2174"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}