{"id":25700,"date":"2014-08-17T07:04:16","date_gmt":"2014-08-17T11:04:16","guid":{"rendered":"http:\/\/www.templatemonster.com\/help\/?p=25700"},"modified":"2017-02-22T03:56:45","modified_gmt":"2017-02-22T08:56:45","slug":"prestashop-1-5-x-how-to-manage-footer-and-header-links","status":"publish","type":"post","link":"https:\/\/www.templatemonster.com\/help\/prestashop-1-5-x-how-to-manage-footer-and-header-links.html","title":{"rendered":"PrestaShop 1.5.x. How to manage footer and header links"},"content":{"rendered":"<p><\/p>\r\n<p>The following tutorial is going to show you how to manage header and footer links in PrestaShop 1.5.x templates.<\/p>\r\n<p><a href=\"http:\/\/www.youtube.com\/watch?v=34B6YG6IDi0?width=1280&amp;height=720\" rel=\"prettyPhoto\">PrestaShop 1.5.x. How to manage footer and header links<\/a><\/p>\r\n<ol>\r\n<li>\r\n<p>Log into your PrestaShop admin panel and navigate to <strong>Modules -> Positions<\/strong>.<\/p>\r\n<p><a href=\"\/help\/wp-content\/uploads\/2014\/08\/image1.jpg\"><img loading=\"lazy\" src=\"\/help\/wp-content\/uploads\/2014\/08\/image1-300x168.jpg\" alt=\"image1\" width=\"300\" height=\"168\" class=\"aligncenter size-medium wp-image-35931\" srcset=\"https:\/\/www.templatemonster.com\/help\/wp-content\/uploads\/2014\/08\/image1-300x168.jpg 300w, https:\/\/www.templatemonster.com\/help\/wp-content\/uploads\/2014\/08\/image1-150x84.jpg 150w, https:\/\/www.templatemonster.com\/help\/wp-content\/uploads\/2014\/08\/image1.jpg 1000w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/p>\r\n<\/li>\r\n<li>\r\n<p>Here you should search for <strong>\u2018Top of pages\u2019<\/strong> position and check which module is used to display header links.<\/p>\r\n<\/li>\r\n<li>\r\n<p>That would be Permanent links block in our case.<\/p>\r\n<p><a href=\"\/help\/wp-content\/uploads\/2012\/11\/image2.jpg\"><img loading=\"lazy\" src=\"\/help\/wp-content\/uploads\/2012\/11\/image2-300x168.jpg\" alt=\"image2\" width=\"300\" height=\"168\" class=\"aligncenter size-medium wp-image-35921\" srcset=\"https:\/\/www.templatemonster.com\/help\/wp-content\/uploads\/2012\/11\/image2-300x168.jpg 300w, https:\/\/www.templatemonster.com\/help\/wp-content\/uploads\/2012\/11\/image2-150x84.jpg 150w, https:\/\/www.templatemonster.com\/help\/wp-content\/uploads\/2012\/11\/image2.jpg 1000w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/p>\r\n<\/li>\r\n<li>\r\n<p> Connect via FTP to your domain and navigate to <strong>themes\\themeXXX\\modules\\blockpermanentlinks<\/strong> folder, where themeXXX is the theme you have installed. Here you should edit <strong>blockpermanentlinks-header.tpl<\/strong> file using any code editor.<\/p>\r\n<\/li>\r\n<li>\r\n<p>The following lines of code display header links:<\/p>\r\n<pre class=\"brush:html\">\r\n&lt;ul id=&quot;header_links&quot;&gt;\r\n&lt;li&gt;&lt;a href=&quot;{$link-&gt;getPageLink('index.php')}&quot; class=&quot;header_links_home&quot;&gt;{l s='home' mod='blockpermanentlinks'}&lt;\/a&gt;&lt;\/li&gt;\r\n&lt;li id=&quot;header_link_contact&quot;&gt;&lt;a href=&quot;{$link-&gt;getPageLink('contact', true)}&quot; title=&quot;{l s='contact' mod='blockpermanentlinks'}&quot;&gt;{l s='contact' mod='blockpermanentlinks'}&lt;\/a&gt;&lt;\/li&gt;\r\n&lt;li id=&quot;header_link_sitemap&quot;&gt;&lt;a href=&quot;{$link-&gt;getPageLink('sitemap')}&quot; title=&quot;{l s='sitemap' mod='blockpermanentlinks'}&quot;&gt;{l s='sitemap' mod='blockpermanentlinks'}&lt;\/a&gt;&lt;\/li&gt;\r\n&lt;li id=&quot;header_link_bookmark&quot;&gt;\r\n&lt;script type=&quot;text\/javascript&quot;&gt;writeBookmarkLink('{$come_from}', '{$meta_title|addslashes|addslashes}', '{l s='bookmark' mod='blockpermanentlinks' js=1}');&lt;\/script&gt;\r\n&lt;\/li&gt; \r\n&lt;\/ul&gt;\r\n<\/pre>\r\n<p>Each line of code represents one menu element. E.g. This line is displaying Sitemap menu element:<\/p>\r\n<pre class=\"brush:html\">\r\n&lt;li id=&quot;header_link_sitemap&quot;&gt;&lt;a href=&quot;{$link-&gt;getPageLink('sitemap')}&quot; title=&quot;{l s='sitemap' mod='blockpermanentlinks'}&quot;&gt;{l s='sitemap' mod='blockpermanentlinks'}&lt;\/a&gt;&lt;\/li&gt;\r\n<\/pre>\r\n<\/li>\r\n<li>\r\n<p>You should remove line of code in case you would like to delete some menu element, or you should add a new line of code if you would like to add a new link to menu.<\/p>\r\n<\/li>\r\n<li>\r\n<p>Foe example, we will add a link to Specials page to header links section. URL to Specials page is <em><strong>http:\/\/domain.com\/index.php?controller=prices-drop<\/strong><\/em>.<\/p>\r\n<\/li>\r\n<li>\r\n<p>You should edit <strong>themes\\themeXXX\\modules\\blockpermanentlinks\\blockpermanentlinks-header.tpl<\/strong> file using any code editor.\r\n<\/p>\r\n<\/li>\r\n<li>\r\n<p>Search for the following code:<\/p>\r\n<pre class=\"brush:html\">\r\n&lt;ul id=&quot;header_links&quot;&gt;\r\n&lt;li&gt;&lt;a href=&quot;{$link-&gt;getPageLink('index.php')}&quot; class=&quot;header_links_home&quot;&gt;{l s='home' mod='blockpermanentlinks'}&lt;\/a&gt;&lt;\/li&gt;\r\n&lt;li id=&quot;header_link_contact&quot;&gt;&lt;a href=&quot;{$link-&gt;getPageLink('contact', true)}&quot; title=&quot;{l s='contact' mod='blockpermanentlinks'}&quot;&gt;{l s='contact' mod='blockpermanentlinks'}&lt;\/a&gt;&lt;\/li&gt;\r\n&lt;li id=&quot;header_link_sitemap&quot;&gt;&lt;a href=&quot;{$link-&gt;getPageLink('sitemap')}&quot; title=&quot;{l s='sitemap' mod='blockpermanentlinks'}&quot;&gt;{l s='sitemap' mod='blockpermanentlinks'}&lt;\/a&gt;&lt;\/li&gt;\r\n&lt;li id=&quot;header_link_bookmark&quot;&gt;\r\n&lt;script type=&quot;text\/javascript&quot;&gt;writeBookmarkLink('{$come_from}', '{$meta_title|addslashes|addslashes}', '{l s='bookmark' mod='blockpermanentlinks' js=1}');&lt;\/script&gt;\r\n&lt;\/li&gt; \r\n&lt;\/ul&gt;\r\n<\/pre>\r\n<\/li>\r\n<li>\r\n<p>Add a new line of code<\/p>\r\n<pre class=\"brush:html\">\r\n&lt;li id=&quot;header_link_specials&quot;&gt;&lt;a href=&quot;{$link-&gt;getPageLink('prices-drop')}&quot; title=&quot;{l s='Specials' mod='blockpermanentlinks'}&quot;&gt;{l s='Specials' mod='blockpermanentlinks'}&lt;\/a&gt;&lt;\/li&gt;\r\n<\/pre>\r\n<p>right below:<\/p>\r\n<pre class=\"brush:html\">\r\n&lt;li id=&quot;header_link_contact&quot;&gt;&lt;a href=&quot;{$link-&gt;getPageLink('contact', true)}&quot; title=&quot;{l s='contact' mod='blockpermanentlinks'}&quot;&gt;{l s='contact' mod='blockpermanentlinks'}&lt;\/a&gt;&lt;\/li&gt;\r\n<\/pre>\r\n<\/li>\r\n<li>\r\n<p>Let me explain the meaning of the code:<\/p>\r\n<pre class=\"brush:html\">href=\"{$link->getPageLink('prices-drop')}\"<\/pre>\r\n<p>we should insert a part of URL to the page. The part which goes right after <strong><em>controller=<\/em><\/strong>. That would be prices-drop in our case.<\/p>\r\n<pre class=\"brush:html\">title=\"{l s='Specials'<\/pre>\r\n<p>is the name of the button which is displayed on your site.<\/p>\r\n<\/li>\r\n<li>\r\n<p>Now we will check which modules are used to display links in footer of the site.<\/p>\r\n<\/li>\r\n<li>\r\n<p> Navigate to <strong>Modules -> Positions<\/strong> in PrestaShop admin panel and search for Footer position.<\/p>\r\n<p><a href=\"\/help\/wp-content\/uploads\/2012\/11\/image3.jpg\"><img loading=\"lazy\" src=\"\/help\/wp-content\/uploads\/2012\/11\/image3-300x168.jpg\" alt=\"image3\" width=\"300\" height=\"168\" class=\"aligncenter size-medium wp-image-35922\" srcset=\"https:\/\/www.templatemonster.com\/help\/wp-content\/uploads\/2012\/11\/image3-300x168.jpg 300w, https:\/\/www.templatemonster.com\/help\/wp-content\/uploads\/2012\/11\/image3-150x84.jpg 150w, https:\/\/www.templatemonster.com\/help\/wp-content\/uploads\/2012\/11\/image3.jpg 1000w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/p>\r\n<\/li>\r\n<li>\r\n<p>These modules are used to display content for footer links section:<\/p>\r\n<p><a href=\"\/help\/wp-content\/uploads\/2012\/11\/image4.jpg\"><img loading=\"lazy\" src=\"\/help\/wp-content\/uploads\/2012\/11\/image4-300x168.jpg\" alt=\"image4\" width=\"300\" height=\"168\" class=\"aligncenter size-medium wp-image-35923\" srcset=\"https:\/\/www.templatemonster.com\/help\/wp-content\/uploads\/2012\/11\/image4-300x168.jpg 300w, https:\/\/www.templatemonster.com\/help\/wp-content\/uploads\/2012\/11\/image4-150x84.jpg 150w, https:\/\/www.templatemonster.com\/help\/wp-content\/uploads\/2012\/11\/image4.jpg 1000w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/p>\r\n<\/li>\r\n<li>\r\n<p> <strong>CMS Block<\/strong> is displaying CMS pages. You can navigate to <strong>Modules -> Modules<\/strong> section, search for CMS block, Configure it and select which pages to display on the page.<\/p>\r\n<\/li>\r\n<li>\r\n<p>Our Stores link shows up in CMS block if <strong>Display in the footer<\/strong> option is enabled under <strong>Preferences -> Store Contacts<\/strong> section<\/p>\r\n<p><a href=\"\/help\/wp-content\/uploads\/2012\/11\/image5.jpg\"><img loading=\"lazy\" src=\"\/help\/wp-content\/uploads\/2012\/11\/image5-300x168.jpg\" alt=\"image5\" width=\"300\" height=\"168\" class=\"aligncenter size-medium wp-image-35924\" srcset=\"https:\/\/www.templatemonster.com\/help\/wp-content\/uploads\/2012\/11\/image5-300x168.jpg 300w, https:\/\/www.templatemonster.com\/help\/wp-content\/uploads\/2012\/11\/image5-150x84.jpg 150w, https:\/\/www.templatemonster.com\/help\/wp-content\/uploads\/2012\/11\/image5.jpg 1000w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/p>\r\n<\/li>\r\n<li>\r\n<p>Categories column displays all the categories activated in <strong>Admin > Catalog > Categories<\/strong>.<\/p>\r\n<\/li>\r\n<li>\r\n<p>My account block for your website&#8217;s footer is displaying My account section. You can enable or disable that block under <strong>Modules -> Modules<\/strong> in your PrestaShop admin panel.<\/p>\r\n<\/li>\r\n<li>\r\n<p>My account links can be modified in <strong>\/themes\/themeXXX\/modules\/blockmyaccount\/blockmyaccount.tpl<\/strong> file,  where themeXXX is your theme folder name.<\/p>\r\n<pre class=\"brush:html\">\r\n<ul class=\"store_list\">\r\n&lt;ul class=&quot;store_list&quot;&gt;\r\n&lt;li&gt;&lt;a href=&quot;{$link-&gt;getPageLink('history', true)}&quot; title=&quot;&quot;&gt;{l s='My orders' mod='blockmyaccount'}&lt;\/a&gt;&lt;\/li&gt;\r\n{if $returnAllowed}&lt;li&gt;&lt;a href=&quot;{$link-&gt;getPageLink('order-follow', true)}&quot; title=&quot;{l s='My merchandise returns' mod='blockmyaccount'}&quot;&gt;{l s='My merchandise returns' mod='blockmyaccount'}&lt;\/a&gt;&lt;\/li&gt;{\/if}\r\n&lt;li&gt;&lt;a href=&quot;{$link-&gt;getPageLink('order-slip', true)}&quot; title=&quot;{l s='My credit slips' mod='blockmyaccount'}&quot;&gt;{l s='My credit slips' mod='blockmyaccount'}&lt;\/a&gt;&lt;\/li&gt;\r\n&lt;li&gt;&lt;a href=&quot;{$link-&gt;getPageLink('addresses', true)}&quot; title=&quot;{l s='My addresses' mod='blockmyaccount'}&quot;&gt;{l s='My addresses' mod='blockmyaccount'}&lt;\/a&gt;&lt;\/li&gt;\r\n&lt;li&gt;&lt;a href=&quot;{$link-&gt;getPageLink('identity', true)}&quot; title=&quot;{l s='My personal info' mod='blockmyaccount'}&quot;&gt;{l s='My personal info' mod='blockmyaccount'}&lt;\/a&gt;&lt;\/li&gt;\r\n{if $voucherAllowed}&lt;li&gt;&lt;a href=&quot;{$link-&gt;getPageLink('discount', true)}&quot; title=&quot;{l s='My vouchers' mod='blockmyaccount'}&quot;&gt;{l s='My vouchers' mod='blockmyaccount'}&lt;\/a&gt;&lt;\/li&gt;{\/if}\r\n{$HOOK_BLOCK_MY_ACCOUNT}\r\n&lt;\/ul&gt;\r\n<\/pre>\r\n<\/li>\r\n<li>Information links can be modified in <strong>\/themes\/themeXXX\/modules\/blockcms\/blockcms.tpl<\/strong> file, where themeXXX is your theme folder name.<\/p>\r\n<\/li>\r\n<li>\r\n<p>The following code is displaying Information section:<\/p>\r\n<pre class=\"brush:html\">\r\n&lt;ul class=&quot;list-footer toggle_content clearfix&quot;&gt;\r\n{if !$PS_CATALOG_MODE}&lt;li class=&quot;first_item&quot;&gt;&lt;a href=&quot;{$link-&gt;getPageLink('prices-drop')}&quot; title=&quot;{l s='Specials' mod='blockcms'}&quot;&gt;&lt;i class=&quot;icon-circle-arrow-right&quot;&gt;&lt;\/i&gt;{l s='Specials' mod='blockcms'}&lt;\/a&gt;&lt;\/li&gt;{\/if}\r\n&lt;li class=&quot;{if $PS_CATALOG_MODE}first_{\/if}item&quot;&gt;&lt;a href=&quot;{$link-&gt;getPageLink('new-products')}&quot; title=&quot;{l s='New products' mod='blockcms'}&quot;&gt;{l s='New products' mod='blockcms'}&lt;\/a&gt;&lt;\/li&gt;\r\n{if !$PS_CATALOG_MODE}&lt;li class=&quot;item&quot;&gt;&lt;a href=&quot;{$link-&gt;getPageLink('best-sales')}&quot; title=&quot;{l s='Top sellers' mod='blockcms'}&quot;&gt;&lt;i class=&quot;icon-circle-arrow-right&quot;&gt;&lt;\/i&gt;{l s='Top sellers' mod='blockcms'}&lt;\/a&gt;&lt;\/li&gt;{\/if}\r\n{if $display_stores_footer}&lt;li class=&quot;item&quot;&gt;&lt;a href=&quot;{$link-&gt;getPageLink('stores')}&quot; title=&quot;{l s='Our stores' mod='blockcms'}&quot;&gt;{l s='Our stores' mod='blockcms'}&lt;\/a&gt;&lt;\/li&gt;{\/if}\r\n&lt;li class=&quot;item&quot;&gt;&lt;a href=&quot;{$link-&gt;getPageLink($contact_url, true)}&quot; title=&quot;{l s='Contact us' mod='blockcms'}&quot;&gt;&lt;i class=&quot;icon-circle-arrow-right&quot;&gt;&lt;\/i&gt;{l s='Contact us' mod='blockcms'}&lt;\/a&gt;&lt;\/li&gt;\r\n{foreach from=$cmslinks item=cmslink}\r\n{if $cmslink.meta_title != ''}\r\n&lt;li class=&quot;item&quot;&gt;&lt;a href=&quot;{$cmslink.link|addslashes}&quot; title=&quot;{$cmslink.meta_title|escape:'htmlall':'UTF-8'}&quot;&gt;&lt;i class=&quot;icon-circle-arrow-right&quot;&gt;&lt;\/i&gt;{$cmslink.meta_title|escape:'htmlall':'UTF-8'}&lt;\/a&gt;&lt;\/li&gt;\r\n{\/if}\r\n{\/foreach}\r\n{*\r\n&lt;li&gt;&lt;a href=&quot;{$link-&gt;getPageLink('sitemap')}&quot; title=&quot;{l s='sitemap' mod='blockcms'}&quot;&gt;&lt;i class=&quot;icon-circle-arrow-right&quot;&gt;&lt;\/i&gt;{l s='Sitemap' mod='blockcms'}&lt;\/a&gt;&lt;\/li&gt;\r\n*}\r\n&lt;\/ul&gt;\r\n  <\/pre>\r\n<\/li>\r\n<li>\r\n<p>Each line of code represents one menu element. The syntax is the same as in <strong>themes\\themeXXX\\modules\\blockpermanentlinks\\blockpermanentlinks-header.tpl<\/strong> file.<\/p>\r\n<\/li>\r\n<li>\r\n<p> Block contact info is displaying Contact us section. Navigate to <strong>Modules -> Modules<\/strong> in your PrestaShop admin panel and search for <strong>Block contact info<\/strong> in the list of blocks.<\/p>\r\n<p><a href=\"\/help\/wp-content\/uploads\/2012\/11\/image6.jpg\"><img loading=\"lazy\" src=\"\/help\/wp-content\/uploads\/2012\/11\/image6-300x168.jpg\" alt=\"image6\" width=\"300\" height=\"168\" class=\"aligncenter size-medium wp-image-35925\" srcset=\"https:\/\/www.templatemonster.com\/help\/wp-content\/uploads\/2012\/11\/image6-300x168.jpg 300w, https:\/\/www.templatemonster.com\/help\/wp-content\/uploads\/2012\/11\/image6-150x84.jpg 150w, https:\/\/www.templatemonster.com\/help\/wp-content\/uploads\/2012\/11\/image6.jpg 1000w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/p>\r\n<\/li>\r\n<li>\r\n<p>Click <strong>Configure <\/strong>button to edit block.<\/p>\r\n<p><a href=\"\/help\/wp-content\/uploads\/2012\/11\/image9.jpg\"><img loading=\"lazy\" src=\"\/help\/wp-content\/uploads\/2012\/11\/image9-300x168.jpg\" alt=\"image9\" width=\"300\" height=\"168\" class=\"aligncenter size-medium wp-image-35926\" srcset=\"https:\/\/www.templatemonster.com\/help\/wp-content\/uploads\/2012\/11\/image9-300x168.jpg 300w, https:\/\/www.templatemonster.com\/help\/wp-content\/uploads\/2012\/11\/image9-150x84.jpg 150w, https:\/\/www.templatemonster.com\/help\/wp-content\/uploads\/2012\/11\/image9.jpg 1000w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/p>\r\n<\/li>\r\n<li>\r\n<p><strong>Social networking block<\/strong> is displaying Follow us section. Navigate to <strong>Modules -> Modules<\/strong> in your PrestaShop admin panel and search for Social networking block in the list of blocks. Click <strong>Configure<\/strong> link to edit it.<\/p>\r\n<p><a href=\"\/help\/wp-content\/uploads\/2012\/11\/image7.jpg\"><img loading=\"lazy\" src=\"\/help\/wp-content\/uploads\/2012\/11\/image7-300x168.jpg\" alt=\"image7\" width=\"300\" height=\"168\" class=\"aligncenter size-medium wp-image-35927\" srcset=\"https:\/\/www.templatemonster.com\/help\/wp-content\/uploads\/2012\/11\/image7-300x168.jpg 300w, https:\/\/www.templatemonster.com\/help\/wp-content\/uploads\/2012\/11\/image7-150x84.jpg 150w, https:\/\/www.templatemonster.com\/help\/wp-content\/uploads\/2012\/11\/image7.jpg 1000w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/p>\r\n<\/li>\r\n<li>\r\n<p>Here you can update links for each social icon.<\/p>\r\n<p><a href=\"\/help\/wp-content\/uploads\/2012\/11\/image8.jpg\"><img loading=\"lazy\" src=\"\/help\/wp-content\/uploads\/2012\/11\/image8-300x168.jpg\" alt=\"image8\" width=\"300\" height=\"168\" class=\"aligncenter size-medium wp-image-35928\" srcset=\"https:\/\/www.templatemonster.com\/help\/wp-content\/uploads\/2012\/11\/image8-300x168.jpg 300w, https:\/\/www.templatemonster.com\/help\/wp-content\/uploads\/2012\/11\/image8-150x84.jpg 150w, https:\/\/www.templatemonster.com\/help\/wp-content\/uploads\/2012\/11\/image8.jpg 1000w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/p>\r\n<\/li>\r\n<\/ol>\r\n<p>Feel free to check the detailed video tutorial below:<\/p>\r\n<p><a href=\"http:\/\/www.youtube.com\/watch?v=34B6YG6IDi0?width=1280&amp;height=720\" rel=\"prettyPhoto\">PrestaShop 1.5.x. How to manage footer and header links<\/a><\/p>\r\n<p><\/p>\r\n<p><\/p>\r\n<p><\/p>","protected":false},"excerpt":{"rendered":"<p>The following tutorial is going to show you how to manage header and footer links in PrestaShop 1.5.x templates.<\/p>\n","protected":false},"author":57,"featured_media":25716,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":[],"categories":[732],"tags":[2564,657,627,511,793,552],"_links":{"self":[{"href":"https:\/\/www.templatemonster.com\/help\/wp-json\/wp\/v2\/posts\/25700"}],"collection":[{"href":"https:\/\/www.templatemonster.com\/help\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.templatemonster.com\/help\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.templatemonster.com\/help\/wp-json\/wp\/v2\/users\/57"}],"replies":[{"embeddable":true,"href":"https:\/\/www.templatemonster.com\/help\/wp-json\/wp\/v2\/comments?post=25700"}],"version-history":[{"count":0,"href":"https:\/\/www.templatemonster.com\/help\/wp-json\/wp\/v2\/posts\/25700\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.templatemonster.com\/help\/wp-json\/wp\/v2\/media\/25716"}],"wp:attachment":[{"href":"https:\/\/www.templatemonster.com\/help\/wp-json\/wp\/v2\/media?parent=25700"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.templatemonster.com\/help\/wp-json\/wp\/v2\/categories?post=25700"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.templatemonster.com\/help\/wp-json\/wp\/v2\/tags?post=25700"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}