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

<channel>
	<title>Creative Tweets</title>
	<atom:link href="http://www.creativetweets.com/feed/" rel="self" type="application/rss+xml"/>
	<link>http://www.creativetweets.com</link>
	<description>Share Your Tweets With Us</description>
	<lastBuildDate>Thu, 27 May 2021 07:49:45 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<itunes:explicit>no</itunes:explicit><itunes:subtitle>Share Your Tweets With Us</itunes:subtitle><item>
		<title>How to Create Fullwidth Embed YouTube Video</title>
		<link>http://www.creativetweets.com/how-to-create-fullwidth-embed-youtube-video/</link>
					<comments>http://www.creativetweets.com/how-to-create-fullwidth-embed-youtube-video/#respond</comments>
		
		<dc:creator><![CDATA[Renjith Rajan &#124; Web Designer Kerala &#124; The Creative Hero]]></dc:creator>
		<pubDate>Thu, 27 May 2021 07:49:23 +0000</pubDate>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Css3]]></category>
		<category><![CDATA[Html]]></category>
		<category><![CDATA[Html5]]></category>
		<category><![CDATA[Create Fullwidth Embed YouTube Video]]></category>
		<category><![CDATA[Create Fullwidth Embed YouTube Video with css]]></category>
		<category><![CDATA[Fullwidth Embed YouTube Video]]></category>
		<category><![CDATA[Fullwidth YouTube Video]]></category>
		<category><![CDATA[How to Create Fullwidth Embed YouTube Video]]></category>
		<guid isPermaLink="false">https://www.creativetweets.com/?p=574</guid>

					<description><![CDATA[<p>Here is the solution for Fullwidth Embed YouTube Video. You can use this method to create Fullwidth Embed YouTube Video in you website with css&#46;&#46;&#46;</p>
The post <a href="http://www.creativetweets.com/how-to-create-fullwidth-embed-youtube-video/">How to Create Fullwidth Embed YouTube Video</a> first appeared on <a href="http://www.creativetweets.com">Creative Tweets</a>.]]></description>
										<content:encoded><![CDATA[<p>Here is the solution for Fullwidth Embed YouTube Video. You can use this method to create Fullwidth Embed YouTube Video in you website with css</p>
<pre class="lang:xhtml decode:true " >&lt;style&gt;
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}
.video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
&lt;/style&gt;

&lt;div class="video-container"&gt;
    &lt;iframe class="video" src="https://www.youtube.com/embed/cxeO6PIcCMM?rel=0&amp;modestbranding=1&amp;autohide=1&amp;mute=1&amp;showinfo=0&amp;controls=0&amp;autoplay=1&amp;loop=1&amp;playlist=cxeO6PIcCMM" allowfullscreen&gt;&lt;/iframe&gt;
&lt;/div&gt;</pre>The post <a href="http://www.creativetweets.com/how-to-create-fullwidth-embed-youtube-video/">How to Create Fullwidth Embed YouTube Video</a> first appeared on <a href="http://www.creativetweets.com">Creative Tweets</a>.]]></content:encoded>
					
					<wfw:commentRss>http://www.creativetweets.com/how-to-create-fullwidth-embed-youtube-video/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Fix Flexslider Jquery Conflict</title>
		<link>http://www.creativetweets.com/how-to-fix-flexslider-jquery-conflict/</link>
					<comments>http://www.creativetweets.com/how-to-fix-flexslider-jquery-conflict/#respond</comments>
		
		<dc:creator><![CDATA[Renjith Rajan &#124; Web Designer Kerala &#124; The Creative Hero]]></dc:creator>
		<pubDate>Tue, 24 Dec 2019 11:52:27 +0000</pubDate>
				<category><![CDATA[Html]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[Flexslider Jquery Conflict]]></category>
		<category><![CDATA[How to Fix Flexslider Jquery Conflict]]></category>
		<category><![CDATA[How to Solve Flexslider Jquery Conflict]]></category>
		<category><![CDATA[simple solution for Flexslider Jquery Conflict]]></category>
		<guid isPermaLink="false">http://www.creativetweets.com/?p=565</guid>

					<description><![CDATA[<p>Flexslider is actually good option for adding simple slider to your html or wordpress website. But unfortunately sometimes Flexslider will make some Jquery Conflict. So&#46;&#46;&#46;</p>
The post <a href="http://www.creativetweets.com/how-to-fix-flexslider-jquery-conflict/">How to Fix Flexslider Jquery Conflict</a> first appeared on <a href="http://www.creativetweets.com">Creative Tweets</a>.]]></description>
										<content:encoded><![CDATA[<p>Flexslider is actually good option for adding simple slider to your html or wordpress website. But unfortunately sometimes Flexslider will make some Jquery Conflict. So here is the simple solution for Flexslider Jquery Conflict. Remove the old flexslider code replace with below code.</p>
<pre class="lang:js decode:true " >&lt;script type="text/javascript"&gt;
   (function($) {
      $(window).load(function(){
      $('.flexslider').flexslider({
        animation: "slide",
        start: function(slider){
          $('body').removeClass('loading');
        }
      });
    });
   })(jQuery);

&lt;/script&gt;</pre>The post <a href="http://www.creativetweets.com/how-to-fix-flexslider-jquery-conflict/">How to Fix Flexslider Jquery Conflict</a> first appeared on <a href="http://www.creativetweets.com">Creative Tweets</a>.]]></content:encoded>
					
					<wfw:commentRss>http://www.creativetweets.com/how-to-fix-flexslider-jquery-conflict/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Redirect non-www to www and HTTP to HTTPS using htaccess</title>
		<link>http://www.creativetweets.com/redirect-non-www-to-www-and-http-to-https-using-htaccess/</link>
					<comments>http://www.creativetweets.com/redirect-non-www-to-www-and-http-to-https-using-htaccess/#respond</comments>
		
		<dc:creator><![CDATA[Renjith Rajan &#124; Web Designer Kerala &#124; The Creative Hero]]></dc:creator>
		<pubDate>Tue, 19 Nov 2019 11:30:45 +0000</pubDate>
				<category><![CDATA[Html]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[How to Redirect HTTP to HTTPS]]></category>
		<category><![CDATA[How to Redirect HTTP to HTTPS with htaccess]]></category>
		<category><![CDATA[How to Redirect non-www to www]]></category>
		<category><![CDATA[How to Redirect non-www to www with htaccess]]></category>
		<category><![CDATA[Redirect HTTP to HTTPS using htaccess]]></category>
		<category><![CDATA[Redirect non-www to www and HTTP to HTTPS using htaccess]]></category>
		<category><![CDATA[Redirect non-www to www using htaccess]]></category>
		<guid isPermaLink="false">http://www.creativetweets.com/?p=560</guid>

					<description><![CDATA[<p>Here is the simple code for using Redirect non-www to www and HTTP to HTTPS using htaccess. add this code to your htaccess file. Redirect&#46;&#46;&#46;</p>
The post <a href="http://www.creativetweets.com/redirect-non-www-to-www-and-http-to-https-using-htaccess/">Redirect non-www to www and HTTP to HTTPS using htaccess</a> first appeared on <a href="http://www.creativetweets.com">Creative Tweets</a>.]]></description>
										<content:encoded><![CDATA[<p>Here is the simple code for using Redirect non-www to www and HTTP to HTTPS using htaccess. add this code to your htaccess file.<br />
Redirect all url to www and https</p>
<pre class="lang:php decode:true " >RewriteEngine On
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteCond %{HTTP_HOST} ^(?:www\.)?(.+)$ [NC]
RewriteRule ^ https://www.%1%{REQUEST_URI} [L,NE,R=301]</pre>
<p>Redirect all url without www and with https</p>
<pre class="lang:php decode:true " >RewriteEngine On
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} ^www\. [NC]
RewriteCond %{HTTP_HOST} ^(?:www\.)?(.+)$ [NC]
RewriteRule ^ https://%1%{REQUEST_URI} [L,NE,R=301]</pre>The post <a href="http://www.creativetweets.com/redirect-non-www-to-www-and-http-to-https-using-htaccess/">Redirect non-www to www and HTTP to HTTPS using htaccess</a> first appeared on <a href="http://www.creativetweets.com">Creative Tweets</a>.]]></content:encoded>
					
					<wfw:commentRss>http://www.creativetweets.com/redirect-non-www-to-www-and-http-to-https-using-htaccess/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Display HSN code in Woocommerce pdf invoice</title>
		<link>http://www.creativetweets.com/display-hsn-code-in-woocommerce-pdf-invoice/</link>
					<comments>http://www.creativetweets.com/display-hsn-code-in-woocommerce-pdf-invoice/#respond</comments>
		
		<dc:creator><![CDATA[Vipin Vasudev]]></dc:creator>
		<pubDate>Wed, 24 Apr 2019 08:03:13 +0000</pubDate>
				<category><![CDATA[Php]]></category>
		<category><![CDATA[woocommerce]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[Display HSN code in Woocommerce pdf invoice]]></category>
		<category><![CDATA[Free WordPress Plugins]]></category>
		<category><![CDATA[WooCommerce PDF Invoices & Packing Slips]]></category>
		<category><![CDATA[wordpress code help]]></category>
		<guid isPermaLink="false">http://www.creativetweets.com/?p=553</guid>

					<description><![CDATA[<p>I&#8217;m using this WooCommerce PDF Invoices &#38; Packing Slips For display HSN Code in Pdf  invoice,  please add this code in the plugin folder template&#46;&#46;&#46;</p>
The post <a href="http://www.creativetweets.com/display-hsn-code-in-woocommerce-pdf-invoice/">Display HSN code in Woocommerce pdf invoice</a> first appeared on <a href="http://www.creativetweets.com">Creative Tweets</a>.]]></description>
										<content:encoded><![CDATA[<p>I&#8217;m using this <a href="https://wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/" target="_blank" rel="noopener noreferrer">WooCommerce PDF Invoices &amp; Packing Slips</a></p>
<p>For display HSN Code in Pdf  invoice,  please add this code in the plugin folder template &gt;simple.&gt; invoice.php</p>
<pre class="lang:php decode:true">&lt;?php if( !empty( $hsn_prod_id ) ) : ?&gt;
&lt;dt class="hsn_prod_id"&gt;&lt;?php _e( 'HSN:', 'woocommerce-pdf-invoices-packing-slips' ); ?&gt;&lt;/dt&gt;&lt;dd class="hsn_prod_id"&gt;&lt;?php echo $hsn_prod_id; ?&gt;&lt;/dd&gt;
&lt;?php endif; ?&gt;</pre>
<p>&nbsp;</p>The post <a href="http://www.creativetweets.com/display-hsn-code-in-woocommerce-pdf-invoice/">Display HSN code in Woocommerce pdf invoice</a> first appeared on <a href="http://www.creativetweets.com">Creative Tweets</a>.]]></content:encoded>
					
					<wfw:commentRss>http://www.creativetweets.com/display-hsn-code-in-woocommerce-pdf-invoice/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to add an additional charges for cash on delivery payment method (cod) in Woocommerce ?</title>
		<link>http://www.creativetweets.com/how-to-add-an-additional-charges-for-cash-on-delivery-payment-method-cod-in-woocommerce/</link>
					<comments>http://www.creativetweets.com/how-to-add-an-additional-charges-for-cash-on-delivery-payment-method-cod-in-woocommerce/#respond</comments>
		
		<dc:creator><![CDATA[Vipin Vasudev]]></dc:creator>
		<pubDate>Fri, 12 Apr 2019 07:28:28 +0000</pubDate>
				<category><![CDATA[Php]]></category>
		<category><![CDATA[woocommerce]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[COD extra charge]]></category>
		<category><![CDATA[risk free cash on delivery (cod) – woocommerce]]></category>
		<category><![CDATA[Shopping Cart COD extra charge]]></category>
		<category><![CDATA[woocommerce cash on delivery extra fee]]></category>
		<category><![CDATA[woocommerce cash on delivery plus fee]]></category>
		<category><![CDATA[woocommerce cash on pickup]]></category>
		<category><![CDATA[woocommerce cod charge]]></category>
		<category><![CDATA[woocommerce functions]]></category>
		<category><![CDATA[woocommerce smart cod]]></category>
		<category><![CDATA[wordpress code help]]></category>
		<guid isPermaLink="false">http://www.creativetweets.com/?p=548</guid>

					<description><![CDATA[<p>We can add an additional charge for only cash on delivery (COD) in woocommerce shopping cart website. Please add the below function code in your&#46;&#46;&#46;</p>
The post <a href="http://www.creativetweets.com/how-to-add-an-additional-charges-for-cash-on-delivery-payment-method-cod-in-woocommerce/">How to add an additional charges for cash on delivery payment method (cod) in Woocommerce ?</a> first appeared on <a href="http://www.creativetweets.com">Creative Tweets</a>.]]></description>
										<content:encoded><![CDATA[<p>We can add an additional charge for only cash on delivery (COD) in woocommerce shopping cart website.<br />
Please add the below function code in your theme folder function.php file.<br />
In this code i have added 25 as Handling Charges( &#8216;$fee = 25;&#8217; ) you can change this.</p>
<pre class="lang:php decode:true ">// Add a custom fee based o cart subtotal
add_action( 'woocommerce_cart_calculate_fees', 'custom_handling_fee', 10, 1 );
function custom_handling_fee ( $cart ) {
    if ( is_admin() &amp;&amp; ! defined( 'DOING_AJAX' ) )
        return;

    if ( 'cod' === WC()-&gt;session-&gt;get('chosen_payment_method') ) {
        $fee = 25;
        $cart-&gt;add_fee( 'Handling Charges', $fee, true );
    }
}

// jQuery - Update checkout on methode payment change
add_action( 'wp_footer', 'custom_checkout_jqscript' );
function custom_checkout_jqscript() {
    if ( is_checkout() &amp;&amp; ! is_wc_endpoint_url() ) :
    ?&gt;
    &lt;script type="text/javascript"&gt;
    jQuery( function($){
        $('form.checkout').on('change', 'input[name="payment_method"]', function(){
            $(document.body).trigger('update_checkout');
        });
    });
    &lt;/script&gt;
    &lt;?php
    endif;
}</pre>
<p>&nbsp;</p>
<hr style="width: 100%; float: left;" />
<p><strong>If you liked our work and effort then please consider to make a kind donation.</strong><br />
<a href="https://www.paypal.me/vipizone" target="_blank" rel="noopener"><img decoding="async" class="alignleft size-full wp-image-449" src="http://www.creativetweets.com/wp-content/uploads/2017/12/PayPal-Donate-Button-PNG-HD.png" alt="" width="300" srcset="http://www.creativetweets.com/wp-content/uploads/2017/12/PayPal-Donate-Button-PNG-HD.png 380w, http://www.creativetweets.com/wp-content/uploads/2017/12/PayPal-Donate-Button-PNG-HD-300x103.png 300w" sizes="(max-width: 380px) 100vw, 380px" /></a></p>The post <a href="http://www.creativetweets.com/how-to-add-an-additional-charges-for-cash-on-delivery-payment-method-cod-in-woocommerce/">How to add an additional charges for cash on delivery payment method (cod) in Woocommerce ?</a> first appeared on <a href="http://www.creativetweets.com">Creative Tweets</a>.]]></content:encoded>
					
					<wfw:commentRss>http://www.creativetweets.com/how-to-add-an-additional-charges-for-cash-on-delivery-payment-method-cod-in-woocommerce/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Woocommerce order total ajax update on country change</title>
		<link>http://www.creativetweets.com/woocommerce-order-total-ajax-update-on-country-change/</link>
					<comments>http://www.creativetweets.com/woocommerce-order-total-ajax-update-on-country-change/#respond</comments>
		
		<dc:creator><![CDATA[Renjith Rajan &#124; Web Designer Kerala &#124; The Creative Hero]]></dc:creator>
		<pubDate>Wed, 20 Feb 2019 09:42:12 +0000</pubDate>
				<category><![CDATA[woocommerce]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[change checkout total woocommerce]]></category>
		<category><![CDATA[Woocommerce ajax update]]></category>
		<category><![CDATA[woocommerce change cart total price]]></category>
		<category><![CDATA[woocommerce checkout page ajax]]></category>
		<category><![CDATA[woocommerce checkout total]]></category>
		<category><![CDATA[Woocommerce order total ajax update]]></category>
		<category><![CDATA[woocommerce order total ajax update on country change]]></category>
		<guid isPermaLink="false">http://www.creativetweets.com/?p=544</guid>

					<description><![CDATA[<p>This is the simple solution for apply ajax update on Woocommerce checkout order total based on country change. Add this code to your theme functions&#46;&#46;&#46;</p>
The post <a href="http://www.creativetweets.com/woocommerce-order-total-ajax-update-on-country-change/">Woocommerce order total ajax update on country change</a> first appeared on <a href="http://www.creativetweets.com">Creative Tweets</a>.]]></description>
										<content:encoded><![CDATA[<p>This is the simple solution for apply ajax update on Woocommerce checkout order total based on country change. Add this code to your theme functions php file.</p>
<pre class="lang:php decode:true " >//Creative Tweets--
add_action('wp_footer', 'billing_country_update_checkout', 50);
function billing_country_update_checkout() {
    if ( ! is_checkout() ) return;
    ?&gt;
    &lt;script type="text/javascript"&gt;
        jQuery(function($){
            $('select#billing_country, select#shipping_country').on( 'change', function (){
                var t = { updateTimer: !1,  dirtyInput: !1,
                    reset_update_checkout_timer: function() {
                        clearTimeout(t.updateTimer)
                    },
                    trigger_update_checkout: function() {
                        t.reset_update_checkout_timer(), t.dirtyInput = !1,
                        $(document.body).trigger("update_checkout")
                    }
                };
                $(document.body).trigger('update_checkout');
                console.log('Event: update_checkout');
            });
        });
    &lt;/script&gt;
    &lt;?php
}</pre>
<h2>ajax update on Woocommerce order total based on state change</h2>
<p>Add this code to your theme functions php file for apply ajax update on Woocommerce checkout order total based on state change.</p>
<pre class="lang:php decode:true " >//----Creative Tweets
add_action('wp_footer', 'billing_country_update_checkout', 50);
function billing_country_update_checkout() {
    if ( ! is_checkout() ) return;
    ?&gt;
    &lt;script type="text/javascript"&gt;
        jQuery(function($){
            $('select#billing_state, select#shipping_state').on( 'change', function (){
                var t = { updateTimer: !1,  dirtyInput: !1,
                    reset_update_checkout_timer: function() {
                        clearTimeout(t.updateTimer)
                    },
                    trigger_update_checkout: function() {
                        t.reset_update_checkout_timer(), t.dirtyInput = !1,
                        $(document.body).trigger("update_checkout")
                    }
                };
                $(document.body).trigger('update_checkout');
                console.log('Event: update_checkout');
            });
        });
    &lt;/script&gt;
    &lt;?php
}</pre>The post <a href="http://www.creativetweets.com/woocommerce-order-total-ajax-update-on-country-change/">Woocommerce order total ajax update on country change</a> first appeared on <a href="http://www.creativetweets.com">Creative Tweets</a>.]]></content:encoded>
					
					<wfw:commentRss>http://www.creativetweets.com/woocommerce-order-total-ajax-update-on-country-change/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Allow other user roles to access all in one seo settings</title>
		<link>http://www.creativetweets.com/allow-other-user-roles-to-access-all-in-one-seo-settings/</link>
					<comments>http://www.creativetweets.com/allow-other-user-roles-to-access-all-in-one-seo-settings/#respond</comments>
		
		<dc:creator><![CDATA[Renjith Rajan &#124; Web Designer Kerala &#124; The Creative Hero]]></dc:creator>
		<pubDate>Fri, 31 Aug 2018 13:11:55 +0000</pubDate>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[All in One SEO]]></category>
		<category><![CDATA[All in One SEO Pack]]></category>
		<category><![CDATA[All in One SEO pack user access]]></category>
		<category><![CDATA[All in One SEO Tips]]></category>
		<category><![CDATA[Allow other roles access to All in One SEO pack]]></category>
		<category><![CDATA[Allow other user roles to access all in one seo settings]]></category>
		<category><![CDATA[How To Allow Editors Access To All in One SEO pack]]></category>
		<category><![CDATA[user roles to access all in one seo settings]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[Wordpress Tips]]></category>
		<guid isPermaLink="false">http://www.creativetweets.com/?p=540</guid>

					<description><![CDATA[<p>Hi all, today i am sharing a wordpress snippet for Allow other user roles to access all in one seo settings, means normally all in&#46;&#46;&#46;</p>
The post <a href="http://www.creativetweets.com/allow-other-user-roles-to-access-all-in-one-seo-settings/">Allow other user roles to access all in one seo settings</a> first appeared on <a href="http://www.creativetweets.com">Creative Tweets</a>.]]></description>
										<content:encoded><![CDATA[<p>Hi all, today i am sharing a wordpress snippet for Allow other user roles to access all in one seo settings, means normally all in one seo settings access is only for the administrator but i need to assign the full control of all in one seo plugin to another user role ( here it is editor). Add the following code to your theme functions.php file, this code will allow other user roles to access all in one seo settings.</p>
<pre class="lang:php decode:true " >function can_use_SEO() {
    if (is_admin()) { 
        $role = get_role( 'editor' );
        if ( is_object( $role ) ) $role-&gt;add_cap( 'aiosp_manage_seo' );
    }
}
add_action( 'admin_init', 'can_use_SEO', 1 );</pre>The post <a href="http://www.creativetweets.com/allow-other-user-roles-to-access-all-in-one-seo-settings/">Allow other user roles to access all in one seo settings</a> first appeared on <a href="http://www.creativetweets.com">Creative Tweets</a>.]]></content:encoded>
					
					<wfw:commentRss>http://www.creativetweets.com/allow-other-user-roles-to-access-all-in-one-seo-settings/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to add favicon for all devices in WordPress</title>
		<link>http://www.creativetweets.com/how-to-add-favicon-for-all-devices-in-wordpress/</link>
					<comments>http://www.creativetweets.com/how-to-add-favicon-for-all-devices-in-wordpress/#respond</comments>
		
		<dc:creator><![CDATA[Renjith Rajan &#124; Web Designer Kerala &#124; The Creative Hero]]></dc:creator>
		<pubDate>Mon, 25 Jun 2018 13:15:01 +0000</pubDate>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[animated favicon wordpress]]></category>
		<category><![CDATA[favicon for all devices]]></category>
		<category><![CDATA[favicon for all devices in Wordpress]]></category>
		<category><![CDATA[favicon for mobile devices]]></category>
		<category><![CDATA[favicon generator]]></category>
		<category><![CDATA[favicon html]]></category>
		<category><![CDATA[favicon wordpress]]></category>
		<category><![CDATA[favicon wordpress plugin]]></category>
		<category><![CDATA[How to Add a Favicon to Your WordPress Blog]]></category>
		<category><![CDATA[How to Add a Favicon to Your WordPress Site]]></category>
		<category><![CDATA[How To Add A Favicon To Your WordPress Website]]></category>
		<category><![CDATA[How to Add a WordPress Favicon]]></category>
		<category><![CDATA[How to add favicon for all devices]]></category>
		<category><![CDATA[How to add favicon for all devices in Wordpress]]></category>
		<category><![CDATA[How to add Favicons to WordPress]]></category>
		<category><![CDATA[site icon wordpress]]></category>
		<category><![CDATA[wordpress add favicon functions php]]></category>
		<category><![CDATA[wordpress favicon]]></category>
		<category><![CDATA[wordpress favicon not showing]]></category>
		<category><![CDATA[wordpress favicon size]]></category>
		<guid isPermaLink="false">http://www.creativetweets.com/?p=536</guid>

					<description><![CDATA[<p>Favicon is very important in a website, in this post i am sharing the code for add favicon for all devices in WordPress. Don&#8217;t use&#46;&#46;&#46;</p>
The post <a href="http://www.creativetweets.com/how-to-add-favicon-for-all-devices-in-wordpress/">How to add favicon for all devices in WordPress</a> first appeared on <a href="http://www.creativetweets.com">Creative Tweets</a>.]]></description>
										<content:encoded><![CDATA[<p>Favicon is very important in a website, in this post i am sharing the code for add favicon for all devices in WordPress. Don&#8217;t use any plugins for the favicon, add the simple code to your WordPress theme header.php file and upload each image on image folder. here we need 5 images with dimensions 32&#215;32, 57&#215;57, 72&#215;72, 114&#215;114, 149&#215;149.</p>
<pre class="lang:php decode:true " >&lt;link rel="shortcut icon" href="&lt;?php bloginfo("template_url"); ?&gt;/images/32.png"&gt;
&lt;link rel="apple-touch-icon" href="&lt;?php bloginfo("template_url"); ?&gt;/images/57.png"&gt;
&lt;link rel="apple-touch-icon" sizes="72x72" href="&lt;?php bloginfo("template_url"); ?&gt;/images/72.png"&gt;
&lt;link rel="apple-touch-icon" sizes="114x114" href="&lt;?php bloginfo("template_url"); ?&gt;/images/114.png"&gt;
&lt;link rel="apple-touch-icon" sizes="149x149" href="&lt;?php bloginfo("template_url"); ?&gt;/images/149.png"&gt;</pre>The post <a href="http://www.creativetweets.com/how-to-add-favicon-for-all-devices-in-wordpress/">How to add favicon for all devices in WordPress</a> first appeared on <a href="http://www.creativetweets.com">Creative Tweets</a>.]]></content:encoded>
					
					<wfw:commentRss>http://www.creativetweets.com/how-to-add-favicon-for-all-devices-in-wordpress/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to solve Error (tinyMCE is not defined) on WordPress admin panel</title>
		<link>http://www.creativetweets.com/how-to-solve-error-tinymce-is-not-defined-on-wordpress-admin-panel/</link>
					<comments>http://www.creativetweets.com/how-to-solve-error-tinymce-is-not-defined-on-wordpress-admin-panel/#respond</comments>
		
		<dc:creator><![CDATA[Vipin Vasudev]]></dc:creator>
		<pubDate>Thu, 26 Apr 2018 12:25:00 +0000</pubDate>
				<category><![CDATA[jquery]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[ReferenceError: tinymce is not defined]]></category>
		<category><![CDATA[tinymce is not defined angular 2]]></category>
		<category><![CDATA[tinymce is not defined in mvc]]></category>
		<category><![CDATA[tinymce is not defined jquery]]></category>
		<category><![CDATA[uncaught referenceerror: tinymce is not defined]]></category>
		<category><![CDATA[Visual Editor is not working in wordpress]]></category>
		<category><![CDATA[wordpress 4.8 visual editor not working]]></category>
		<category><![CDATA[wordpress 4.9 visual editor not working]]></category>
		<category><![CDATA[Wordpress admin panel Visual editor not working]]></category>
		<category><![CDATA[wordpress editor]]></category>
		<category><![CDATA[wordpress editor Text not showing]]></category>
		<category><![CDATA[wordpress text editor not working]]></category>
		<category><![CDATA[wordpress tinymce error]]></category>
		<category><![CDATA[wordpress tinymce not working]]></category>
		<category><![CDATA[wordpress visual editor blank]]></category>
		<category><![CDATA[wordpress visual editor missing]]></category>
		<category><![CDATA[wordpress visual editor not showing]]></category>
		<category><![CDATA[wordpress visual editor not working properly]]></category>
		<category><![CDATA[wordpress visual editor showing html]]></category>
		<category><![CDATA[wp-tinymce.php 403]]></category>
		<guid isPermaLink="false">http://www.creativetweets.com/?p=525</guid>

					<description><![CDATA[<p>Sometimes after upgrading your WordPress or plugin, Your Site content editor, the text is not showing and the visual editor is not working. If you are&#46;&#46;&#46;</p>
The post <a href="http://www.creativetweets.com/how-to-solve-error-tinymce-is-not-defined-on-wordpress-admin-panel/">How to solve Error (tinyMCE is not defined) on WordPress admin panel</a> first appeared on <a href="http://www.creativetweets.com">Creative Tweets</a>.]]></description>
										<content:encoded><![CDATA[<p>Sometimes after upgrading your WordPress or plugin, Your Site content editor, the text is not showing and the visual editor is not working.</p>
<p>If you are facing this issue here is a simple solution for you.</p>
<ol>
<li>Press F12 in your keyboard ( Inspect Element )</li>
<li> Select Console option</li>
<li>If you are seen the below mentioned error<br />
<span style="color: #ff0000;">ReferenceError: tinymce is not defined</span></li>
<li>If above red mentioned error is there,  you can add the below code on in the <strong>wp-config.php</strong>
<pre class="lang:default decode:true ">define('CONCATENATE_SCRIPTS', false);</pre>
<p>&nbsp;</li>
</ol>
<p>This Code worked for me</p>
<hr style="width: 100%; float: left;" />
<p><a href="https://www.paypal.me/vipizone" target="_blank" rel="noopener"><img decoding="async" class="alignleft size-full wp-image-449" src="http://www.creativetweets.com/wp-content/uploads/2017/12/PayPal-Donate-Button-PNG-HD.png" alt="" width="300" srcset="http://www.creativetweets.com/wp-content/uploads/2017/12/PayPal-Donate-Button-PNG-HD.png 380w, http://www.creativetweets.com/wp-content/uploads/2017/12/PayPal-Donate-Button-PNG-HD-300x103.png 300w" sizes="(max-width: 380px) 100vw, 380px" /></a></p>The post <a href="http://www.creativetweets.com/how-to-solve-error-tinymce-is-not-defined-on-wordpress-admin-panel/">How to solve Error (tinyMCE is not defined) on WordPress admin panel</a> first appeared on <a href="http://www.creativetweets.com">Creative Tweets</a>.]]></content:encoded>
					
					<wfw:commentRss>http://www.creativetweets.com/how-to-solve-error-tinymce-is-not-defined-on-wordpress-admin-panel/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Multiple Background Image with Gradient Color For your Website.</title>
		<link>http://www.creativetweets.com/multiple-background-image-with-gradient-color-for-your-website/</link>
					<comments>http://www.creativetweets.com/multiple-background-image-with-gradient-color-for-your-website/#respond</comments>
		
		<dc:creator><![CDATA[Vipin Vasudev]]></dc:creator>
		<pubDate>Mon, 23 Apr 2018 06:52:47 +0000</pubDate>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Css3]]></category>
		<category><![CDATA[Html]]></category>
		<category><![CDATA[Html5]]></category>
		<category><![CDATA[css multiple background colors]]></category>
		<category><![CDATA[CSS Multiple Backgrounds]]></category>
		<category><![CDATA[css multiple gradients]]></category>
		<category><![CDATA[css two color background horizontal]]></category>
		<category><![CDATA[How to add two background image in css]]></category>
		<category><![CDATA[Multiple Backgrounds and CSS Gradients]]></category>
		<category><![CDATA[Multiple png Background with Gradient Color]]></category>
		<category><![CDATA[Simple 2 background images]]></category>
		<category><![CDATA[Two Background Image]]></category>
		<category><![CDATA[Website background image with css]]></category>
		<guid isPermaLink="false">http://www.creativetweets.com/?p=518</guid>

					<description><![CDATA[<p>Use the below css Code to add multiple background image with gradient color to your website. You can change the color and image as you&#46;&#46;&#46;</p>
The post <a href="http://www.creativetweets.com/multiple-background-image-with-gradient-color-for-your-website/">Multiple Background Image with Gradient Color For your Website.</a> first appeared on <a href="http://www.creativetweets.com">Creative Tweets</a>.]]></description>
										<content:encoded><![CDATA[<p>Use the below css Code to add multiple background image with gradient color to your website. You can change the color and image as you wish.</p>
<pre class="lang:css decode:true">&lt;style&gt;
body{background: url(http://www.creativetweets.com/wp-content/uploads/2018/04/background-neural-net.png) fixed,url(http://www.creativetweets.com/wp-content/uploads/2018/04/background-neural-bg-blur.png) fixed,linear-gradient(to right,#1067c4 10%,#1ebad2 100%);}
&lt;/style&gt;</pre>The post <a href="http://www.creativetweets.com/multiple-background-image-with-gradient-color-for-your-website/">Multiple Background Image with Gradient Color For your Website.</a> first appeared on <a href="http://www.creativetweets.com">Creative Tweets</a>.]]></content:encoded>
					
					<wfw:commentRss>http://www.creativetweets.com/multiple-background-image-with-gradient-color-for-your-website/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>