<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The Magento Expert</title>
	<atom:link href="http://www.the-mage-expert.com/tag/cms/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.the-mage-expert.com</link>
	<description>Your Magento Commerce Expert</description>
	<lastBuildDate>Tue, 24 Jan 2023 09:37:24 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.8.6</generator>
	<item>
		<title>Using jQuery and domReady in a static block or CMS page</title>
		<link>http://www.the-mage-expert.com/1227/magento2-using-jquery-domready-static-block-cms-page/</link>
		<comments>http://www.the-mage-expert.com/1227/magento2-using-jquery-domready-static-block-cms-page/#comments</comments>
		<pubDate>Mon, 23 Jan 2023 13:25:55 +0000</pubDate>
		<dc:creator><![CDATA[Mex]]></dc:creator>
				<category><![CDATA[Magento Solutions]]></category>
		<category><![CDATA[block]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Magento 2]]></category>

		<guid isPermaLink="false">http://www.the-mage-expert.com/?p=1227</guid>
		<description><![CDATA[Using jQuery in a Magento 2 static block or CMS page can be tricky, a special syntax is required. Use the following code to add jQuery when all the content was loaded: [crayon-69f629e227366/] Of course, you can skip listening to&#8230;]]></description>
				<content:encoded><![CDATA[<p>Using jQuery in a Magento 2 static block or CMS page can be tricky, a special syntax is required. Use the following code to add jQuery when all the content was loaded: </p>
<p></p><pre class="crayon-plain-tag">&lt;script&gt;
    require([
        'jquery'
        ,'domReady!'
    ], function ($) {
         console.log('whatever');
    });
&lt;/script&gt;</pre><p>Of course, you can skip listening to domReady event! Just remove the domReady line, like this:</p><pre class="crayon-plain-tag">&lt;script&gt;
    require([
        'jquery'
    ], function ($) {
         console.log('whatever');
    });
&lt;/script&gt;</pre><p></p>]]></content:encoded>
			<wfw:commentRss>http://www.the-mage-expert.com/1227/magento2-using-jquery-domready-static-block-cms-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding a static block to a CMS page</title>
		<link>http://www.the-mage-expert.com/702/magento-adding-static-block-to-cms-page/</link>
		<comments>http://www.the-mage-expert.com/702/magento-adding-static-block-to-cms-page/#comments</comments>
		<pubDate>Wed, 05 Nov 2014 08:48:47 +0000</pubDate>
		<dc:creator><![CDATA[Mex]]></dc:creator>
				<category><![CDATA[Magento Solutions]]></category>
		<category><![CDATA[block]]></category>
		<category><![CDATA[CMS]]></category>

		<guid isPermaLink="false">http://www.the-mage-expert.com/?p=702</guid>
		<description><![CDATA[Use the below code to add a Magento block to your CMS page. [crayon-69f629e230b4d/]]]></description>
				<content:encoded><![CDATA[<p>Use the below code to add a Magento block to your CMS page.</p>
<p></p><pre class="crayon-plain-tag">{{block type=&quot;cms/block&quot; block_id=&quot;block_id&quot;}}</pre><p></p>]]></content:encoded>
			<wfw:commentRss>http://www.the-mage-expert.com/702/magento-adding-static-block-to-cms-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing the title tag of the home page or any CMS page</title>
		<link>http://www.the-mage-expert.com/481/magento-changing-title-tag-of-home-any-cms-page/</link>
		<comments>http://www.the-mage-expert.com/481/magento-changing-title-tag-of-home-any-cms-page/#comments</comments>
		<pubDate>Fri, 01 Nov 2013 09:07:58 +0000</pubDate>
		<dc:creator><![CDATA[Mex]]></dc:creator>
				<category><![CDATA[Magento Solutions]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[home page]]></category>
		<category><![CDATA[layout]]></category>

		<guid isPermaLink="false">http://www.the-mage-expert.com/?p=481</guid>
		<description><![CDATA[Magento automatically adds the defined suffix to the title tag on every page. If you want to change that for lets say the home page, open the CMS page &#8220;home&#8221; and add the following XML to the layout section: [crayon-69f629e231318/]]]></description>
				<content:encoded><![CDATA[<p>Magento automatically adds the defined suffix to the title tag on every page. If you want to change that for lets say the home page, open the CMS page &#8220;home&#8221; and add the following XML to the layout section:</p>
<p></p><pre class="crayon-plain-tag">&lt;reference name=&quot;head&quot;&gt;
    &lt;action method=&quot;setData&quot;&gt;&lt;key&gt;title&lt;/key&gt;&lt;value&gt;... Title Tag ...&lt;/value&gt;&lt;/action&gt;
&lt;/reference&gt;</pre><p></p>]]></content:encoded>
			<wfw:commentRss>http://www.the-mage-expert.com/481/magento-changing-title-tag-of-home-any-cms-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding config data to a CMS page</title>
		<link>http://www.the-mage-expert.com/348/magento-adding-config-data-to-cms-page/</link>
		<comments>http://www.the-mage-expert.com/348/magento-adding-config-data-to-cms-page/#comments</comments>
		<pubDate>Mon, 06 May 2013 15:39:57 +0000</pubDate>
		<dc:creator><![CDATA[Mex]]></dc:creator>
				<category><![CDATA[Magento Solutions]]></category>
		<category><![CDATA[CMS]]></category>

		<guid isPermaLink="false">http://www.the-mage-expert.com/?p=348</guid>
		<description><![CDATA[To add the data from the admin to a CMS page, use the following code: [crayon-69f629e2317e5/] This code adds the vat id, you can easily add other info by looking up the correct path from the core_config table.]]></description>
				<content:encoded><![CDATA[<p>To add the data from the admin to a CMS page, use the following code:</p>
<p></p><pre class="crayon-plain-tag">{{config path=&quot;general/imprint/vat_id&quot;}}
...</pre><p></p>
<p>This code adds the vat id, you can easily add other info by looking up the correct path from the <em>core_config</em> table. </p>]]></content:encoded>
			<wfw:commentRss>http://www.the-mage-expert.com/348/magento-adding-config-data-to-cms-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using skin, media, &#8230; URLs in blocks or CMS pages</title>
		<link>http://www.the-mage-expert.com/104/magento-skin-media-urls-in-blocks-cms-pages/</link>
		<comments>http://www.the-mage-expert.com/104/magento-skin-media-urls-in-blocks-cms-pages/#comments</comments>
		<pubDate>Mon, 25 Mar 2013 12:19:16 +0000</pubDate>
		<dc:creator><![CDATA[Mex]]></dc:creator>
				<category><![CDATA[Magento Solutions]]></category>
		<category><![CDATA[block]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://www.the-mage-expert.com/?p=104</guid>
		<description><![CDATA[The following 4 examples show how to get the skin, media, base and store URLs in a MAgento block or CMS page: skin: {{skin url=&#8217;images/sampleimage.jpg&#8217;}} media: {{media url=&#8217;/sampleimage.jpg&#8217;}} base: {{base url=&#8217;yourstore/mypage.html&#8217;}} store: {{store url=&#8217;mypage.html&#8217;}}]]></description>
				<content:encoded><![CDATA[<p>The following 4 examples show how to get the skin, media, base and store URLs in a MAgento block or CMS page:</p>
<p>skin: {{skin url=&#8217;images/sampleimage.jpg&#8217;}}<br />
media: {{media url=&#8217;/sampleimage.jpg&#8217;}}<br />
base: {{base url=&#8217;yourstore/mypage.html&#8217;}}<br />
store: {{store url=&#8217;mypage.html&#8217;}}</p>]]></content:encoded>
			<wfw:commentRss>http://www.the-mage-expert.com/104/magento-skin-media-urls-in-blocks-cms-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
