<?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>Wordpress - identity design</title>
	<atom:link href="https://blog.identitydesign.us/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.identitydesign.us/category/wordpress/</link>
	<description>Web Tips &#38; Free Templates</description>
	<lastBuildDate>Mon, 14 Jul 2025 00:44:57 +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>

<image>
	<url>https://blog.identitydesign.us/wp-content/uploads/2020/08/Screen-Shot-2020-08-08-at-1.08.24-AM-120x120.jpg</url>
	<title>Wordpress - identity design</title>
	<link>https://blog.identitydesign.us/category/wordpress/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Stop Losing Your Code — Use an Astra Child Theme!</title>
		<link>https://blog.identitydesign.us/install-astra-child-theme-wordpress/</link>
					<comments>https://blog.identitydesign.us/install-astra-child-theme-wordpress/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Mon, 14 Jul 2025 00:44:57 +0000</pubDate>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">https://blog.identitydesign.us/?p=1945</guid>

					<description><![CDATA[<p>If you&#8217;ve ever added custom functions to your functions.php file—only to find them gone after a few weeks—it’s likely because your parent theme (like Astra) was updated. WordPress themes often reset modified files during updates, which can cause your hard work to disappear. The solution? Use a Child Theme. Why Your Code Disappears When you [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/install-astra-child-theme-wordpress/">Stop Losing Your Code — Use an Astra Child Theme!</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/install-astra-child-theme-wordpress/">Stop Losing Your Code — Use an Astra Child Theme!</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/fix-and-remove-wp-vcd-malware-virus-in-wordpress/" rel="bookmark" title="Malware/Virus: Fix and Remove &#8220;WP-VCD&#8221; from my WordPress">Malware/Virus: Fix and Remove &#8220;WP-VCD&#8221; from my WordPress</a></li>
<li><a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/" rel="bookmark" title="How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a></li>
<li><a href="https://blog.identitydesign.us/how-to-duplicate-migrate-wordpress-website/" rel="bookmark" title="How to Duplicate/Migrate WordPress Website &#8211; Duplicator">How to Duplicate/Migrate WordPress Website &#8211; Duplicator</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>If you&#8217;ve ever added custom functions to your <strong>functions.php</strong> file—only to find them gone after a few weeks—it’s likely because your parent theme (like Astra) was updated. WordPress themes often reset modified files during updates, which can cause your hard work to disappear. The solution? Use a Child Theme.</p>
<h2>Why Your Code Disappears</h2>
<p>When you add code directly to the parent theme’s <code>functions.php</code>, that file gets overwritten whenever the theme is updated—whether automatically or manually. If your carefully built features suddenly vanish, it&#8217;s time to switch to a Child Theme setup.</p>
<h2>What is a Child Theme?</h2>
<p>A Child Theme is a safe way to extend or customize a WordPress theme without touching the original (parent) theme files. It inherits everything from the parent theme, but allows you to add or override specific functionality—like custom functions, styles, or templates.</p>
<h2>How to Install an Astra Child Theme in WordPress</h2>
<p>You have two easy options:</p>
<ol>
<li>
    <strong>Generate your own:</strong> Visit the official <a href="https://wpastra.com/child-theme-generator/" target="_blank">Astra Child Theme Generator</a> and download a ready-to-use child theme ZIP file.
  </li>
<li>
    <strong>Download ours directly:</strong> Use our pre-made version here:<br />
    <a href="https://blog.identitydesign.us/wp-content/uploads/2025/07/astra-child.zip" target="_blank">astra-child.zip</a>
  </li>
</ol>
<h2>How to Install the Child Theme (Step-by-Step)</h2>
<ol>
<li>Log in to your WordPress admin dashboard.</li>
<li>Go to <strong>Appearance → Themes</strong></li>
<li>Click the <strong>“Add New”</strong> button, then <strong>“Upload Theme”</strong></li>
<li>Upload the <code>astra-child.zip</code> file</li>
<li>Activate the theme: You&#8217;ll now see “Astra Child” as an option</li>
</ol>
<h2>Where to Add Your Custom Code</h2>
<p>Now that you’re using a child theme, open the <code>functions.php</code> file inside the child theme folder. This is where you can safely paste in your code snippets—such as custom shortcodes, script enqueueing, or other PHP-based logic—without fear of losing them after updates.</p>
<h2>Bonus Tip: Astra Pro Compatibility</h2>
<p>If you&#8217;re using Astra Pro, don’t worry—your Pro features are handled by the <strong>Astra Pro plugin</strong> and will continue to work regardless of whether you&#8217;re using the parent or child theme. Just make sure the plugin remains activated.</p>
<h2>Final Thoughts</h2>
<p>If you’ve ever experienced your <code>functions.php</code> customizations disappearing, it’s likely due to a theme update. The permanent fix is simple: switch to a Child Theme. It takes just a few minutes and protects your customizations for the long haul.</p>
<p><strong>Need help? Reach out via <a href="https://blog.identitydesign.us/contact" target="_blank">our contact page</a> and we’d be happy to assist.</strong></p><p>The post <a href="https://blog.identitydesign.us/install-astra-child-theme-wordpress/">Stop Losing Your Code — Use an Astra Child Theme!</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/install-astra-child-theme-wordpress/">Stop Losing Your Code — Use an Astra Child Theme!</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/fix-and-remove-wp-vcd-malware-virus-in-wordpress/" rel="bookmark" title="Malware/Virus: Fix and Remove &#8220;WP-VCD&#8221; from my WordPress">Malware/Virus: Fix and Remove &#8220;WP-VCD&#8221; from my WordPress</a></li>
<li><a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/" rel="bookmark" title="How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a></li>
<li><a href="https://blog.identitydesign.us/how-to-duplicate-migrate-wordpress-website/" rel="bookmark" title="How to Duplicate/Migrate WordPress Website &#8211; Duplicator">How to Duplicate/Migrate WordPress Website &#8211; Duplicator</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/install-astra-child-theme-wordpress/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Fix Missing Google Fonts After Changing Your WordPress Elementor Website Domain</title>
		<link>https://blog.identitydesign.us/fix-missing-google-fonts-elementor-domain-change/</link>
					<comments>https://blog.identitydesign.us/fix-missing-google-fonts-elementor-domain-change/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Tue, 06 May 2025 05:54:58 +0000</pubDate>
				<category><![CDATA[backend]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">https://blog.identitydesign.us/?p=1925</guid>

					<description><![CDATA[<p>How to Fix Missing Google Fonts After Changing Your Elementor Website Domain If you&#8217;ve built your website using Elementor on a temporary domain and later connected it to your official domain, you might encounter an issue where Google Fonts are not loading or appearing broken. This is a common problem that usually stems from outdated [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/fix-missing-google-fonts-elementor-domain-change/">How to Fix Missing Google Fonts After Changing Your WordPress Elementor Website Domain</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/fix-missing-google-fonts-elementor-domain-change/">How to Fix Missing Google Fonts After Changing Your WordPress Elementor Website Domain</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/loading-webfonts-https-ssl/" rel="bookmark" title="Resolved! Loading Your Google Fonts Over https (SSL) Sites">Resolved! Loading Your Google Fonts Over https (SSL) Sites</a></li>
<li><a href="https://blog.identitydesign.us/how-to-duplicate-migrate-wordpress-website/" rel="bookmark" title="How to Duplicate/Migrate WordPress Website &#8211; Duplicator">How to Duplicate/Migrate WordPress Website &#8211; Duplicator</a></li>
<li><a href="https://blog.identitydesign.us/get-a-free-ssl-certificate-secure-socket-layer-change-http-to-https-for-your-website-domain/" rel="bookmark" title="Get a free SSL Certificate (Secure Socket Layer) &#8211; Change HTTP to HTTPS for your website domain">Get a free SSL Certificate (Secure Socket Layer) &#8211; Change HTTP to HTTPS for your website domain</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<h1>How to Fix Missing Google Fonts After Changing Your Elementor Website Domain</h1>
<p>If you&#8217;ve built your website using Elementor on a temporary domain and later connected it to your official domain, you might encounter an issue where <strong>Google Fonts are not loading or appearing broken</strong>. This is a common problem that usually stems from outdated internal URLs or cached files. Here’s a step-by-step guide to fix it.</p>
<h2>Step 1: Update Elementor URLs</h2>
<p>When changing domains, Elementor may still be referencing the old domain path for fonts and styles.</p>
<ul>
<li>Go to <strong>WordPress Dashboard &gt; Elementor &gt; Tools &gt; Replace URL</strong></li>
<li>Enter your <strong>old URL</strong> (e.g., https://sitename.hostinger.com)</li>
<li>Enter your <strong>new URL</strong> (e.g., https://yourdomain.com)</li>
<li>Click the <strong>Replace URL</strong> button</li>
</ul>
<h2>Step 2: Regenerate Elementor CSS Files</h2>
<p>Elementor stores styles in cached CSS files, which need to be regenerated after a domain change.</p>
<ul>
<li>Go to <strong>Elementor &gt; Tools &gt; General</strong></li>
<li>Click <strong>Regenerate CSS</strong></li>
<li>Click <strong>Sync Library</strong> if necessary</li>
</ul>
<h2>Step 3: Clear Browser and Plugin Cache</h2>
<p>Even after updating URLs, cached files from your browser or caching plugins might still cause issues.</p>
<ul>
<li>Clear your browser cache (Chrome, Safari, Firefox, etc.)</li>
<li>Clear cache from plugins like LiteSpeed Cache, WP Rocket, or Autoptimize</li>
</ul>
<h2>Step 4: Check Font Load Status in Developer Tools</h2>
<p>Use Chrome DevTools (F12) to inspect if Google Fonts are loading properly in the <code>&lt;head&gt;</code> section.</p>
<ul>
<li>Look for a tag like <code>&lt;link href="https://fonts.googleapis.com/..."&gt;</code></li>
<li>Check the Console tab for any CORS or Mixed Content errors</li>
</ul>
<h2>Step 5: Ensure SSL and Mixed Content Are Correct</h2>
<p>If your new domain lacks a proper SSL certificate or is loading resources over HTTP, Google Fonts may be blocked.</p>
<ul>
<li>Ensure your domain has a valid SSL certificate installed</li>
<li>Use the <strong>Really Simple SSL</strong> plugin to force HTTPS for all content</li>
</ul>
<h2>Final Thoughts</h2>
<p>By following these 5 steps, you can resolve most font loading issues after migrating your Elementor site to a new domain. The most critical action is using Elementor’s <strong>Replace URL</strong> tool to correct outdated paths in your styles and settings.</p><p>The post <a href="https://blog.identitydesign.us/fix-missing-google-fonts-elementor-domain-change/">How to Fix Missing Google Fonts After Changing Your WordPress Elementor Website Domain</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/fix-missing-google-fonts-elementor-domain-change/">How to Fix Missing Google Fonts After Changing Your WordPress Elementor Website Domain</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/loading-webfonts-https-ssl/" rel="bookmark" title="Resolved! Loading Your Google Fonts Over https (SSL) Sites">Resolved! Loading Your Google Fonts Over https (SSL) Sites</a></li>
<li><a href="https://blog.identitydesign.us/how-to-duplicate-migrate-wordpress-website/" rel="bookmark" title="How to Duplicate/Migrate WordPress Website &#8211; Duplicator">How to Duplicate/Migrate WordPress Website &#8211; Duplicator</a></li>
<li><a href="https://blog.identitydesign.us/get-a-free-ssl-certificate-secure-socket-layer-change-http-to-https-for-your-website-domain/" rel="bookmark" title="Get a free SSL Certificate (Secure Socket Layer) &#8211; Change HTTP to HTTPS for your website domain">Get a free SSL Certificate (Secure Socket Layer) &#8211; Change HTTP to HTTPS for your website domain</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/fix-missing-google-fonts-elementor-domain-change/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Suppress Errors and Warnings in WordPress for Emergencies</title>
		<link>https://blog.identitydesign.us/how-to-suppress-errors-wordpress/</link>
					<comments>https://blog.identitydesign.us/how-to-suppress-errors-wordpress/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Wed, 06 Nov 2024 22:58:07 +0000</pubDate>
				<category><![CDATA[backend]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">https://blog.identitydesign.us/?p=1912</guid>

					<description><![CDATA[<p>How to Suppress Errors and Warnings in WordPress for Emergencies There are times in website development when errors or warnings start displaying on your WordPress site, sometimes affecting its look and functionality. If you’re facing a critical issue on your live site and need a quick way to hide these errors temporarily, WordPress allows you [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/how-to-suppress-errors-wordpress/">How to Suppress Errors and Warnings in WordPress for Emergencies</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/how-to-suppress-errors-wordpress/">How to Suppress Errors and Warnings in WordPress for Emergencies</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/how-to-disable-your-website-wordpress/" rel="bookmark" title="How to Disable / Maintenance Mode Your Website on WordPress">How to Disable / Maintenance Mode Your Website on WordPress</a></li>
<li><a href="https://blog.identitydesign.us/contact-form-7-submit-not-working/" rel="bookmark" title="WordPress Contact Form 7 Submit Button Not Working (Nonstop Wheel Spinning)">WordPress Contact Form 7 Submit Button Not Working (Nonstop Wheel Spinning)</a></li>
<li><a href="https://blog.identitydesign.us/wordpress-multisite/" rel="bookmark" title="Make Your WordPress into a Multisite (Create a Network)">Make Your WordPress into a Multisite (Create a Network)</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<article>
<h2>How to Suppress Errors and Warnings in WordPress for Emergencies</h2>
<p>There are times in website development when errors or warnings start displaying on your WordPress site, sometimes affecting its look and functionality. If you’re facing a critical issue on your live site and need a quick way to hide these errors temporarily, WordPress allows you to suppress them in emergencies by adding a couple of lines of code.</p>
<h3>Suppressing Errors and Warnings in WordPress</h3>
<p>WordPress has a built-in debugging mode that developers use to catch issues. However, on a live website, you typically want this debugging turned off to prevent visitors from seeing backend issues. Here’s how to do it:</p>
<h4>1. Locate <code>wp-config.php</code></h4>
<p>First, connect to your website using an FTP client or access your hosting control panel, then find and open the <code>wp-config.php</code> file, which is in the root directory of your WordPress installation.</p>
<h4>2. Set WP_DEBUG to False</h4>
<p>Make sure the debugging mode is off by setting <code>WP_DEBUG</code> to <code>false</code>. Look for the following line in your <code>wp-config.php</code> file:</p>
<pre>define( 'WP_DEBUG', false );</pre>
<h4>3. Add the Suppression Code</h4>
<p>Right after the <code>WP_DEBUG</code> line, add the following code to suppress any errors or warnings:</p>
<pre>define( 'WP_DEBUG', false );
/*Suppress any errors or warnings*/
error_reporting(0);
@ini_set('display_errors', 0);</pre>
<p>Here’s what each line does:</p>
<ul>
<li><strong><code>error_reporting(0);</code></strong> – This tells the server not to report any errors, effectively silencing warnings, notices, and error messages.</li>
<li><strong><code>@ini_set('display_errors', 0);</code></strong> – This setting prevents errors from being displayed to users by setting <code>display_errors</code> to <code>0</code>.</li>
</ul>
<h3>Why Use This Code?</h3>
<p>When you’re in an emergency situation—such as if your site is displaying unsightly errors or breaking the layout due to warnings—this code can provide a quick solution. Keep in mind that it’s best to suppress errors only as a temporary measure. Long-term, you should address the underlying issues causing the warnings or errors to keep your website stable and secure.</p>
<h3>Important Note</h3>
<p>While suppressing errors can help in an emergency, it’s crucial to track down the source of any issues afterward. Hidden errors can make debugging more difficult and may affect website performance or functionality over time. For a better long-term approach, consider using a staging environment where you can fix issues without affecting your live site.</p>
<h3>Conclusion</h3>
<p>In emergencies, suppressing errors and warnings in WordPress is a helpful, quick solution to keep your site looking professional and functional. Just add the code above to your <code>wp-config.php</code> file after <code>WP_DEBUG</code> is set to <code>false</code>, and your visitors won’t see any backend issues on the front end. However, always remember to investigate and resolve any issues afterward for a stable, error-free site.</p>
</article><p>The post <a href="https://blog.identitydesign.us/how-to-suppress-errors-wordpress/">How to Suppress Errors and Warnings in WordPress for Emergencies</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/how-to-suppress-errors-wordpress/">How to Suppress Errors and Warnings in WordPress for Emergencies</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/how-to-disable-your-website-wordpress/" rel="bookmark" title="How to Disable / Maintenance Mode Your Website on WordPress">How to Disable / Maintenance Mode Your Website on WordPress</a></li>
<li><a href="https://blog.identitydesign.us/contact-form-7-submit-not-working/" rel="bookmark" title="WordPress Contact Form 7 Submit Button Not Working (Nonstop Wheel Spinning)">WordPress Contact Form 7 Submit Button Not Working (Nonstop Wheel Spinning)</a></li>
<li><a href="https://blog.identitydesign.us/wordpress-multisite/" rel="bookmark" title="Make Your WordPress into a Multisite (Create a Network)">Make Your WordPress into a Multisite (Create a Network)</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/how-to-suppress-errors-wordpress/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Disable / Maintenance Mode Your Website on WordPress</title>
		<link>https://blog.identitydesign.us/how-to-disable-your-website-wordpress/</link>
					<comments>https://blog.identitydesign.us/how-to-disable-your-website-wordpress/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Sat, 19 Oct 2024 06:14:14 +0000</pubDate>
				<category><![CDATA[backend]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">https://blog.identitydesign.us/?p=1895</guid>

					<description><![CDATA[<p>When working on your WordPress website, there may be times when you need to disable it temporarily for maintenance, updates, or major changes. Thankfully, WordPress offers easy ways to put your website into maintenance mode, ensuring visitors don’t see a broken or incomplete version of your site. Disabling a Website in WordPress In WordPress, there [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/how-to-disable-your-website-wordpress/">How to Disable / Maintenance Mode Your Website on WordPress</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/how-to-disable-your-website-wordpress/">How to Disable / Maintenance Mode Your Website on WordPress</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/how-to-add-sitemap-wordpress-website/" rel="bookmark" title="How to Add a Sitemap of a WordPress Website">How to Add a Sitemap of a WordPress Website</a></li>
<li><a href="https://blog.identitydesign.us/how-to-duplicate-migrate-wordpress-website/" rel="bookmark" title="How to Duplicate/Migrate WordPress Website &#8211; Duplicator">How to Duplicate/Migrate WordPress Website &#8211; Duplicator</a></li>
<li><a href="https://blog.identitydesign.us/disable-website-whm/" rel="bookmark" title="Temporarily Disable / Make a Website Offline in WHM">Temporarily Disable / Make a Website Offline in WHM</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>When working on your WordPress website, there may be times when you need to disable it temporarily for maintenance, updates, or major changes. Thankfully, WordPress offers easy ways to put your website into maintenance mode, ensuring visitors don’t see a broken or incomplete version of your site.</p>
<h2>Disabling a Website in WordPress</h2>
<p>In WordPress, there are a couple of ways to enable maintenance mode on your website. Let’s explore two common methods:</p>
<h3>1. Using a Maintenance Mode Plugin</h3>
<p>Plugins like &#8220;Maintenance&#8221; or &#8220;WP Maintenance Mode&#8221; are specifically designed for this purpose. With a few simple clicks, you can activate maintenance mode, display a custom message to your visitors, and work on your site privately.</p>
<p>Steps to follow:</p>
<ul>
<li>Install and activate a maintenance mode plugin from the WordPress plugin directory.</li>
<li>Customize the settings such as the message and design for the maintenance page.</li>
<li>Activate the plugin to enable maintenance mode.</li>
</ul>
<h3 style="margin-top:20px;">2. Enabling Maintenance Mode via wp-config.php</h3>
<p>If you prefer not to use a plugin, you can enable maintenance mode directly by editing the <code>wp-config.php</code> file. Here’s how:</p>
<ol>
<li>Connect to your WordPress site using FTP or through your hosting control panel.</li>
<li>Open the <code>wp-config.php</code> file, located in the root directory.</li>
<li>Add the following line of code just before the “That’s all, stop editing!” comment:</li>
<pre>define('WP_MAINTENANCE_MODE', true);</pre>
<li>Save the file and upload it back to your server.</li>
</ol>
<p>This will activate a default maintenance mode page for your visitors while you work on your website.</p>
<h2>Conclusion</h2>
<p>Disabling your WordPress website temporarily for maintenance is a smart way to ensure that visitors don’t encounter incomplete or malfunctioning pages. Whether you use a plugin or a quick code addition, activating maintenance mode in WordPress is a simple task. Keep your site professional even when it&#8217;s under construction by using these techniques.</p><p>The post <a href="https://blog.identitydesign.us/how-to-disable-your-website-wordpress/">How to Disable / Maintenance Mode Your Website on WordPress</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/how-to-disable-your-website-wordpress/">How to Disable / Maintenance Mode Your Website on WordPress</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/how-to-add-sitemap-wordpress-website/" rel="bookmark" title="How to Add a Sitemap of a WordPress Website">How to Add a Sitemap of a WordPress Website</a></li>
<li><a href="https://blog.identitydesign.us/how-to-duplicate-migrate-wordpress-website/" rel="bookmark" title="How to Duplicate/Migrate WordPress Website &#8211; Duplicator">How to Duplicate/Migrate WordPress Website &#8211; Duplicator</a></li>
<li><a href="https://blog.identitydesign.us/disable-website-whm/" rel="bookmark" title="Temporarily Disable / Make a Website Offline in WHM">Temporarily Disable / Make a Website Offline in WHM</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/how-to-disable-your-website-wordpress/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Add Deny Access to the .htaccess File</title>
		<link>https://blog.identitydesign.us/deny-access-to-htaccess-file/</link>
					<comments>https://blog.identitydesign.us/deny-access-to-htaccess-file/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Mon, 08 May 2023 23:03:49 +0000</pubDate>
				<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1840</guid>

					<description><![CDATA[<p>The .htaccess file is an important configuration file for websites that use the Apache web server. It allows you to control various aspects of your website, such as redirections, password protection, and caching. However, because the .htaccess file is so powerful, it is also a target for hackers and other malicious actors who may try [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/deny-access-to-htaccess-file/">How to Add Deny Access to the .htaccess File</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/deny-access-to-htaccess-file/">How to Add Deny Access to the .htaccess File</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/redirect-http-website-to-secure-https-website-using-simple-htaccess/" rel="bookmark" title="Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting">Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting</a></li>
<li><a href="https://blog.identitydesign.us/how-to-duplicate-migrate-wordpress-website/" rel="bookmark" title="How to Duplicate/Migrate WordPress Website &#8211; Duplicator">How to Duplicate/Migrate WordPress Website &#8211; Duplicator</a></li>
<li><a href="https://blog.identitydesign.us/why-filezilla-upload-files-repeatly-and-saying-file-transfer-failed-after-transferring/" rel="bookmark" title="Why FileZilla Upload Files Repeatedly Saying &#8220;File Transfer failed after transferring&#8221;?">Why FileZilla Upload Files Repeatedly Saying &#8220;File Transfer failed after transferring&#8221;?</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>The .htaccess file is an important configuration file for websites that use the Apache web server. It allows you to control various aspects of your website, such as redirections, password protection, and caching. However, because the .htaccess file is so powerful, it is also a target for hackers and other malicious actors who may try to exploit it to gain access to your website or server.</p>
<p>One way to protect your .htaccess file is to add a &#8220;deny from all&#8221; rule to it. This will prevent anyone from accessing the file directly, including hackers who may be trying to modify it.</p>
<p>Here&#8217;s how to add a deny access rule to your .htaccess file:</p>
<h2>1. Access your website&#8217;s .htaccess file </h2>
<p>First, you&#8217;ll need to access your website&#8217;s .htaccess file. You can do this by connecting to your website&#8217;s server via FTP or SSH, and navigating to the directory where your website&#8217;s files are stored. The .htaccess file should be located in the root directory of your website.</p>
<h2>2. Add the deny access rule</h2>
<p>Next, open the .htaccess file in a text editor and add the following line at the top of the file:</p>
<pre>
#deny access to .htaccess
&lt;Files .htaccess&gt;
Order allow,deny
Deny from all
&lt;/Files&gt;
</pre>
<p>This rule specifies that access to the .htaccess file should be denied for all users.</p>
<h2>3. Save the changes</h2>
<p>Save the changes to your .htaccess file and upload it back to your website&#8217;s server.</p>
<p>By adding a deny access rule to your .htaccess file, you can help protect your website from malicious attacks and unauthorized access. However, it&#8217;s important to remember that this is just one of many security measures that you should take to protect your website. Be sure to keep your software and plugins up-to-date, use strong passwords, and implement other security best practices to keep your website secure.</p><p>The post <a href="https://blog.identitydesign.us/deny-access-to-htaccess-file/">How to Add Deny Access to the .htaccess File</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/deny-access-to-htaccess-file/">How to Add Deny Access to the .htaccess File</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/redirect-http-website-to-secure-https-website-using-simple-htaccess/" rel="bookmark" title="Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting">Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting</a></li>
<li><a href="https://blog.identitydesign.us/how-to-duplicate-migrate-wordpress-website/" rel="bookmark" title="How to Duplicate/Migrate WordPress Website &#8211; Duplicator">How to Duplicate/Migrate WordPress Website &#8211; Duplicator</a></li>
<li><a href="https://blog.identitydesign.us/why-filezilla-upload-files-repeatly-and-saying-file-transfer-failed-after-transferring/" rel="bookmark" title="Why FileZilla Upload Files Repeatedly Saying &#8220;File Transfer failed after transferring&#8221;?">Why FileZilla Upload Files Repeatedly Saying &#8220;File Transfer failed after transferring&#8221;?</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/deny-access-to-htaccess-file/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Renewing an Expired SSL Certificate with AutoSSL in cPanel: A Quick Guide</title>
		<link>https://blog.identitydesign.us/renewing-ssl-certificate-for-free/</link>
					<comments>https://blog.identitydesign.us/renewing-ssl-certificate-for-free/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Sat, 18 Feb 2023 00:51:44 +0000</pubDate>
				<category><![CDATA[backend]]></category>
		<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1831</guid>

					<description><![CDATA[<p>An SSL (Secure Sockets Layer) certificate is a digital certificate that encrypts data and ensures secure communication between a web server and a client browser. It&#8217;s essential to renew your SSL certificate before it expires to maintain a secure connection on your website. If your website is hosted on a cPanel server, you can renew [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/renewing-ssl-certificate-for-free/">Renewing an Expired SSL Certificate with AutoSSL in cPanel: A Quick Guide</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/renewing-ssl-certificate-for-free/">Renewing an Expired SSL Certificate with AutoSSL in cPanel: A Quick Guide</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/get-a-free-ssl-certificate-secure-socket-layer-change-http-to-https-for-your-website-domain/" rel="bookmark" title="Get a free SSL Certificate (Secure Socket Layer) &#8211; Change HTTP to HTTPS for your website domain">Get a free SSL Certificate (Secure Socket Layer) &#8211; Change HTTP to HTTPS for your website domain</a></li>
<li><a href="https://blog.identitydesign.us/how-to-duplicate-migrate-wordpress-website/" rel="bookmark" title="How to Duplicate/Migrate WordPress Website &#8211; Duplicator">How to Duplicate/Migrate WordPress Website &#8211; Duplicator</a></li>
<li><a href="https://blog.identitydesign.us/howto-mailchimp-for-wordpress/" rel="bookmark" title="Quick Start Guide to MailChimp for WordPress">Quick Start Guide to MailChimp for WordPress</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>An SSL (Secure Sockets Layer) certificate is a digital certificate that encrypts data and ensures secure communication between a web server and a client browser. It&#8217;s essential to renew your SSL certificate before it expires to maintain a secure connection on your website. If your website is hosted on a cPanel server, you can renew your SSL certificate using the AutoSSL feature in just a few simple steps. In this blog post, we will guide you through the process of renewing an expired SSL certificate with AutoSSL in cPanel.</p>
<h2>Step 1: Log in to your cPanel account</h2>
<p>The first step is to log in to your cPanel account. You can do this by accessing the cPanel login URL provided by your web hosting company and entering your cPanel username and password.</p>
<h2>Step 2: Go to SSL/TLS Status page</h2>
<p>Once you&#8217;re logged in, go to the SSL/TLS Status page. You can find it by using the search bar or by scrolling down to the Security section of the cPanel dashboard.</p>
<h2>Step 3: Renew the SSL certificate</h2>
<p>On the SSL/TLS Status page, you will see a list of all the SSL certificates installed on your server, including any that have expired. Check on all expired domain names and click the &#8220;Run AutoSSL&#8221; button. Wait for a few minutes until the &#8220;Success&#8221; sign appears. If it doesn&#8217;t work, you can try uninstalling the SSL certificate by clicking on SSL/TLS Status &#8211; &#8220;View Certificate&#8221; or SSL/TLS &#8211; &#8220;Manage SSL sites.&#8221; Then click &#8220;Uninstall.&#8221; Go back to the SSL/TLS Status page and reinstall the SSL certificate with &#8220;Run AutoSSL&#8221; again.</p>
<p><strong>Optional for WordPress users:</strong> Add &#8220;Really Simple SSL&#8221; plugin and activate HTTPS for your domain.</p>
<p>If you&#8217;re using WordPress, you can add the &#8220;Really Simple SSL&#8221; plugin and activate HTTPS for your domain. The plugin will automatically detect your SSL certificate and configure your website to use HTTPS. This will ensure that all pages on your website are secure and encrypted. To add the plugin, go to the WordPress plugin directory and search for &#8220;Really Simple SSL.&#8221; Install and activate the plugin, and then follow the prompts to activate HTTPS for your domain.</p>
<p>And that&#8217;s it! By following these simple steps, you can renew an expired SSL certificate and maintain a secure connection on your website.</p><p>The post <a href="https://blog.identitydesign.us/renewing-ssl-certificate-for-free/">Renewing an Expired SSL Certificate with AutoSSL in cPanel: A Quick Guide</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/renewing-ssl-certificate-for-free/">Renewing an Expired SSL Certificate with AutoSSL in cPanel: A Quick Guide</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/get-a-free-ssl-certificate-secure-socket-layer-change-http-to-https-for-your-website-domain/" rel="bookmark" title="Get a free SSL Certificate (Secure Socket Layer) &#8211; Change HTTP to HTTPS for your website domain">Get a free SSL Certificate (Secure Socket Layer) &#8211; Change HTTP to HTTPS for your website domain</a></li>
<li><a href="https://blog.identitydesign.us/how-to-duplicate-migrate-wordpress-website/" rel="bookmark" title="How to Duplicate/Migrate WordPress Website &#8211; Duplicator">How to Duplicate/Migrate WordPress Website &#8211; Duplicator</a></li>
<li><a href="https://blog.identitydesign.us/howto-mailchimp-for-wordpress/" rel="bookmark" title="Quick Start Guide to MailChimp for WordPress">Quick Start Guide to MailChimp for WordPress</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/renewing-ssl-certificate-for-free/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Add a Sitemap of a WordPress Website</title>
		<link>https://blog.identitydesign.us/how-to-add-sitemap-wordpress-website/</link>
					<comments>https://blog.identitydesign.us/how-to-add-sitemap-wordpress-website/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Mon, 19 Sep 2022 09:28:47 +0000</pubDate>
				<category><![CDATA[backend]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1765</guid>

					<description><![CDATA[<p>Adding a sitemap for search engines is vital when launching a website unless you want to keep it secret. There are many ways to add a website&#8217;s sitemap, but using Yoast SEO plugin could be the easiest way to do it. 1. DOWNLOAD YOAST SEO PLUGIN Go to Plugins -> Add New and search for [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/how-to-add-sitemap-wordpress-website/">How to Add a Sitemap of a WordPress Website</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/how-to-add-sitemap-wordpress-website/">How to Add a Sitemap of a WordPress Website</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/renewing-ssl-certificate-for-free/" rel="bookmark" title="Renewing an Expired SSL Certificate with AutoSSL in cPanel: A Quick Guide">Renewing an Expired SSL Certificate with AutoSSL in cPanel: A Quick Guide</a></li>
<li><a href="https://blog.identitydesign.us/how-to-duplicate-migrate-wordpress-website/" rel="bookmark" title="How to Duplicate/Migrate WordPress Website &#8211; Duplicator">How to Duplicate/Migrate WordPress Website &#8211; Duplicator</a></li>
<li><a href="https://blog.identitydesign.us/add-bootstrap-on-wordpress-website-using-plugin/" rel="bookmark" title="Add Bootstrap to Your WordPress Website with a Plugin">Add Bootstrap to Your WordPress Website with a Plugin</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Adding a sitemap for search engines is vital when launching a website unless you want to keep it secret. There are many ways to add a website&#8217;s sitemap, but using <code>Yoast SEO</code> plugin could be the easiest way to do it.</p>
<h2>1. DOWNLOAD YOAST SEO PLUGIN</h2>
<ol>
<li>Go to <code>Plugins</code> -> <code>Add New</code> and search for the <code>Yoast SEO</code> plugin.</li>
<li>Download and activate it.</li>
</ol>
<h2>2. ENABLE XML SITEMAPS AND GET THE SITEMAP URL</h2>
<ol>
<li>Go to <code>Yoast SEO</code> from the left menu -> <code>General</code> </li>
<li>Enable &#8220;On&#8221; mode on the XML sitemaps.<img fetchpriority="high" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2022/09/xml-sitemaps.png" alt="XML sitemaps" width="896" height="298" class="aligncenter size-full wp-image-1767" srcset="https://blog.identitydesign.us/wp-content/uploads/2022/09/xml-sitemaps.png 896w, https://blog.identitydesign.us/wp-content/uploads/2022/09/xml-sitemaps-300x100.png 300w, https://blog.identitydesign.us/wp-content/uploads/2022/09/xml-sitemaps-768x255.png 768w, https://blog.identitydesign.us/wp-content/uploads/2022/09/xml-sitemaps-624x208.png 624w" sizes="(max-width: 896px) 100vw, 896px" /></li>
<li>Click on <code>See the XML</code>.</li>
<li>Copy the sitemap url. <img decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2022/09/search-console2.png" alt="sitemap url" width="948" height="170" class="aligncenter size-full wp-image-1773" srcset="https://blog.identitydesign.us/wp-content/uploads/2022/09/search-console2.png 948w, https://blog.identitydesign.us/wp-content/uploads/2022/09/search-console2-300x54.png 300w, https://blog.identitydesign.us/wp-content/uploads/2022/09/search-console2-768x138.png 768w, https://blog.identitydesign.us/wp-content/uploads/2022/09/search-console2-624x112.png 624w" sizes="(max-width: 948px) 100vw, 948px" /></li>
</ol>
<h2>3. SUBMIT A SITEMAP ON GOOGLE SEARCH CONSOLE</h2>
<ol>
<li>Add a new property (if you haven&#8217;t already) for the website you wish to submit the sitemap to on <a href="https://search.google.com/search-console" target="_blank" rel="noopener">Google Search Console</a>.</li>
<li>Go to <code>Sitemaps</code> from the left menu. </li>
<li>Add a new sitemap by pasting the sitemap URL from step 2 and click on <code>Submit</code>.</li>
<li>*The Status might show <code>Couldn't fetch</code>, but it will update. <img decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2022/09/status.png" alt="Couldn't fetch" width="124" height="102" class="aligncenter size-full wp-image-1768" /></li>
</ol><p>The post <a href="https://blog.identitydesign.us/how-to-add-sitemap-wordpress-website/">How to Add a Sitemap of a WordPress Website</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/how-to-add-sitemap-wordpress-website/">How to Add a Sitemap of a WordPress Website</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/renewing-ssl-certificate-for-free/" rel="bookmark" title="Renewing an Expired SSL Certificate with AutoSSL in cPanel: A Quick Guide">Renewing an Expired SSL Certificate with AutoSSL in cPanel: A Quick Guide</a></li>
<li><a href="https://blog.identitydesign.us/how-to-duplicate-migrate-wordpress-website/" rel="bookmark" title="How to Duplicate/Migrate WordPress Website &#8211; Duplicator">How to Duplicate/Migrate WordPress Website &#8211; Duplicator</a></li>
<li><a href="https://blog.identitydesign.us/add-bootstrap-on-wordpress-website-using-plugin/" rel="bookmark" title="Add Bootstrap to Your WordPress Website with a Plugin">Add Bootstrap to Your WordPress Website with a Plugin</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/how-to-add-sitemap-wordpress-website/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>YARPP for WordPress: How to remove the &#8220;You May Also Like&#8221; header on the sidebar widget area</title>
		<link>https://blog.identitydesign.us/how-to-remove-the-you-may-also-like-on-yarpp-wordpress/</link>
					<comments>https://blog.identitydesign.us/how-to-remove-the-you-may-also-like-on-yarpp-wordpress/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Fri, 08 Jul 2022 22:20:07 +0000</pubDate>
				<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1758</guid>

					<description><![CDATA[<p>YARPP (Yet Another Related Posts Plugin) is one of the greatest plugins in WordPress that provides related posts automatically using an algorithm, but there are a few things that can’t be easily fixed through its settings. How to remove the &#8220;You May Also Like&#8221; header on the sidebar widget YARPP Plugin for WordPress? I’ve tried [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/how-to-remove-the-you-may-also-like-on-yarpp-wordpress/">YARPP for WordPress: How to remove the “You May Also Like” header on the sidebar widget area</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/how-to-remove-the-you-may-also-like-on-yarpp-wordpress/">YARPP for WordPress: How to remove the &#8220;You May Also Like&#8221; header on the sidebar widget area</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-related-posts-on-yarpp/" rel="bookmark" title="How to remove the &#8220;Related Posts&#8221; on YARPP Plugin for WordPress">How to remove the &#8220;Related Posts&#8221; on YARPP Plugin for WordPress</a></li>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
<li><a href="https://blog.identitydesign.us/remove-empty-p-tags-in-wordpress/" rel="bookmark" title="Use CSS to remove auto-generated empty &lt;p&gt; tags in WordPress">Use CSS to remove auto-generated empty &lt;p&gt; tags in WordPress</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>YARPP (Yet Another Related Posts Plugin) is one of the greatest plugins in WordPress that provides related posts automatically using an algorithm, but there are a few things that can’t be easily fixed through its settings.</p>
<h2>How to remove the &#8220;You May Also Like&#8221; header on the sidebar widget YARPP Plugin for WordPress?</h2>
<p>I’ve tried many options in the settings, but they didn&#8217;t seem to work. Try using the CSS code below to remove it easily.</p>
<h3>CSS</h3>
<p>Copy the code below and paste it into your CSS document. 	</p>
<pre>
.yarpp-related-widget h3 { display:none; }
</pre>
<p>Tada!</p><p>The post <a href="https://blog.identitydesign.us/how-to-remove-the-you-may-also-like-on-yarpp-wordpress/">YARPP for WordPress: How to remove the “You May Also Like” header on the sidebar widget area</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/how-to-remove-the-you-may-also-like-on-yarpp-wordpress/">YARPP for WordPress: How to remove the &#8220;You May Also Like&#8221; header on the sidebar widget area</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-related-posts-on-yarpp/" rel="bookmark" title="How to remove the &#8220;Related Posts&#8221; on YARPP Plugin for WordPress">How to remove the &#8220;Related Posts&#8221; on YARPP Plugin for WordPress</a></li>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
<li><a href="https://blog.identitydesign.us/remove-empty-p-tags-in-wordpress/" rel="bookmark" title="Use CSS to remove auto-generated empty &lt;p&gt; tags in WordPress">Use CSS to remove auto-generated empty &lt;p&gt; tags in WordPress</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/how-to-remove-the-you-may-also-like-on-yarpp-wordpress/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to remove the &#8220;Related Posts&#8221; on YARPP Plugin for WordPress</title>
		<link>https://blog.identitydesign.us/remove-related-posts-on-yarpp/</link>
					<comments>https://blog.identitydesign.us/remove-related-posts-on-yarpp/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Fri, 08 Jul 2022 22:12:20 +0000</pubDate>
				<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1755</guid>

					<description><![CDATA[<p>YARPP(Yet Another Related Posts Plugin) is a one of the greatest plugins in WordPress that provides related posts automatically with algorithm, but there are a few things can&#8217;t be easily fixable on its setting. How to remove the &#8220;Related Posts&#8221; on YARPP? I&#8217;ve tried many options on their settings to remove the Related Posts on [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/remove-related-posts-on-yarpp/">How to remove the “Related Posts” on YARPP Plugin for WordPress</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/remove-related-posts-on-yarpp/">How to remove the &#8220;Related Posts&#8221; on YARPP Plugin for WordPress</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
<li><a href="https://blog.identitydesign.us/remove-empty-p-tags-in-wordpress/" rel="bookmark" title="Use CSS to remove auto-generated empty &lt;p&gt; tags in WordPress">Use CSS to remove auto-generated empty &lt;p&gt; tags in WordPress</a></li>
<li><a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/" rel="bookmark" title="How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>YARPP(Yet Another Related Posts Plugin) is a one of the greatest plugins in WordPress that provides related posts automatically with algorithm, but there are a few things can&#8217;t be easily fixable on its setting.</p>
<h2>How to remove the &#8220;Related Posts&#8221; on YARPP?</h2>
<p>I&#8217;ve tried many options on their settings to remove the Related Posts on the bottom of a page, but it seems not working. Try below CSS line to remove it with ease.</p>
<h3>CSS</h3>
<p>Copy the code below and paste into your CSS document. 	</p>
<pre>
.yarpp-related-website { display:none; }
</pre>
<p>Tada!</p><p>The post <a href="https://blog.identitydesign.us/remove-related-posts-on-yarpp/">How to remove the “Related Posts” on YARPP Plugin for WordPress</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/remove-related-posts-on-yarpp/">How to remove the &#8220;Related Posts&#8221; on YARPP Plugin for WordPress</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
<li><a href="https://blog.identitydesign.us/remove-empty-p-tags-in-wordpress/" rel="bookmark" title="Use CSS to remove auto-generated empty &lt;p&gt; tags in WordPress">Use CSS to remove auto-generated empty &lt;p&gt; tags in WordPress</a></li>
<li><a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/" rel="bookmark" title="How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/remove-related-posts-on-yarpp/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Duplicate/Migrate WordPress Website &#8211; Duplicator</title>
		<link>https://blog.identitydesign.us/how-to-duplicate-migrate-wordpress-website/</link>
					<comments>https://blog.identitydesign.us/how-to-duplicate-migrate-wordpress-website/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Tue, 10 May 2022 00:37:55 +0000</pubDate>
				<category><![CDATA[backend]]></category>
		<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1745</guid>

					<description><![CDATA[<p>Work effective and save time if you are a web developer using WordPress. Duplicate your existing work and use as a template. Get Duplicator and install/active the plugin and follow the instruction below. We have 3 main steps to get all duplicate/migration process done. 1. BACKUP FILES &#38; DOWNLOAD Get Duplicator plugin Duplicator -&#62; Create [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/how-to-duplicate-migrate-wordpress-website/">How to Duplicate/Migrate WordPress Website – Duplicator</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/how-to-duplicate-migrate-wordpress-website/">How to Duplicate/Migrate WordPress Website &#8211; Duplicator</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/cpanel-change-increase-maximum-upload-file-size/" rel="bookmark" title="cPanel: Change / Increase Maximum Upload File Size">cPanel: Change / Increase Maximum Upload File Size</a></li>
<li><a href="https://blog.identitydesign.us/wordpress-multisite/" rel="bookmark" title="Make Your WordPress into a Multisite (Create a Network)">Make Your WordPress into a Multisite (Create a Network)</a></li>
<li><a href="https://blog.identitydesign.us/redirect-http-website-to-secure-https-website-using-simple-htaccess/" rel="bookmark" title="Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting">Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Work effective and save time if you are a web developer using WordPress. Duplicate your existing work and use as a template. Get <a href="https://wordpress.org/plugins/duplicator/" target="_blank" rel="noopener">Duplicator</a> and install/active the plugin and follow the instruction below. We have 3 main steps to get all duplicate/migration process done.  </p>
<h2>1. BACKUP FILES &amp; DOWNLOAD</h2>
<ol>
<li>Get <code>Duplicator</code> plugin</li>
<li>Duplicator -&gt; <code>Create new</code></li>
<li><code>Next</code> -&gt; <code>Build</code></li>
<li>Download <code>Installer.php</code> and <code>...Archive.zip</code> file</li>
</ol>
<h2>2. DATABASE CREATION ON NEW SERVER</h2>
<ol>
<li>Create Database from MySQL® Databases in cPanel.</li>
<li>Name your database. Add <code>_wp</code> at the end of the database name</li>
<li>Add a user, <code>_user</code> at the end of the database name</li>
<li>Add the user to the database you created. Finally add <code>All Privileges</code> to the user.</li>
</ol>
<h2>3. UPLOAD BACKED UP FILES TO NEW SERVER</h2>
<ol>
<li>Access cPanel on new hosting server. Go to <strong>cPanel</strong> -&gt; <strong>File Manager</strong>. Select <code>public_html</code> or very root folder of your WordPress files -&gt; upload your saved <code>Installer</code> and <code>Archive</code> files. (*You can also use FTP (Filezilla) to upload these files. )</li>
<li>Open a web browser -&gt; <em>http://YOUR-DOMAIN.com/installer.php</em></li>
<li>Select the checkbox, &#8220;I have read and accept all terms &amp; notices*&#8221;</li>
<li>Select <code>Remove all data</code> and input your <code>Database</code>, <code>User</code> and <code>Password</code> and hit <code>Test Database</code>. If looks good, hit <code>Next</code>.</li>
<li>Click <code>Next</code> for step 4, Login the site with <code>Site Login</code>.</li>
</ol><p>The post <a href="https://blog.identitydesign.us/how-to-duplicate-migrate-wordpress-website/">How to Duplicate/Migrate WordPress Website – Duplicator</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/how-to-duplicate-migrate-wordpress-website/">How to Duplicate/Migrate WordPress Website &#8211; Duplicator</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/cpanel-change-increase-maximum-upload-file-size/" rel="bookmark" title="cPanel: Change / Increase Maximum Upload File Size">cPanel: Change / Increase Maximum Upload File Size</a></li>
<li><a href="https://blog.identitydesign.us/wordpress-multisite/" rel="bookmark" title="Make Your WordPress into a Multisite (Create a Network)">Make Your WordPress into a Multisite (Create a Network)</a></li>
<li><a href="https://blog.identitydesign.us/redirect-http-website-to-secure-https-website-using-simple-htaccess/" rel="bookmark" title="Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting">Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/how-to-duplicate-migrate-wordpress-website/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>WordPress Contact Form 7 Submit Button Not Working (Nonstop Wheel Spinning)</title>
		<link>https://blog.identitydesign.us/contact-form-7-submit-not-working/</link>
					<comments>https://blog.identitydesign.us/contact-form-7-submit-not-working/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Mon, 21 Feb 2022 09:14:04 +0000</pubDate>
				<category><![CDATA[backend]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1732</guid>

					<description><![CDATA[<p>Despite the popularity of its name, &#8220;Contact form 7&#8221; with millions of active installations, numerous plugin users have called out the error when hitting the submit button on the form. The error seems to be occurred by change of environment such as migration of the website. Here&#8217;s the solution how this can be resolved. Go [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/contact-form-7-submit-not-working/">WordPress Contact Form 7 Submit Button Not Working (Nonstop Wheel Spinning)</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/contact-form-7-submit-not-working/">WordPress Contact Form 7 Submit Button Not Working (Nonstop Wheel Spinning)</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/how-to-make-bootstrap-nav-top-level-menu-clickable-with-dropdowns/" rel="bookmark" title="How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns">How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns</a></li>
<li><a href="https://blog.identitydesign.us/fix-php-upgrade-error-whm-cpanel/" rel="bookmark" title="(Resolved) Fix PHP / MultiPHP Version Upgrade Error in WHM/Cpanel">(Resolved) Fix PHP / MultiPHP Version Upgrade Error in WHM/Cpanel</a></li>
<li><a href="https://blog.identitydesign.us/wordpress-multisite/" rel="bookmark" title="Make Your WordPress into a Multisite (Create a Network)">Make Your WordPress into a Multisite (Create a Network)</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Despite the popularity of its name, &#8220;Contact form 7&#8221; with millions of active installations, numerous plugin users have called out the error when hitting the submit button on the form. The error seems to be occurred by change of environment such as migration of the website. Here&#8217;s the solution how this can be resolved.</p>
<ul>
<li>Go to the WP Admin (Backend) -> Plugins -> Plugin File Editor. </li>
<li>Select plugin to edit dropdown to select <code>Contact Form 7</code> and select the file, <code>wp-contact-form-7.php</code></li>
<li>On line 30 (the number can be different) after &#8216;WPCF7_LOAD_JS&#8217;, change <code>true</code> to <code>false</code></li>
</ul>
<h2>Change of code in &#8220;Contact form 7&#8221; plugin</h2>
<pre>if ( ! defined( 'WPCF7_LOAD_JS' ) ) {
	define( 'WPCF7_LOAD_JS', false );
}</pre><p>The post <a href="https://blog.identitydesign.us/contact-form-7-submit-not-working/">WordPress Contact Form 7 Submit Button Not Working (Nonstop Wheel Spinning)</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/contact-form-7-submit-not-working/">WordPress Contact Form 7 Submit Button Not Working (Nonstop Wheel Spinning)</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/how-to-make-bootstrap-nav-top-level-menu-clickable-with-dropdowns/" rel="bookmark" title="How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns">How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns</a></li>
<li><a href="https://blog.identitydesign.us/fix-php-upgrade-error-whm-cpanel/" rel="bookmark" title="(Resolved) Fix PHP / MultiPHP Version Upgrade Error in WHM/Cpanel">(Resolved) Fix PHP / MultiPHP Version Upgrade Error in WHM/Cpanel</a></li>
<li><a href="https://blog.identitydesign.us/wordpress-multisite/" rel="bookmark" title="Make Your WordPress into a Multisite (Create a Network)">Make Your WordPress into a Multisite (Create a Network)</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/contact-form-7-submit-not-working/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>WooCommerce Astra: How to Disable Cart Bubble on Hover of the Cart Menu</title>
		<link>https://blog.identitydesign.us/woocommerce-astra-disable-cart-bubble/</link>
					<comments>https://blog.identitydesign.us/woocommerce-astra-disable-cart-bubble/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Mon, 11 Oct 2021 07:12:59 +0000</pubDate>
				<category><![CDATA[backend]]></category>
		<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1588</guid>

					<description><![CDATA[<p>I&#8217;ve been searching how to remove/hide the cart bubble on hover of the cart icon on header in Astra / WooCommerce combination. This can&#8217;t be modified via Appearance -> Customize setting. Instead, I was able to hide the element with a simple CSS line as below: .ast-site-header-cart:hover .widget_shopping_cart, .woocommerce .ast-site-header-cart:hover .widget_shopping_cart{ display:none; } Feel free [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/woocommerce-astra-disable-cart-bubble/">WooCommerce Astra: How to Disable Cart Bubble on Hover of the Cart Menu</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/woocommerce-astra-disable-cart-bubble/">WooCommerce Astra: How to Disable Cart Bubble on Hover of the Cart Menu</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/star-symbol-broken-woocommerce-review/" rel="bookmark" title="Star Rating Symbol Icons Show Broken or Square Boxes on Woocommerce Review">Star Rating Symbol Icons Show Broken or Square Boxes on Woocommerce Review</a></li>
<li><a href="https://blog.identitydesign.us/woocommerce-storefront-theme-remove-storefront-woothemes-credits/" rel="bookmark" title="Remove &#8220;Storefront designed by WooThemes&#8221; on Woocommerce Storefront Theme">Remove &#8220;Storefront designed by WooThemes&#8221; on Woocommerce Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>I&#8217;ve been searching how to remove/hide the cart bubble on hover of the cart icon on header in Astra / WooCommerce combination. </p>
<p> <img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/10/cart-menu-hover-177x300.png" alt="" width="177" height="300" class="aligncenter size-medium wp-image-1589" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/10/cart-menu-hover-177x300.png 177w, https://blog.identitydesign.us/wp-content/uploads/2021/10/cart-menu-hover.png 306w" sizes="auto, (max-width: 177px) 100vw, 177px" /> </p>
<p>This can&#8217;t be modified via <code>Appearance</code> -> <code>Customize</code> setting. Instead, I was able to hide the element with a simple CSS line as below:</p>
<pre>
.ast-site-header-cart:hover .widget_shopping_cart, .woocommerce .ast-site-header-cart:hover .widget_shopping_cart{ display:none; }
</pre>
<p>Feel free to comment me if this doesn&#8217;t work for you.<br />
</p><p>The post <a href="https://blog.identitydesign.us/woocommerce-astra-disable-cart-bubble/">WooCommerce Astra: How to Disable Cart Bubble on Hover of the Cart Menu</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/woocommerce-astra-disable-cart-bubble/">WooCommerce Astra: How to Disable Cart Bubble on Hover of the Cart Menu</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/star-symbol-broken-woocommerce-review/" rel="bookmark" title="Star Rating Symbol Icons Show Broken or Square Boxes on Woocommerce Review">Star Rating Symbol Icons Show Broken or Square Boxes on Woocommerce Review</a></li>
<li><a href="https://blog.identitydesign.us/woocommerce-storefront-theme-remove-storefront-woothemes-credits/" rel="bookmark" title="Remove &#8220;Storefront designed by WooThemes&#8221; on Woocommerce Storefront Theme">Remove &#8220;Storefront designed by WooThemes&#8221; on Woocommerce Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/woocommerce-astra-disable-cart-bubble/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Make Your WordPress into a Multisite (Create a Network)</title>
		<link>https://blog.identitydesign.us/wordpress-multisite/</link>
					<comments>https://blog.identitydesign.us/wordpress-multisite/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Fri, 03 Sep 2021 23:09:27 +0000</pubDate>
				<category><![CDATA[backend]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1511</guid>

					<description><![CDATA[<p>WordPress website can be turned into a Multisite which a feature that enables you to manage a network of websites from one place. This feature is really useful for creating numbers of sub-sites like in franchise business where you share the basic information in one place but needs multiple WooCommerce sites to collect payments and [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/wordpress-multisite/">Make Your WordPress into a Multisite (Create a Network)</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/wordpress-multisite/">Make Your WordPress into a Multisite (Create a Network)</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/fix-php-upgrade-error-whm-cpanel/" rel="bookmark" title="(Resolved) Fix PHP / MultiPHP Version Upgrade Error in WHM/Cpanel">(Resolved) Fix PHP / MultiPHP Version Upgrade Error in WHM/Cpanel</a></li>
<li><a href="https://blog.identitydesign.us/redirect-http-website-to-secure-https-website-using-simple-htaccess/" rel="bookmark" title="Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting">Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting</a></li>
<li><a href="https://blog.identitydesign.us/fix-and-remove-wp-vcd-malware-virus-in-wordpress/" rel="bookmark" title="Malware/Virus: Fix and Remove &#8220;WP-VCD&#8221; from my WordPress">Malware/Virus: Fix and Remove &#8220;WP-VCD&#8221; from my WordPress</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>WordPress website can be turned into a Multisite which a feature that enables you to manage a network of websites from one place. This feature is really useful for creating numbers of sub-sites like in franchise business where you share the basic information in one place but needs multiple WooCommerce sites to collect payments and get notification separately.</p>
<h2>1. Deactivate all plugins</h2>
<p><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-1-300x203.jpg" alt="Wordpress deactivate plugins" width="300" height="203" class="aligncenter size-medium wp-image-1516" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-1-300x203.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-1-1024x694.jpg 1024w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-1-768x520.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-1-624x423.jpg 624w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-1.jpg 1308w" sizes="auto, (max-width: 300px) 100vw, 300px" /></p>
<p>This is first thing you would have to do. Go to the WP Admin (Backend) -> Pluggins -> deactivate all your active plugins.</p>
<h2>2. Edit WP-CONFIG.PHP </h2>
<p><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-3-300x68.jpg" alt="Add define code" width="300" height="68" class="aligncenter size-medium wp-image-1518" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-3-300x68.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-3-768x173.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-3-624x141.jpg 624w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-3.jpg 930w" sizes="auto, (max-width: 300px) 100vw, 300px" /></p>
<p>Open <strong>wp-config.php</strong> file using FTP or cPanel -> File Manager.</p>
<p>Find <code>/* That's all, stop editing! Happy blogging. */</code> line in <strong>wp-config.php</strong> file (it&#8217;s on very end of the file)</p>
<pre>
/* Multisite */
define( 'WP_ALLOW_MULTISITE', true );
</pre>
<p>Copy the code and paste above, &#8220;That&#8217;s all&#8230;&#8221; in <strong>wp-config.php</strong>.</p>
<h2>3. Create a Network on Your WordPress</h2>
<p><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-4-300x198.jpg" alt="network setup" width="300" height="198" class="aligncenter size-medium wp-image-1520" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-4-300x198.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-4-624x413.jpg 624w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-4.jpg 644w" sizes="auto, (max-width: 300px) 100vw, 300px" /> </p>
<p>Once you are done with the process #1 and #2, the Network Setup menu should appear on your WordPress Admin page -> Settings -> Network Setup.</p>
<p>Very careful on either choosing <strong>Sub-domains</strong> or <strong>Sub-directories</strong> method in your WordPress network as you can&#8217;t go back once selected. I prefer the <strong>Sub-directories</strong> method as it&#8217;s much easier, and I like my sub-sites URL go after the slash <code>/</code>.</p>
<p><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-7-1024x621.jpg" alt="addresses site in your wordpress" width="625" height="379" class="aligncenter size-large wp-image-1522" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-7-1024x621.jpg 1024w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-7-300x182.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-7-768x465.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-7-1536x931.jpg 1536w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-7-624x378.jpg 624w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-7.jpg 1904w" sizes="auto, (max-width: 625px) 100vw, 625px" /></p>
<h3>What if the Sub-directory installation is not available? </h3>
<p><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-5-1024x498.jpg" alt="subdomain installation" width="625" height="304" class="aligncenter size-large wp-image-1523" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-5-1024x498.jpg 1024w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-5-300x146.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-5-768x373.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-5-1536x747.jpg 1536w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-5-2048x996.jpg 2048w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-5-624x303.jpg 624w" sizes="auto, (max-width: 625px) 100vw, 625px" /></p>
<p>I once had a hard time couldn&#8217;t figure out why sub-directory installation can&#8217;t be selected. But, it&#8217;s very simple as deleting some files. Once you see this message, just remove all your existing <strong>posts</strong> and <strong>pages</strong> from WP Admin. Empty <strong>upload</strong> folder if necessary, and come back to this page again. You&#8217;ll now able to select the Sub-directory installation.</p>
<h2>4. Add Additional Codes to your WP-CONFIG.PHP</h2>
<p>After you hit the <code>Install</code> button, WordPress will guide you what to add on your <code>wp-config.php</code> file with some additional lines. In my case, I had to add the following.</p>
<p><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-6-300x96.jpg" alt="additional codes to wp-config" width="300" height="96" class="aligncenter size-medium wp-image-1525" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-6-300x96.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-6-768x245.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-6-624x199.jpg 624w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-6.jpg 986w" sizes="auto, (max-width: 300px) 100vw, 300px" /></p>
<h2>5. Add Additional Codes to your .HTACCESS</h2>
<p>This step should also kindly described with #4. Open up the <strong>.htaccess</strong> file using FTP or cPanel -> File Manager. If you use cPanel&#8217;s File Manager, there is a chance .htaccess file be hidden. Go to the <code>Settings</code> menu and make &#8220;Show Hidden Files&#8221; active.</p>
<p><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-10-300x80.jpg" alt="show hidden files" width="300" height="80" class="aligncenter size-medium wp-image-1526" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-10-300x80.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-10-768x204.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-10-624x166.jpg 624w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-10.jpg 980w" sizes="auto, (max-width: 300px) 100vw, 300px" /></p>
<p>Paste the code you received from the WordPress Network Setup page. I only removed and replaced the highlighted lines as below.</p>
<p><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-9.jpg" alt="htaccess replacement" width="1336" height="644" class="aligncenter size-full wp-image-1532" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-9.jpg 1336w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-9-300x145.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-9-1024x494.jpg 1024w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-9-768x370.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2021/09/WPM-9-624x301.jpg 624w" sizes="auto, (max-width: 1336px) 100vw, 1336px" /></p>
<p>Now, your WordPress site turned into a Multisite. Enjoy! </p><p>The post <a href="https://blog.identitydesign.us/wordpress-multisite/">Make Your WordPress into a Multisite (Create a Network)</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/wordpress-multisite/">Make Your WordPress into a Multisite (Create a Network)</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/fix-php-upgrade-error-whm-cpanel/" rel="bookmark" title="(Resolved) Fix PHP / MultiPHP Version Upgrade Error in WHM/Cpanel">(Resolved) Fix PHP / MultiPHP Version Upgrade Error in WHM/Cpanel</a></li>
<li><a href="https://blog.identitydesign.us/redirect-http-website-to-secure-https-website-using-simple-htaccess/" rel="bookmark" title="Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting">Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting</a></li>
<li><a href="https://blog.identitydesign.us/fix-and-remove-wp-vcd-malware-virus-in-wordpress/" rel="bookmark" title="Malware/Virus: Fix and Remove &#8220;WP-VCD&#8221; from my WordPress">Malware/Virus: Fix and Remove &#8220;WP-VCD&#8221; from my WordPress</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/wordpress-multisite/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>WooCommerce Hollow &#8220;Empty&#8221; Star Rating to &#8220;Full&#8221; Filled Stars</title>
		<link>https://blog.identitydesign.us/woocommerce-hollow-empty-star-rating-to-full-filled-stars/</link>
					<comments>https://blog.identitydesign.us/woocommerce-hollow-empty-star-rating-to-full-filled-stars/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Mon, 02 Aug 2021 22:14:39 +0000</pubDate>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1462</guid>

					<description><![CDATA[<p>5 hollow stars looked my customers rated 0 star on my item not 5 stars. (But it&#8217;s 5 star rated though!) For users who sees hollow stars in WooCommerce, there must be mis-specifying font-family in your CSS. Check if you have installed the &#8220;Easy Social Icons&#8221; plugin that is activated with WooCommerce. Simply deactivate the [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/woocommerce-hollow-empty-star-rating-to-full-filled-stars/">WooCommerce Hollow “Empty” Star Rating to “Full” Filled Stars</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/woocommerce-hollow-empty-star-rating-to-full-filled-stars/">WooCommerce Hollow &#8220;Empty&#8221; Star Rating to &#8220;Full&#8221; Filled Stars</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/star-symbol-broken-woocommerce-review/" rel="bookmark" title="Star Rating Symbol Icons Show Broken or Square Boxes on Woocommerce Review">Star Rating Symbol Icons Show Broken or Square Boxes on Woocommerce Review</a></li>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/woocommerce-conflicts-with-bootstrap4/" rel="bookmark" title="Woocommerce Conflicts with Bootstrap 4 in WordPress">Woocommerce Conflicts with Bootstrap 4 in WordPress</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>5 hollow stars looked my customers rated 0 star on my item not 5 stars. (But it&#8217;s 5 star rated though!) For users who sees hollow stars in WooCommerce, there must be mis-specifying font-family in your CSS. </p>
<p><a href="https://blog.identitydesign.us/wp-content/uploads/2021/08/SC-hollow-stars.jpg"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/08/SC-hollow-stars.jpg" alt="SC-hollow-stars" width="1864" height="1398" class="aligncenter size-full wp-image-1463" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/08/SC-hollow-stars.jpg 1864w, https://blog.identitydesign.us/wp-content/uploads/2021/08/SC-hollow-stars-300x225.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2021/08/SC-hollow-stars-1024x768.jpg 1024w, https://blog.identitydesign.us/wp-content/uploads/2021/08/SC-hollow-stars-768x576.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2021/08/SC-hollow-stars-1536x1152.jpg 1536w, https://blog.identitydesign.us/wp-content/uploads/2021/08/SC-hollow-stars-624x468.jpg 624w" sizes="auto, (max-width: 1864px) 100vw, 1864px" /></a></p>
<p>Check if you have installed the &#8220;Easy Social Icons&#8221; plugin that is activated with WooCommerce.</p>
<p><a href="https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-02-at-2.44.59-PM.jpg"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-02-at-2.44.59-PM.jpg" alt="Easy Social Icons" width="366" height="128" class="aligncenter size-full wp-image-1464" srcset="https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-02-at-2.44.59-PM.jpg 366w, https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-02-at-2.44.59-PM-300x105.jpg 300w" sizes="auto, (max-width: 366px) 100vw, 366px" /></a></p>
<p>Simply deactivate the plugin as it is conflicting the &#8220;Font Awesome 5 Free&#8221; font-family with WooCommerce. Once the Easy Social Icons plugin deactivated, you will see the full, filled star ratings on your item.</p>
<p><a href="https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-02-at-2.44.26-PM.jpg"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2021/08/Screen-Shot-2021-08-02-at-2.44.26-PM.jpg" alt="filled star rating" width="222" height="76" class="aligncenter size-full wp-image-1465" /></a></p><p>The post <a href="https://blog.identitydesign.us/woocommerce-hollow-empty-star-rating-to-full-filled-stars/">WooCommerce Hollow “Empty” Star Rating to “Full” Filled Stars</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/woocommerce-hollow-empty-star-rating-to-full-filled-stars/">WooCommerce Hollow &#8220;Empty&#8221; Star Rating to &#8220;Full&#8221; Filled Stars</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/star-symbol-broken-woocommerce-review/" rel="bookmark" title="Star Rating Symbol Icons Show Broken or Square Boxes on Woocommerce Review">Star Rating Symbol Icons Show Broken or Square Boxes on Woocommerce Review</a></li>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/woocommerce-conflicts-with-bootstrap4/" rel="bookmark" title="Woocommerce Conflicts with Bootstrap 4 in WordPress">Woocommerce Conflicts with Bootstrap 4 in WordPress</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/woocommerce-hollow-empty-star-rating-to-full-filled-stars/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>(Resolved) Fix PHP / MultiPHP Version Upgrade Error in WHM/Cpanel</title>
		<link>https://blog.identitydesign.us/fix-php-upgrade-error-whm-cpanel/</link>
					<comments>https://blog.identitydesign.us/fix-php-upgrade-error-whm-cpanel/#comments</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Wed, 09 Sep 2020 07:11:35 +0000</pubDate>
				<category><![CDATA[backend]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[WHM]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1292</guid>

					<description><![CDATA[<p>Upgrading your PHP version might be a requirement, when upgrading your WordPress to the latest version or any related plugins. My firewall tool recommended me to upgrade my WordPress, which I did, and I saw this warning message (below) with the website being down. I was proceeding PHP upgrade from version 5.6 to 7.4 using [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/fix-php-upgrade-error-whm-cpanel/">(Resolved) Fix PHP / MultiPHP Version Upgrade Error in WHM/Cpanel</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/fix-php-upgrade-error-whm-cpanel/">(Resolved) Fix PHP / MultiPHP Version Upgrade Error in WHM/Cpanel</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/disable-website-whm/" rel="bookmark" title="Temporarily Disable / Make a Website Offline in WHM">Temporarily Disable / Make a Website Offline in WHM</a></li>
<li><a href="https://blog.identitydesign.us/loading-webfonts-https-ssl/" rel="bookmark" title="Resolved! Loading Your Google Fonts Over https (SSL) Sites">Resolved! Loading Your Google Fonts Over https (SSL) Sites</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Upgrading your PHP version might be a requirement, when upgrading your WordPress to the latest version or any related plugins. My firewall tool recommended me to upgrade my WordPress, which I did, and I saw this warning message (below) with the website being down. I was proceeding PHP upgrade from version 5.6 to 7.4 using the MultiPHP Manager in Cpanel.</p>
<pre>Warning: Use of undefined constant WP_CONTENT_DIR – assumed ‘WP_CONTENT_DIR’ (this will throw an Error in a future version of PHP) in /home/XXXXX/public_html/wp-includes/load.php on line 115</pre>
<p>Let me get to the point straight. The error was occurred by the auto-generated PHP handler (ver 7.4) from .htaccess that was conflicting with another PHP handler (ver 5.6) that was running simultaneously in the server.  </p>
<h2>My old PHP handler looks like this:</h2>
<pre># Use PHP56 as default
AddHandler application/x-httpd-php56 .php
&lt;IfModule mod_suphp.c&gt;
    suPHP_ConfigPath /opt/php56/lib
&lt;/IfModule&gt;
</pre>
<h2>My new PHP handler looks like this:</h2>
<pre>
# php -- BEGIN cPanel-generated handler, do not edit
# Set the “ea-php74” package as the default “PHP” programming language.
&lt;IfModule mime_module&gt;
  AddHandler application/x-httpd-ea-php74 .php .php7 .phtml
&lt;/IfModule&gt;
# php -- END cPanel-generated handler, do not edit
</pre>
<p>In my case, the upgrade from the MultiPHP Manager was generating the 7.4 PHP handler in the <code>public_html</code> folder, and my old PHP version 5.6 handler was already existed in the folder above <code>public_html</code> which is above the root directory. That was the reason it was causing the error. You can&#8217;t run multiple PHP handlers for a single website.</p>

<div class="clear"></div>
<p><strong>My solution</strong> was to simply remove (or rename if you don&#8217;t want to delete the file) the <code>.htaccess</code> file (PHP 5.6) from one level above the root directory. Now it works like a charm!</p><p>The post <a href="https://blog.identitydesign.us/fix-php-upgrade-error-whm-cpanel/">(Resolved) Fix PHP / MultiPHP Version Upgrade Error in WHM/Cpanel</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/fix-php-upgrade-error-whm-cpanel/">(Resolved) Fix PHP / MultiPHP Version Upgrade Error in WHM/Cpanel</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/disable-website-whm/" rel="bookmark" title="Temporarily Disable / Make a Website Offline in WHM">Temporarily Disable / Make a Website Offline in WHM</a></li>
<li><a href="https://blog.identitydesign.us/loading-webfonts-https-ssl/" rel="bookmark" title="Resolved! Loading Your Google Fonts Over https (SSL) Sites">Resolved! Loading Your Google Fonts Over https (SSL) Sites</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/fix-php-upgrade-error-whm-cpanel/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Bootstrap Uneven Column Heights Issue in Layout Grid System</title>
		<link>https://blog.identitydesign.us/bootstrap-uneven-column-heights/</link>
					<comments>https://blog.identitydesign.us/bootstrap-uneven-column-heights/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Wed, 17 Jun 2020 09:11:41 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1250</guid>

					<description><![CDATA[<p>Bootstrap columns could go wrong and look uneven when columns have different heights. Use float: left to clear out the float properties and to stack blocks to the closest side. .col-lg-3:nth-child(5n) { clear: left; } If you have multiple blocks (for instance, 4-column layout) use float: left pseudo-element to apply the class every 5th element [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/bootstrap-uneven-column-heights/">Bootstrap Uneven Column Heights Issue in Layout Grid System</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/bootstrap-uneven-column-heights/">Bootstrap Uneven Column Heights Issue in Layout Grid System</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/table-column-width-setting-css/" rel="bookmark" title="CSS: A Simple Way to Set the Table Column Width">CSS: A Simple Way to Set the Table Column Width</a></li>
<li><a href="https://blog.identitydesign.us/free-indesign-template-letter-size-3-column-flyer-inddpdf/" rel="bookmark" title="Free InDesign Template: Letter-Size 3 Column Flyer (INDD/PDF)">Free InDesign Template: Letter-Size 3 Column Flyer (INDD/PDF)</a></li>
<li><a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/" rel="bookmark" title="How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Bootstrap columns could go wrong and look uneven when columns have different heights. Use <code>float: left</code> to clear out the float properties and to stack blocks to the closest side.</p>
<pre>
.col-lg-3:nth-child(5n) { clear: left; }
</pre>
<p>If you have multiple blocks (for instance, 4-column layout) use <code>float: left</code> pseudo-element to apply the class every 5th element <code>5n</code>.</p><p>The post <a href="https://blog.identitydesign.us/bootstrap-uneven-column-heights/">Bootstrap Uneven Column Heights Issue in Layout Grid System</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/bootstrap-uneven-column-heights/">Bootstrap Uneven Column Heights Issue in Layout Grid System</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/table-column-width-setting-css/" rel="bookmark" title="CSS: A Simple Way to Set the Table Column Width">CSS: A Simple Way to Set the Table Column Width</a></li>
<li><a href="https://blog.identitydesign.us/free-indesign-template-letter-size-3-column-flyer-inddpdf/" rel="bookmark" title="Free InDesign Template: Letter-Size 3 Column Flyer (INDD/PDF)">Free InDesign Template: Letter-Size 3 Column Flyer (INDD/PDF)</a></li>
<li><a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/" rel="bookmark" title="How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/bootstrap-uneven-column-heights/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>CSS Only: Pop-up Modal Lightbox on Page Load</title>
		<link>https://blog.identitydesign.us/css-only-modal-lightbox-pop-up-on-page-load/</link>
					<comments>https://blog.identitydesign.us/css-only-modal-lightbox-pop-up-on-page-load/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Fri, 10 Apr 2020 18:24:30 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1232</guid>

					<description><![CDATA[<p>I&#8217;ve shared a way to add a pop-up or modal lightbox with CSS only on my earlier post, Easy Modal Lightbox Pop-Up. I&#8217;ve received many request how to make this modal pop up on page load instead of using a button. So, here&#8217;s how-to: &#215; Pop-up modal/lightbox on page load You are seeing this because [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/css-only-modal-lightbox-pop-up-on-page-load/">CSS Only: Pop-up Modal Lightbox on Page Load</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/css-only-modal-lightbox-pop-up-on-page-load/">CSS Only: Pop-up Modal Lightbox on Page Load</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/css-only-easy-modal-lightbox-popup-animated/" rel="bookmark" title="CSS Only: Easy Modal Lightbox Pop-up (Animated)">CSS Only: Easy Modal Lightbox Pop-up (Animated)</a></li>
<li><a href="https://blog.identitydesign.us/add-copyright-css-wordpress/" rel="bookmark" title="Add a Copyright Text / Info Using CSS on WordPress Websites">Add a Copyright Text / Info Using CSS on WordPress Websites</a></li>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>I&#8217;ve shared a way to add a pop-up or modal lightbox with CSS only on my earlier post, <a href="https://blog.identitydesign.us/css-only-easy-modal-lightbox-popup-animated/">Easy Modal Lightbox Pop-Up</a>. I&#8217;ve received many request how to make this modal pop up on page load instead of using a button. So, here&#8217;s how-to:</p>
<div id="modal-1" class="modal animate-opacity">
<div class="modal-content">
<div class="modal-inner">
       <span onclick="document.getElementById('modal-1').style.display='none'" class="modal-close">&times;</span></p>
<h4>Pop-up modal/lightbox on page load</h4>
<p>You are seeing this because I&#8217;m about to show you how to create a pop up on page load without using any JavaScript.</p>
</p></div>
</p></div>
</div>

<div class="clear"></div>
<h2>HTML</h2>
<p>Copy the code below and paste into your HTML document. </p>
<pre>
&lt;div id=&quot;modal-1&quot; class=&quot;modal animate-opacity&quot;&gt;
   &lt;div class=&quot;modal-content&quot;&gt;
      &lt;div class=&quot;modal-inner&quot;&gt;
         &lt;span onclick=&quot;document.getElementById('modal-1').style.display='none'&quot; class=&quot;modal-close&quot;&gt;&amp;times;&lt;/span&gt;
         &lt;h4&gt;Modal Headline&lt;/h4&gt;
         &lt;p&gt;Modal description goes here.&lt;/p&gt;
      &lt;/div&gt; 
   &lt;/div&gt;
&lt;/div&gt;
</pre>

<div class="clear"></div>
<h2>CSS</h2>
<p>Copy the code below and paste into your CSS document. 		 	</p>
<pre>
.modal {
	z-index: 10;
	display: block;
	padding-top: 100px;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.5)
}
.modal-content {
	margin: auto;
	background-color: #fff;
	position: relative;
	padding: 0;
	outline: 0;
	max-width: 600px
}
.modal-inner { padding: 20px 30px; }
.modal-close {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	position: absolute;
	right: 0;
	top: 0;
	background: #ccc;
	padding: 6px 10px;
}
.animate-opacity { animation: opac 0.8s }@keyframes opac{from{opacity:0} to{opacity:1}}
</pre>
<p><code>.animate-opacity</code> is optional as it&#8217;s the animated effect when modal opens. </p>
<p>You can tweak the animation time. It&#8217;s currently 0.8 seconds <code>opac 0.8s</code> , but change the timing as your need.<br />
</p>
<div class="clear"></div>
<style>
.modal{z-index:10;display:block;padding-top:100px;position:fixed;left:0;top:0;width:100%;height:100%;overflow:auto;background-color:rgb(0,0,0);background-color:rgba(0,0,0,0.5);margin-left: 0px !important;}
.modal-content{margin:auto;background-color:#fff;position:relative;padding:0;outline:0;max-width:600px}
.modal-inner {padding: 20px 30px;} 
.modal-close{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none; position:absolute;right:0;top:0;     background: #ccc;padding: 6px 10px;}  
.animate-opacity{animation:opac 0.8s}@keyframes opac{from{opacity:0} to{opacity:1}}
button{background:orange;border:none;}
button:hover{background:red;color:#fff;border:none;}
</style><p>The post <a href="https://blog.identitydesign.us/css-only-modal-lightbox-pop-up-on-page-load/">CSS Only: Pop-up Modal Lightbox on Page Load</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/css-only-modal-lightbox-pop-up-on-page-load/">CSS Only: Pop-up Modal Lightbox on Page Load</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/css-only-easy-modal-lightbox-popup-animated/" rel="bookmark" title="CSS Only: Easy Modal Lightbox Pop-up (Animated)">CSS Only: Easy Modal Lightbox Pop-up (Animated)</a></li>
<li><a href="https://blog.identitydesign.us/add-copyright-css-wordpress/" rel="bookmark" title="Add a Copyright Text / Info Using CSS on WordPress Websites">Add a Copyright Text / Info Using CSS on WordPress Websites</a></li>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/css-only-modal-lightbox-pop-up-on-page-load/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Star Rating Symbol Icons Show Broken or Square Boxes on Woocommerce Review</title>
		<link>https://blog.identitydesign.us/star-symbol-broken-woocommerce-review/</link>
					<comments>https://blog.identitydesign.us/star-symbol-broken-woocommerce-review/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Mon, 09 Mar 2020 07:13:17 +0000</pubDate>
				<category><![CDATA[backend]]></category>
		<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[Fonts]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1218</guid>

					<description><![CDATA[<p>Very strange? I just made the reviews functionality active on my WordPress Woocommerce website, and I see the icons are broken with square boxes (some says &#8220;SSSSS&#8221;). There should be some CSS conflicts where the icon fonts were not properly loaded. So, I&#8217;ve came up overwriting some CSS styling including a new font-family to the [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/star-symbol-broken-woocommerce-review/">Star Rating Symbol Icons Show Broken or Square Boxes on Woocommerce Review</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/star-symbol-broken-woocommerce-review/">Star Rating Symbol Icons Show Broken or Square Boxes on Woocommerce Review</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/bootstrap-carousel-slider-transition-speed-time-interval/" rel="bookmark" title="How to Change Bootstrap Carousel Slider Transition Speed Time Interval">How to Change Bootstrap Carousel Slider Transition Speed Time Interval</a></li>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/fix-php-upgrade-error-whm-cpanel/" rel="bookmark" title="(Resolved) Fix PHP / MultiPHP Version Upgrade Error in WHM/Cpanel">(Resolved) Fix PHP / MultiPHP Version Upgrade Error in WHM/Cpanel</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Very strange? I just made the reviews functionality active on my WordPress Woocommerce website, and I see the icons are broken with square boxes (some says &#8220;SSSSS&#8221;). There should be some CSS conflicts where the icon fonts were not properly loaded. So, I&#8217;ve came up overwriting some CSS styling including a new font-family to the page, and it&#8217;s working! </p>
<pre>
p.stars a:before, p.stars a:hover, p.stars a:visited, p.stars a:focus, p.stars a:hover~a:before, p.stars:hover a:before, p.stars.selected a:not(.active):before, p.stars.selected a.active:before, p.stars.selected a.active~a:before {
    font-family: 'star';
    content: '\53';
    line-height: 1.4 !important;
}
</pre>

<div class="display-posts-listing display-related">
<div class="listing-item"><a class="image" href="https://blog.identitydesign.us/how-to-make-bootstrap-nav-top-level-menu-clickable-with-dropdowns/"><img loading="lazy" decoding="async" width="300" height="200" src="https://blog.identitydesign.us/wp-content/uploads/2018/08/300x200-topnav-300x200.jpg" class="attachment-medium size-medium wp-post-image" alt="300x200-topnav" scale="0"></a> <a class="title" href="https://blog.identitydesign.us/how-to-make-bootstrap-nav-top-level-menu-clickable-with-dropdowns/">How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns</a></div>
<div class="listing-item"><a class="image" href="https://blog.identitydesign.us/free-stockphoto-sites-for-commercial-use/"><img loading="lazy" decoding="async" width="300" height="200" src="https://blog.identitydesign.us/wp-content/uploads/2014/09/stockphoto.jpg" class="attachment-medium size-medium wp-post-image" alt="Stock Photo" scale="0"></a> <a class="title" href="https://blog.identitydesign.us/free-stockphoto-sites-for-commercial-use/">Best Free Stock Photo Sites for Commercial Use</a></div>
<div class="listing-item"><a class="image" href="https://blog.identitydesign.us/freebies-foodie-website-design-mockup-template/"><img loading="lazy" decoding="async" width="300" height="200" src="https://blog.identitydesign.us/wp-content/uploads/2015/10/Foodie-thumb.jpg" class="attachment-medium size-medium wp-post-image" alt="Foodie Website thumb" scale="0"></a> <a class="title" href="https://blog.identitydesign.us/freebies-foodie-website-design-mockup-template/">Freebies: Foodie Website Mock Up Template (PSD)</a></div>
</div><p>The post <a href="https://blog.identitydesign.us/star-symbol-broken-woocommerce-review/">Star Rating Symbol Icons Show Broken or Square Boxes on Woocommerce Review</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/star-symbol-broken-woocommerce-review/">Star Rating Symbol Icons Show Broken or Square Boxes on Woocommerce Review</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/bootstrap-carousel-slider-transition-speed-time-interval/" rel="bookmark" title="How to Change Bootstrap Carousel Slider Transition Speed Time Interval">How to Change Bootstrap Carousel Slider Transition Speed Time Interval</a></li>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/fix-php-upgrade-error-whm-cpanel/" rel="bookmark" title="(Resolved) Fix PHP / MultiPHP Version Upgrade Error in WHM/Cpanel">(Resolved) Fix PHP / MultiPHP Version Upgrade Error in WHM/Cpanel</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/star-symbol-broken-woocommerce-review/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</title>
		<link>https://blog.identitydesign.us/remove-copyright-storefront/</link>
					<comments>https://blog.identitydesign.us/remove-copyright-storefront/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Sun, 01 Dec 2019 06:10:59 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1199</guid>

					<description><![CDATA[<p>Woocommerce offers one of a greatest E-Commerce template themes for free called, &#8220;Storefront&#8220;. From the Nav to checkout process, all required functionality in order to run an E-Commerce are ready for you to download and activate. But, one little thing is bugging at the bottom of the page, &#8220;Built with Storefront &#38; WooCommerce.&#8221; line, however, [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/remove-copyright-storefront/">Remove ‘Built with Storefront & WooCommerce’ with CSS lines on WordPress Storefront Theme</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/remove-copyright-storefront/">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/woocommerce-storefront-theme-remove-storefront-woothemes-credits/" rel="bookmark" title="Remove &#8220;Storefront designed by WooThemes&#8221; on Woocommerce Storefront Theme">Remove &#8220;Storefront designed by WooThemes&#8221; on Woocommerce Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/remove-product-description-and-reviews-tabs-woocommerce-storefront-theme/" rel="bookmark" title="Remove Product Description and Reviews Tabs in Woocommerce Storefront Theme">Remove Product Description and Reviews Tabs in Woocommerce Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/" rel="bookmark" title="How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p><a href="https://woocommerce.com/" target="_blank">Woocommerce</a> offers one of a greatest E-Commerce template themes for free called, &#8220;<a href="https://themes.woocommerce.com/storefront/" target="_blank">Storefront</a>&#8220;. From the Nav to checkout process, all required functionality in order to run an E-Commerce are ready for you to download and activate. But, one little thing is bugging at the bottom of the page, &#8220;Built with Storefront &amp; WooCommerce.&#8221; line, however, it&#8217;s possible to get it out with a few lines of CSS.</p>
<p><a href="https://blog.identitydesign.us/wp-content/uploads/2019/11/storefront-copyright.jpg" rel="attachment wp-att-1201"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2019/11/storefront-copyright-300x81.jpg" alt="Store front copyright" width="300" height="81" class="alignnone size-medium wp-image-1201" srcset="https://blog.identitydesign.us/wp-content/uploads/2019/11/storefront-copyright-300x81.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2019/11/storefront-copyright-624x168.jpg 624w, https://blog.identitydesign.us/wp-content/uploads/2019/11/storefront-copyright.jpg 736w" sizes="auto, (max-width: 300px) 100vw, 300px" /></a></p>
<h2>Remove and replace copyright information on Storefront theme</h2>
<pre>footer .site-infos { display:none; } 				
footer .footer-widgets { border: 0 !important;	}	
footer .footer-widgets::after {  content: "© ADD THIS FOR YOUR COPYRIGHT INFO" }
</pre>

<div class="clear"></div><p>The post <a href="https://blog.identitydesign.us/remove-copyright-storefront/">Remove ‘Built with Storefront & WooCommerce’ with CSS lines on WordPress Storefront Theme</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/remove-copyright-storefront/">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/woocommerce-storefront-theme-remove-storefront-woothemes-credits/" rel="bookmark" title="Remove &#8220;Storefront designed by WooThemes&#8221; on Woocommerce Storefront Theme">Remove &#8220;Storefront designed by WooThemes&#8221; on Woocommerce Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/remove-product-description-and-reviews-tabs-woocommerce-storefront-theme/" rel="bookmark" title="Remove Product Description and Reviews Tabs in Woocommerce Storefront Theme">Remove Product Description and Reviews Tabs in Woocommerce Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/" rel="bookmark" title="How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/remove-copyright-storefront/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting</title>
		<link>https://blog.identitydesign.us/redirect-http-website-to-secure-https-website-using-simple-htaccess/</link>
					<comments>https://blog.identitydesign.us/redirect-http-website-to-secure-https-website-using-simple-htaccess/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Wed, 13 Nov 2019 01:28:49 +0000</pubDate>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1181</guid>

					<description><![CDATA[<p>Check your website if it&#8217;s already HTTPS (SSL Certificate is) valid and active by changing http:// to https:// in the URL. If you find your website is already HTTPS active, then let&#8217;s make an automatic redirect so users can land on your secured page. Open your cPanel -> File Manager -> public_html (or very top [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/redirect-http-website-to-secure-https-website-using-simple-htaccess/">Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/redirect-http-website-to-secure-https-website-using-simple-htaccess/">Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/get-a-free-ssl-certificate-secure-socket-layer-change-http-to-https-for-your-website-domain/" rel="bookmark" title="Get a free SSL Certificate (Secure Socket Layer) &#8211; Change HTTP to HTTPS for your website domain">Get a free SSL Certificate (Secure Socket Layer) &#8211; Change HTTP to HTTPS for your website domain</a></li>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
<li><a href="https://blog.identitydesign.us/add-copyright-css-wordpress/" rel="bookmark" title="Add a Copyright Text / Info Using CSS on WordPress Websites">Add a Copyright Text / Info Using CSS on WordPress Websites</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Check your website if it&#8217;s already HTTPS (SSL Certificate is) valid and active by changing <code>http://</code> to <code>https://</code> in the URL. If you find your website is already HTTPS active, then let&#8217;s make an automatic redirect so users can land on your secured page.</p>
<p>Open your <code>cPanel</code> -> <code>File Manager</code> -> <code>public_html</code> (or very top of your folder structure), and create a file, <code>.htaccess</code>. Add the code to the file and save:</p>
<pre>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</pre>

<div class="clear"></div>
<p>Or <a class="btn" onclick="_gaq.push(['_trackEvent', 'Freebies', 'htaccess', 'https://blog.identitydesign.us/wp-content/uploads/2019/11/htaccess.zip']);" href="https://blog.identitydesign.us/wp-content/uploads/2019/11/htaccess.zip">download</a> this in a file, unzip, add a period before like this -> &#8220;.htaccess&#8221;, and upload in your hosting/cPanel (or very top of your folder structure).</p><p>The post <a href="https://blog.identitydesign.us/redirect-http-website-to-secure-https-website-using-simple-htaccess/">Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/redirect-http-website-to-secure-https-website-using-simple-htaccess/">Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/get-a-free-ssl-certificate-secure-socket-layer-change-http-to-https-for-your-website-domain/" rel="bookmark" title="Get a free SSL Certificate (Secure Socket Layer) &#8211; Change HTTP to HTTPS for your website domain">Get a free SSL Certificate (Secure Socket Layer) &#8211; Change HTTP to HTTPS for your website domain</a></li>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
<li><a href="https://blog.identitydesign.us/add-copyright-css-wordpress/" rel="bookmark" title="Add a Copyright Text / Info Using CSS on WordPress Websites">Add a Copyright Text / Info Using CSS on WordPress Websites</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/redirect-http-website-to-secure-https-website-using-simple-htaccess/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>CSS: Add Gradient (Dark Shade) Layer on Background Images to Make the Text Visible</title>
		<link>https://blog.identitydesign.us/css-add-gradient-dark-shade-on-background-images-to-make-the-text-visible/</link>
					<comments>https://blog.identitydesign.us/css-add-gradient-dark-shade-on-background-images-to-make-the-text-visible/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Thu, 31 Oct 2019 00:08:45 +0000</pubDate>
				<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1139</guid>

					<description><![CDATA[<p>Sometimes the text or caption is not legible on an image depends on the color contrast between the foreground element and the background. I used to edit my image to be more darker or lighter to make the HTML text stand out and readable to users, but well, here&#8217;s must easier solution with lines of [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/css-add-gradient-dark-shade-on-background-images-to-make-the-text-visible/">CSS: Add Gradient (Dark Shade) Layer on Background Images to Make the Text Visible</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/css-add-gradient-dark-shade-on-background-images-to-make-the-text-visible/">CSS: Add Gradient (Dark Shade) Layer on Background Images to Make the Text Visible</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/add-copyright-css-wordpress/" rel="bookmark" title="Add a Copyright Text / Info Using CSS on WordPress Websites">Add a Copyright Text / Info Using CSS on WordPress Websites</a></li>
<li><a href="https://blog.identitydesign.us/how-to-make-bootstrap-nav-top-level-menu-clickable-with-dropdowns/" rel="bookmark" title="How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns">How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns</a></li>
<li><a href="https://blog.identitydesign.us/redirect-http-website-to-secure-https-website-using-simple-htaccess/" rel="bookmark" title="Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting">Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Sometimes the text or caption is not legible on an image depends on the color contrast between the foreground element and the background. I used to edit my image to be more darker or lighter to make the HTML text stand out and readable to users, but well, here&#8217;s must easier solution with lines of CSS!</p>
<div class="hero-outer">
<div class="hero-inner original">
<p>Original</p>
</div>
</div>
<div class="hero-outer">
<div class="hero-inner">
<p>CSS Gradient</p>
</div>
</div>

<div class="clear"></div>
<h2>HTML</h2>
<p>Copy the code below and paste into your HTML document. 	</p>
<pre>
&lt;div class=&quot;hero-outer&quot;&gt;
    &lt;div class=&quot;hero-inner&quot;&gt;
        &lt;p&gt;CSS Gradient&lt;/p&gt;
    &lt;/div&gt;
&lt;/div&gt;
</pre>
<h2>CSS</h2>
<p>Copy the code below and paste into your CSS document. 		 	</p>
<pre>
.hero-outer { position:relative; }
.hero-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: linear-gradient(to bottom, #000, transparent);
    opacity: 0.5;
}
.hero-inner { 
    background: url('https://blog.identitydesign.us/wp-content/uploads/2019/10/300x200-gradient-1.jpg'); 
    width:100%;
    height: 400px;
    background-size:cover;
}
.hero-inner p { 
    color:#fff; 
    position:relative; 
    font-size: 50px !important; 
    padding-right: 40px;
    text-align: right;
    top: 20px;
    z-index: 1;
}
</pre>

<div class="clear"></div>
<style>
.hero-outer { position:relative; }
.hero-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: linear-gradient(to bottom, #000, transparent);
    opacity: 0.5;
}
.hero-inner { 
    background: url('https://blog.identitydesign.us/wp-content/uploads/2019/10/300x200-gradient-1.jpg'); 
    width:100%;
    height: 400px;
    background-size:cover;
}
.hero-inner p { 
    color:#fff; 
    position:relative; 
    font-size: 50px !important; 
    padding-right: 40px;
    text-align: right;
    top: 20px;
    z-index: 1;
}
.original::after {
    opacity: 0 !important;
}
</style><p>The post <a href="https://blog.identitydesign.us/css-add-gradient-dark-shade-on-background-images-to-make-the-text-visible/">CSS: Add Gradient (Dark Shade) Layer on Background Images to Make the Text Visible</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/css-add-gradient-dark-shade-on-background-images-to-make-the-text-visible/">CSS: Add Gradient (Dark Shade) Layer on Background Images to Make the Text Visible</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/add-copyright-css-wordpress/" rel="bookmark" title="Add a Copyright Text / Info Using CSS on WordPress Websites">Add a Copyright Text / Info Using CSS on WordPress Websites</a></li>
<li><a href="https://blog.identitydesign.us/how-to-make-bootstrap-nav-top-level-menu-clickable-with-dropdowns/" rel="bookmark" title="How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns">How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns</a></li>
<li><a href="https://blog.identitydesign.us/redirect-http-website-to-secure-https-website-using-simple-htaccess/" rel="bookmark" title="Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting">Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/css-add-gradient-dark-shade-on-background-images-to-make-the-text-visible/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Add a Copyright Text / Info Using CSS on WordPress Websites</title>
		<link>https://blog.identitydesign.us/add-copyright-css-wordpress/</link>
					<comments>https://blog.identitydesign.us/add-copyright-css-wordpress/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Thu, 19 Sep 2019 20:05:49 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1144</guid>

					<description><![CDATA[<p>Let&#8217;s don&#8217;t bother spending hours to look for footer.php or widgets in WordPress to add your Copyright line on the footer of website. Here&#8217;s one easy method to add using CSS. Add copyright text / info with CSS for WordPress/Bootstrap websites footer > div:before { content: "© Copyright (YEAR). All rights reserved."; font-size: 14px; color: [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/add-copyright-css-wordpress/">Add a Copyright Text / Info Using CSS on WordPress Websites</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/add-copyright-css-wordpress/">Add a Copyright Text / Info Using CSS on WordPress Websites</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
<li><a href="https://blog.identitydesign.us/html-css-ribbon-no-image/" rel="bookmark" title="How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)">How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)</a></li>
<li><a href="https://blog.identitydesign.us/css-only-easy-modal-lightbox-popup-animated/" rel="bookmark" title="CSS Only: Easy Modal Lightbox Pop-up (Animated)">CSS Only: Easy Modal Lightbox Pop-up (Animated)</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Let&#8217;s don&#8217;t bother spending hours to look for <code>footer.php</code> or widgets in WordPress to add your Copyright line on the footer of website. Here&#8217;s one easy method to add using CSS.<br />
<a href="https://blog.identitydesign.us/wp-content/uploads/2019/09/copyright.png" rel="attachment wp-att-1145"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2019/09/copyright-300x102.png" alt="copyright" width="300" height="102" class="alignnone size-medium wp-image-1145" srcset="https://blog.identitydesign.us/wp-content/uploads/2019/09/copyright-300x102.png 300w, https://blog.identitydesign.us/wp-content/uploads/2019/09/copyright.png 528w" sizes="auto, (max-width: 300px) 100vw, 300px" /></a></p>
<h2>Add copyright text / info with CSS for WordPress/Bootstrap websites</h2>
<pre>
footer > div:before {
    content: "© Copyright (YEAR). All rights reserved.";
    font-size: 14px;
    color: #777;
    text-align: center;
    display: block;
    margin: 20px auto;
}
</pre>

<div class="clear"></div><p>The post <a href="https://blog.identitydesign.us/add-copyright-css-wordpress/">Add a Copyright Text / Info Using CSS on WordPress Websites</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/add-copyright-css-wordpress/">Add a Copyright Text / Info Using CSS on WordPress Websites</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
<li><a href="https://blog.identitydesign.us/html-css-ribbon-no-image/" rel="bookmark" title="How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)">How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)</a></li>
<li><a href="https://blog.identitydesign.us/css-only-easy-modal-lightbox-popup-animated/" rel="bookmark" title="CSS Only: Easy Modal Lightbox Pop-up (Animated)">CSS Only: Easy Modal Lightbox Pop-up (Animated)</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/add-copyright-css-wordpress/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</title>
		<link>https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/</link>
					<comments>https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/#comments</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Sat, 01 Jun 2019 00:30:06 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1129</guid>

					<description><![CDATA[<p>WP Bootstrap Starter Theme is one of a popular templates you can get it for free in WordPress. It&#8217;s nice with light weighted built in Boostrap 4 framework so it&#8217;s ready to use just by having the theme itself. You can pretty much edit the entire website including the header and footer except for removing [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/">How to Remove “Bootstrap WordPress Theme” on WP Bootstrap Starter Template</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
<li><a href="https://blog.identitydesign.us/no-programming-needed-use-javascript-to-load-header-and-footer-templates-works-just-like-php-include/" rel="bookmark" title="(No Programming) Use JavaScript to Load Header and Footer Templates. Works Just Like PHP Include">(No Programming) Use JavaScript to Load Header and Footer Templates. Works Just Like PHP Include</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p><a href="http://sleekycase.com/3d-custom-photo-design-matte-case/" rel="attachment wp-att-940" target="_blank"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2014/06/banner-web.jpg" alt="Get Custom Phone Case Now!" width="940" height="492" class="alignnone size-full wp-image-940" srcset="https://blog.identitydesign.us/wp-content/uploads/2014/06/banner-web.jpg 940w, https://blog.identitydesign.us/wp-content/uploads/2014/06/banner-web-300x157.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2014/06/banner-web-768x402.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2014/06/banner-web-624x327.jpg 624w" sizes="auto, (max-width: 940px) 100vw, 940px" /></a></p>
<p>WP Bootstrap Starter Theme is one of a popular templates you can get it for free in WordPress. It&#8217;s nice with light weighted built in Boostrap 4 framework so it&#8217;s ready to use just by having the theme itself.</p>
<p>You can pretty much edit the entire website including the header and footer except for removing the copyright text very bottom of the page saying,  &#8220;Bootstrap WordPress Theme&#8221;. </p>
<p><a href="https://blog.identitydesign.us/wp-content/uploads/2019/05/Screen-Shot-2019-05-31-at-4.59.42-PM.png" rel="attachment wp-att-1134"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2019/05/Screen-Shot-2019-05-31-at-4.59.42-PM.png" alt="Screen Shot 2019-05-31 at 4.59.42 PM" width="728" height="80" class="alignnone size-full wp-image-1134" srcset="https://blog.identitydesign.us/wp-content/uploads/2019/05/Screen-Shot-2019-05-31-at-4.59.42-PM.png 728w, https://blog.identitydesign.us/wp-content/uploads/2019/05/Screen-Shot-2019-05-31-at-4.59.42-PM-300x33.png 300w, https://blog.identitydesign.us/wp-content/uploads/2019/05/Screen-Shot-2019-05-31-at-4.59.42-PM-624x69.png 624w" sizes="auto, (max-width: 728px) 100vw, 728px" /></a></p>
<p>Here&#8217;s a way to make it disappear by adding a CSS line. Let me show you how to do this in a minute!</p>
<h2>Remove &#8220;Bootstrap WordPress Theme&#8221; text on the footer</h2>
<ol>
<li>Go to the Admin website -> Appearance -> Customize -> Additional CSS</li>
<li>Copy the CSS code below and paste on the CSS window.</li>
<li>Save!</li>
</ol>

<pre>
footer .sep, footer .credits {
    display:none;
}
</pre><p>The post <a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/">How to Remove “Bootstrap WordPress Theme” on WP Bootstrap Starter Template</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
<li><a href="https://blog.identitydesign.us/no-programming-needed-use-javascript-to-load-header-and-footer-templates-works-just-like-php-include/" rel="bookmark" title="(No Programming) Use JavaScript to Load Header and Footer Templates. Works Just Like PHP Include">(No Programming) Use JavaScript to Load Header and Footer Templates. Works Just Like PHP Include</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>(No Programming) Use JavaScript to Load Header and Footer Templates. Works Just Like PHP Include</title>
		<link>https://blog.identitydesign.us/no-programming-needed-use-javascript-to-load-header-and-footer-templates-works-just-like-php-include/</link>
					<comments>https://blog.identitydesign.us/no-programming-needed-use-javascript-to-load-header-and-footer-templates-works-just-like-php-include/#comments</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Mon, 29 Apr 2019 23:41:33 +0000</pubDate>
				<category><![CDATA[backend]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1108</guid>

					<description><![CDATA[<p>I&#8217;ve looking for this for years, but it&#8217;s actually much simpler than I thought. You can build your HTML website with universal header and footer (so you don&#8217;t have to repeat update multiple files over and over again) by adding a simple JavaScript/Jquery line without using any programming PHP scripts. HTML &#60;script src="https://code.jquery.com/jquery-1.10.2.js"&#62;&#60;/script&#62; &#60;script&#62; $(function(){ [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/no-programming-needed-use-javascript-to-load-header-and-footer-templates-works-just-like-php-include/">(No Programming) Use JavaScript to Load Header and Footer Templates. Works Just Like PHP Include</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/no-programming-needed-use-javascript-to-load-header-and-footer-templates-works-just-like-php-include/">(No Programming) Use JavaScript to Load Header and Footer Templates. Works Just Like PHP Include</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
<li><a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/" rel="bookmark" title="How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a></li>
<li><a href="https://blog.identitydesign.us/redirect-http-website-to-secure-https-website-using-simple-htaccess/" rel="bookmark" title="Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting">Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>I&#8217;ve looking for this for years, but it&#8217;s actually much simpler than I thought. You can build your HTML website with universal header and footer (so you don&#8217;t have to repeat update multiple files over and over again) by adding a simple JavaScript/Jquery line without using any programming PHP scripts.</p>
<h2>HTML</h2>
<pre>
&lt;script src="https://code.jquery.com/jquery-1.10.2.js"&gt;&lt;/script&gt;
&lt;script&gt;
$(function(){
$("#header-template").load("header.html");
$("#footer-template").load("footer.html");
});
&lt;/script&gt;

&lt;div id="header-template"&gt;&lt;!--Your header.html placeholder--&gt;&lt;/div&gt;

&lt;!--Your content start here--&gt;
Hello World!
&lt;!--Your content end here--&gt;

&lt;div id="footer-template"&gt;&lt;!--Your footer.html placeholder--&gt;&lt;/div&gt;

</pre>

<div class="clear"></div>
<h2>Instruction</h2>
<ol>
<li>Create a <code>header.html</code> and put all the header portion starting with <code>&lt;!DOCTYPE html&gt;</code>.</li>
<li>Create a <code>footer.html</code> and put all the footer portion end with <code>&lt;/html&gt;</code>.</li>
<li>Create a <code>index.html</code> and copy and paste the HTML code (from the top of this article) into your HTML document.</li>
<li>Build your own content by replacing the text &#8220;Hello World!&#8221; and save.</li>
<li>Open the <code>index.html</code> and review yourself.</li>
</ol>
<p>You can duplicate the <code>index.html</code> and rename it differently for any additional pages you wish to create. This JavaScript works on a server environment, so this will not be able to load header and footer if you are opening the files from your desktop which means you need to upload your files via FTP and access your HTMLs live.</p>
<p>Now, you&#8217;ve created a website without using any programming scripts.</p><p>The post <a href="https://blog.identitydesign.us/no-programming-needed-use-javascript-to-load-header-and-footer-templates-works-just-like-php-include/">(No Programming) Use JavaScript to Load Header and Footer Templates. Works Just Like PHP Include</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/no-programming-needed-use-javascript-to-load-header-and-footer-templates-works-just-like-php-include/">(No Programming) Use JavaScript to Load Header and Footer Templates. Works Just Like PHP Include</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
<li><a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/" rel="bookmark" title="How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a></li>
<li><a href="https://blog.identitydesign.us/redirect-http-website-to-secure-https-website-using-simple-htaccess/" rel="bookmark" title="Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting">Redirect HTTP Website to Secure HTTPS Website Using Simple .htaccess in cPane/Hosting</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/no-programming-needed-use-javascript-to-load-header-and-footer-templates-works-just-like-php-include/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>CSS / HTML: Make Absolute Center (Vertical &#038; Horizontal)</title>
		<link>https://blog.identitydesign.us/css-make-your-element-absolute-center-vertical-horizontal/</link>
					<comments>https://blog.identitydesign.us/css-make-your-element-absolute-center-vertical-horizontal/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Sat, 09 Feb 2019 01:05:02 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1088</guid>

					<description><![CDATA[<p>For some reasons, making an article absolute center was pretty tricky with HTML. Horizontal centering is mostly done by text-align:center or margin:auto tags in css. Vertical alignment has to do with positions or vertical-align:middle, and many times an image or other elements are not centering correctly. Try this below, this is one easy way making [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/css-make-your-element-absolute-center-vertical-horizontal/">CSS / HTML: Make Absolute Center (Vertical & Horizontal)</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/css-make-your-element-absolute-center-vertical-horizontal/">CSS / HTML: Make Absolute Center (Vertical &#038; Horizontal)</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/css-vertical-align-center/" rel="bookmark" title="CSS Vertical Align Center">CSS Vertical Align Center</a></li>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
<li><a href="https://blog.identitydesign.us/html-css-ribbon-no-image/" rel="bookmark" title="How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)">How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>For some reasons, making an article absolute center was pretty tricky with HTML. </p>
<p>Horizontal centering is mostly done by <code>text-align:center</code> or <code>margin:auto</code> tags in css. Vertical alignment has to do with <code>positions</code> or <code>vertical-align:middle</code>, and many times an image or other elements are not centering correctly. </p>
<p>Try this below, this is one easy way making your content elements absolute center in vertical and horizontal.</p>
<div class="board">
<h2 style="margin-top:0px;text-align:center;">DEMO: Vertical &#038; Horizontal Absolute Centering</h2>
<div class="body-center">
     <span>Hello.<br />Your centered content is here!</span>
   </div>
</div>

<div class="clear"></div>
<h2>CSS</h2>
<p>Copy the code below and paste into your CSS document. 		 	</p>
<pre>
body {
	display: flex;
	justify-content: center;
	align-items: center;
        text-align:center;
}
</pre>
<p>Easy and fantastic!</p>
<style>
div.body-center {
	display: flex;
	justify-content: center;
	align-items: center;
        min-height:300px;
        text-align:center;
}
div.body-center span { font-size:34px; font-weight:200; }
</style><p>The post <a href="https://blog.identitydesign.us/css-make-your-element-absolute-center-vertical-horizontal/">CSS / HTML: Make Absolute Center (Vertical & Horizontal)</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/css-make-your-element-absolute-center-vertical-horizontal/">CSS / HTML: Make Absolute Center (Vertical &#038; Horizontal)</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/css-vertical-align-center/" rel="bookmark" title="CSS Vertical Align Center">CSS Vertical Align Center</a></li>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
<li><a href="https://blog.identitydesign.us/html-css-ribbon-no-image/" rel="bookmark" title="How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)">How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/css-make-your-element-absolute-center-vertical-horizontal/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>CSS Only: Easy Modal Lightbox Pop-up (Animated)</title>
		<link>https://blog.identitydesign.us/css-only-easy-modal-lightbox-popup-animated/</link>
					<comments>https://blog.identitydesign.us/css-only-easy-modal-lightbox-popup-animated/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Tue, 29 Jan 2019 19:50:57 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[CSSonly]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1074</guid>

					<description><![CDATA[<p>Now you can add pop-ups or modal lightbox with CSS only (and really minor single line of JavaScript) on your html, wordpress or bootstrap website, so don&#8217;t be afraid. DEMO: CSS Modal Lightbox Click Here &#215; Modal Headline Modal description goes here. HTML Copy the code below and paste into your HTML document. &#60;button onclick=&#34;document.getElementById('modal-1').style.display='block'&#34;&#62;Click [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/css-only-easy-modal-lightbox-popup-animated/">CSS Only: Easy Modal Lightbox Pop-up (Animated)</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/css-only-easy-modal-lightbox-popup-animated/">CSS Only: Easy Modal Lightbox Pop-up (Animated)</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/css-only-modal-lightbox-pop-up-on-page-load/" rel="bookmark" title="CSS Only: Pop-up Modal Lightbox on Page Load">CSS Only: Pop-up Modal Lightbox on Page Load</a></li>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
<li><a href="https://blog.identitydesign.us/add-copyright-css-wordpress/" rel="bookmark" title="Add a Copyright Text / Info Using CSS on WordPress Websites">Add a Copyright Text / Info Using CSS on WordPress Websites</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Now you can add pop-ups or modal lightbox with CSS only (and really minor single line of JavaScript) on your html, wordpress or bootstrap website, so don&#8217;t be afraid. </p>
<div class="board">
<h2 style="margin-top:0px;text-align:center;">DEMO: CSS Modal Lightbox</h2>
<p class="text-center"><button class="" onclick="document.getElementById('modal-1').style.display='block'">Click Here</button></p>
<div id="modal-1" class="modal animate-opacity">
<div class="modal-content">
<div class="modal-inner">
       <span onclick="document.getElementById('modal-1').style.display='none'" class="modal-close">&times;</span></p>
<h4>Modal Headline</h4>
<p>Modal description goes here.</p>
</p></div>
</p></div>
</div>
</div>

<div class="clear"></div>
<h2>HTML</h2>
<p>Copy the code below and paste into your HTML document. </p>
<pre>
&lt;button onclick=&quot;document.getElementById('modal-1').style.display='block'&quot;&gt;Click Here&lt;/button&gt;

&lt;div id=&quot;modal-1&quot; class=&quot;modal animate-opacity&quot;&gt;
   &lt;div class=&quot;modal-content&quot;&gt;
      &lt;div class=&quot;modal-inner&quot;&gt;
         &lt;span onclick=&quot;document.getElementById('modal-1').style.display='none'&quot; class=&quot;modal-close&quot;&gt;&amp;times;&lt;/span&gt;
         &lt;h4&gt;Modal Headline&lt;/h4&gt;
         &lt;p&gt;Modal description goes here.&lt;/p&gt;
      &lt;/div&gt; 
   &lt;/div&gt;
&lt;/div&gt;
</pre>
<p>You can add multiple modals. Copy the entire codes and replace all <code>modal-1</code> into <code>modal-2</code> and <code>modal-3</code> &#8230;<br />
	 	</p>
<div class="clear"></div>
<h2>CSS</h2>
<p>Copy the code below and paste into your CSS document. 		 	</p>
<pre>
.modal {
	z-index: 10;
	display: none;
	padding-top: 100px;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.5)
}
.modal-content {
	margin: auto;
	background-color: #fff;
	position: relative;
	padding: 0;
	outline: 0;
	max-width: 600px
}
.modal-inner { padding: 20px 30px; }
.modal-close {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	position: absolute;
	right: 0;
	top: 0;
	background: #ccc;
	padding: 6px 10px;
}
.animate-opacity { animation: opac 0.8s }@keyframes opac{from{opacity:0} to{opacity:1}}
</pre>
<p>These 4 classes would do the job, and the last class, <code>.animate-opacity</code> is the animated effect when modal opens (so it&#8217;s optional). </p>
<p>You can tweak the animation time slower or faster by changing the speed time. It&#8217;s currently 0.8 seconds, <code>opac 0.8s</code>, but change it as you need it. Have fun!<br />
</p>
<div class="clear"></div>
<style>
.modal{z-index:10;display:none;padding-top:100px;position:fixed;left:0;top:0;width:100%;height:100%;overflow:auto;background-color:rgb(0,0,0);background-color:rgba(0,0,0,0.5);margin-left: 0px !important;}
.modal-content{margin:auto;background-color:#fff;position:relative;padding:0;outline:0;max-width:600px}
.modal-inner {padding: 20px 30px;} 
.modal-close{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none; position:absolute;right:0;top:0;     background: #ccc;padding: 6px 10px;}  
.animate-opacity{animation:opac 0.8s}@keyframes opac{from{opacity:0} to{opacity:1}}
button{background:orange;border:none;}
button:hover{background:red;color:#fff;border:none;}
</style><p>The post <a href="https://blog.identitydesign.us/css-only-easy-modal-lightbox-popup-animated/">CSS Only: Easy Modal Lightbox Pop-up (Animated)</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/css-only-easy-modal-lightbox-popup-animated/">CSS Only: Easy Modal Lightbox Pop-up (Animated)</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/css-only-modal-lightbox-pop-up-on-page-load/" rel="bookmark" title="CSS Only: Pop-up Modal Lightbox on Page Load">CSS Only: Pop-up Modal Lightbox on Page Load</a></li>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
<li><a href="https://blog.identitydesign.us/add-copyright-css-wordpress/" rel="bookmark" title="Add a Copyright Text / Info Using CSS on WordPress Websites">Add a Copyright Text / Info Using CSS on WordPress Websites</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/css-only-easy-modal-lightbox-popup-animated/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns</title>
		<link>https://blog.identitydesign.us/how-to-make-bootstrap-nav-top-level-menu-clickable-with-dropdowns/</link>
					<comments>https://blog.identitydesign.us/how-to-make-bootstrap-nav-top-level-menu-clickable-with-dropdowns/#comments</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Tue, 28 Aug 2018 08:01:17 +0000</pubDate>
				<category><![CDATA[backend]]></category>
		<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1035</guid>

					<description><![CDATA[<p>Your bootstrap top level menu will not be clickable when you add more menus under it like sub-navs or dropdowns. There are some How-Tos of adding a snippet of JavaScript or php online to make it work, but it seems to be risky and complicated. Here&#8217;s a simple solution changing 1 word from your Bootstrap [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/how-to-make-bootstrap-nav-top-level-menu-clickable-with-dropdowns/">How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/how-to-make-bootstrap-nav-top-level-menu-clickable-with-dropdowns/">How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/fix-php-upgrade-error-whm-cpanel/" rel="bookmark" title="(Resolved) Fix PHP / MultiPHP Version Upgrade Error in WHM/Cpanel">(Resolved) Fix PHP / MultiPHP Version Upgrade Error in WHM/Cpanel</a></li>
<li><a href="https://blog.identitydesign.us/bootstrap-carousel-slider-transition-speed-time-interval/" rel="bookmark" title="How to Change Bootstrap Carousel Slider Transition Speed Time Interval">How to Change Bootstrap Carousel Slider Transition Speed Time Interval</a></li>
<li><a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/" rel="bookmark" title="How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Your bootstrap top level menu will not be clickable when you add more menus under it like sub-navs or dropdowns. There are some How-Tos of adding a snippet of JavaScript or php online to make it work, but it seems to be risky and complicated.</p>
<p>Here&#8217;s a simple solution changing 1 word from your Bootstrap HTML file:</p>
<pre>&lt;li class=&quot;dropdown&quot; data-dropdown=&quot;dropdown&quot;&gt; 
   &lt;a href=&quot;URL&quot; class=&quot;dropdown-toggle&quot; data-hover=&quot;dropdown&quot;&gt;X&lt;/a&gt; 
   &lt;ul class=&quot;sub-menu dropdown-menu&quot;&gt; 
      &lt;li&gt;&lt;/li&gt; 
   &lt;/ul&gt; 
&lt;/li&gt;</pre>
<p>Change <code>data-toggle</code> to <code>data-hover</code>. Done!</p>
<p>If you use &#8220;Bootstrap-basic&#8221; theme on your WordPress, look for a file called, &#8220;BootstrapBasicMyWalkerNavMenu.php&#8221; under &#8220;inc&#8221; folder. Find the code &#8220;data-toggle&#8221; and replace with &#8220;<strong>data-hover</strong>&#8220;. Isn&#8217;t this super easy!?</p><p>The post <a href="https://blog.identitydesign.us/how-to-make-bootstrap-nav-top-level-menu-clickable-with-dropdowns/">How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/how-to-make-bootstrap-nav-top-level-menu-clickable-with-dropdowns/">How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/fix-php-upgrade-error-whm-cpanel/" rel="bookmark" title="(Resolved) Fix PHP / MultiPHP Version Upgrade Error in WHM/Cpanel">(Resolved) Fix PHP / MultiPHP Version Upgrade Error in WHM/Cpanel</a></li>
<li><a href="https://blog.identitydesign.us/bootstrap-carousel-slider-transition-speed-time-interval/" rel="bookmark" title="How to Change Bootstrap Carousel Slider Transition Speed Time Interval">How to Change Bootstrap Carousel Slider Transition Speed Time Interval</a></li>
<li><a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/" rel="bookmark" title="How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/how-to-make-bootstrap-nav-top-level-menu-clickable-with-dropdowns/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)</title>
		<link>https://blog.identitydesign.us/html-css-ribbon-no-image/</link>
					<comments>https://blog.identitydesign.us/html-css-ribbon-no-image/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Sat, 28 Jul 2018 00:17:43 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=1019</guid>

					<description><![CDATA[<p>Here&#8217;s a simple html/css line that could generate a ribbon background with text. DEMO: CSS Ribbon for Your Website My Ribbon HTML Copy the code below and paste into your HTML document. &#60;div class="ribbon"&#62; &#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#60;span class="ribbon-text"&#62;My Ribbon&#60;/span&#62; &#60;/div&#62; CSS Copy the code below and paste into your CSS document. .ribbon { position: relative; background: blue; [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/html-css-ribbon-no-image/">How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/html-css-ribbon-no-image/">How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/a-simple-way-to-hide-featured-image-inside-post-with-css/" rel="bookmark" title="A Simple Way to Hide Featured Image inside Post with CSS">A Simple Way to Hide Featured Image inside Post with CSS</a></li>
<li><a href="https://blog.identitydesign.us/simple-javascript-redirect-code/" rel="bookmark" title="Simple JavaScript Redirect Code for HTML">Simple JavaScript Redirect Code for HTML</a></li>
<li><a href="https://blog.identitydesign.us/css-make-your-element-absolute-center-vertical-horizontal/" rel="bookmark" title="CSS / HTML: Make Absolute Center (Vertical &#038; Horizontal)">CSS / HTML: Make Absolute Center (Vertical &#038; Horizontal)</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Here&#8217;s a simple html/css line that could generate a ribbon background with text.</p>
<div class="board">
<h2 style="margin-top:0px;text-align:center;">DEMO: CSS Ribbon for Your Website</h2>
<div class="ribbon">
<span class="ribbon-text">My Ribbon</span>
</div>
</div>

<div class="clear"></div>
<h2>HTML</h2>
<p>Copy the code below and paste into your HTML document.	 		 	</p>
<pre>
&lt;div class="ribbon"&gt;
&nbsp&nbsp&nbsp&nbsp&lt;span class="ribbon-text"&gt;My Ribbon&lt;/span&gt;
&lt;/div&gt;
</pre>

<div class="clear"></div>
<h2>CSS</h2>
<p>Copy the code below and paste into your CSS document.</p>
<pre>
.ribbon {
    position: relative;
    background: blue;
    text-align: center;
    z-index: 1;
    width: 240px;
    height: 52px;
    margin: 0 auto;
}
.ribbon-text {
    position: relative;
    display: block;
    font-size: 2em;
    color: white;
 }
.ribbon:before {
    content: '';
    border: 26px solid blue;
    border-left-color: transparent;
    border-left-width: 14px;
    position: absolute;
    top: 0;
    left: -20px;
}
.ribbon:after {
    content: '';
    border: 26px solid blue;
    border-right-color: transparent;
    border-right-width: 21px;
    position: absolute;
    top: 0;
    right: -27px;
}
</pre>
<p>You can tweak around with different colors and size of the ribbon. Have fun!<br />
</p>
<div class="clear"></div>
<style>
.ribbon {
    position: relative;
    background: blue;
    text-align: center;
    z-index: 1;
    width: 240px;
    height: 52px;
    margin: 0 auto;
}
.ribbon-text {
    position: relative;
    display: block;
    font-size: 2em;
    color: white;
 }
.ribbon:before {
    content: '';
    border: 26px solid blue;
    border-left-color: transparent;
    border-left-width: 14px;
    position: absolute;
    top: 0;
    left: -20px;
}
.ribbon:after {
    content: '';
    border: 26px solid blue;
    border-right-color: transparent;
    border-right-width: 21px;
    position: absolute;
    top: 0;
    right: -27px;
}
</style><p>The post <a href="https://blog.identitydesign.us/html-css-ribbon-no-image/">How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/html-css-ribbon-no-image/">How Create a HTML/CSS Ribbon. Simple and Light (None Jpg/Png Image)</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/a-simple-way-to-hide-featured-image-inside-post-with-css/" rel="bookmark" title="A Simple Way to Hide Featured Image inside Post with CSS">A Simple Way to Hide Featured Image inside Post with CSS</a></li>
<li><a href="https://blog.identitydesign.us/simple-javascript-redirect-code/" rel="bookmark" title="Simple JavaScript Redirect Code for HTML">Simple JavaScript Redirect Code for HTML</a></li>
<li><a href="https://blog.identitydesign.us/css-make-your-element-absolute-center-vertical-horizontal/" rel="bookmark" title="CSS / HTML: Make Absolute Center (Vertical &#038; Horizontal)">CSS / HTML: Make Absolute Center (Vertical &#038; Horizontal)</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/html-css-ribbon-no-image/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Force an Anchor Tag Not Clickable with CSS</title>
		<link>https://blog.identitydesign.us/force-the-anchor-tag-not-clickable-with-css/</link>
					<comments>https://blog.identitydesign.us/force-the-anchor-tag-not-clickable-with-css/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Fri, 05 Jan 2018 20:28:26 +0000</pubDate>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Scrap]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=956</guid>

					<description><![CDATA[<p>Yes, it is possible to make your anchors not clickable with simple CSS lines on your website. I know sometimes you developers can&#8217;t change the core HTML codes and only have access to the CSS file. Below is the CSS that does the magic. Make an Anchor Tag Nonclickable with CSS a { pointer-events: none; [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/force-the-anchor-tag-not-clickable-with-css/">Force an Anchor Tag Not Clickable with CSS</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/force-the-anchor-tag-not-clickable-with-css/">Force an Anchor Tag Not Clickable with CSS</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/make-clickable-link-javascript-instead-html-anchor/" rel="bookmark" title="Make Clickable Link with JavaScript instead of HTML Anchor">Make Clickable Link with JavaScript instead of HTML Anchor</a></li>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
<li><a href="https://blog.identitydesign.us/woocommerce-storefront-theme-remove-storefront-woothemes-credits/" rel="bookmark" title="Remove &#8220;Storefront designed by WooThemes&#8221; on Woocommerce Storefront Theme">Remove &#8220;Storefront designed by WooThemes&#8221; on Woocommerce Storefront Theme</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Yes, it is possible to make your anchors not clickable with simple CSS lines on your website. I know sometimes you developers can&#8217;t change the core HTML codes and only have access to the CSS file. Below is the CSS that does the magic.</p>
<h2>Make an Anchor Tag Nonclickable with CSS</h2>

<pre>a {
 pointer-events: none;
 cursor: default;
}
</pre><p>The post <a href="https://blog.identitydesign.us/force-the-anchor-tag-not-clickable-with-css/">Force an Anchor Tag Not Clickable with CSS</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/force-the-anchor-tag-not-clickable-with-css/">Force an Anchor Tag Not Clickable with CSS</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/make-clickable-link-javascript-instead-html-anchor/" rel="bookmark" title="Make Clickable Link with JavaScript instead of HTML Anchor">Make Clickable Link with JavaScript instead of HTML Anchor</a></li>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
<li><a href="https://blog.identitydesign.us/woocommerce-storefront-theme-remove-storefront-woothemes-credits/" rel="bookmark" title="Remove &#8220;Storefront designed by WooThemes&#8221; on Woocommerce Storefront Theme">Remove &#8220;Storefront designed by WooThemes&#8221; on Woocommerce Storefront Theme</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/force-the-anchor-tag-not-clickable-with-css/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Remove Proudly powered by WordPress Theme and Replace with Your Own &#169; Copyright Information</title>
		<link>https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/</link>
					<comments>https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/#comments</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Tue, 04 Oct 2016 20:32:26 +0000</pubDate>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[codes]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=912</guid>

					<description><![CDATA[<p>WordPress Theme users, let&#8217;s remove &#8220;Proudly powered by WordPress&#8221; from the footer of your website. It&#8217;s pretty simple. A line of CSS would do the job. Remove &#8220;Proudly powered by WordPress&#8221; on Twenty Sixteen, Twenty Seventeen, Twenty Nineteen, Twenty Twenty-One Theme Open Up the CSS Editor: (Go to the Backend page -&#62; Appearance -&#62; Editor) [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/">Remove Proudly powered by WordPress Theme and Replace with Your Own © Copyright Information</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/woocommerce-storefront-theme-remove-storefront-woothemes-credits/" rel="bookmark" title="Remove &#8220;Storefront designed by WooThemes&#8221; on Woocommerce Storefront Theme">Remove &#8220;Storefront designed by WooThemes&#8221; on Woocommerce Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/remove-product-description-and-reviews-tabs-woocommerce-storefront-theme/" rel="bookmark" title="Remove Product Description and Reviews Tabs in Woocommerce Storefront Theme">Remove Product Description and Reviews Tabs in Woocommerce Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/" rel="bookmark" title="How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>WordPress Theme users, let&#8217;s remove &#8220;Proudly powered by WordPress&#8221; from the footer of your website. It&#8217;s pretty simple. A line of CSS would do the job.</p>
<h2>Remove &#8220;Proudly powered by WordPress&#8221; on Twenty Sixteen, Twenty Seventeen, Twenty Nineteen, Twenty Twenty-One Theme</h2>
<p>Open Up the CSS Editor:<br />
(Go to the Backend page -&gt; Appearance -&gt; Editor)</p>
<pre>footer .site-info { 
 display: none !important; 
}
footer.site-footer:after {
 content: "© YOUR WEBSITE NAME";
}</pre>
<p>Replace <code>YOUR WEBSITE NAME</code> as you like. </p>
<pre>footer.site-footer:after {
 content: "© YOUR WEBSITE NAME";
 margin: auto;
}</pre>
<p>If you want to center align the Copyright line, add <code>margin:auto</code> like below:</p>
<!-- Widget Shortcode --><div id="custom_html-2" class="widget_text widget widget_custom_html widget-shortcode area-arbitrary "><div class="textwidget custom-html-widget"><script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8255226778912403"
     crossorigin="anonymous"></script>
<!-- iiiji_CTA_468 -->
<ins class="adsbygoogle"
     style="display:inline-block;width:468px;height:60px"
     data-ad-client="ca-pub-8255226778912403"
     data-ad-slot="6320733927"></ins>
<script>
     (adsbygoogle = window.adsbygoogle || []).push({});
</script></div></div><!-- /Widget Shortcode -->
<h2 class="mtop80">Remove &#8220;Powered by WordPress&#8221; on Twenty Twenty Theme</h2>
<p>Open Up the CSS Editor:<br />
(Go to the Backend page -&gt; Appearance -&gt; Editor)</p>
<pre>.powered-by-wordpress {
    display: none;
}</pre>
<!-- Widget Shortcode --><div id="custom_html-2" class="widget_text widget widget_custom_html widget-shortcode area-arbitrary "><div class="textwidget custom-html-widget"><script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8255226778912403"
     crossorigin="anonymous"></script>
<!-- iiiji_CTA_468 -->
<ins class="adsbygoogle"
     style="display:inline-block;width:468px;height:60px"
     data-ad-client="ca-pub-8255226778912403"
     data-ad-slot="6320733927"></ins>
<script>
     (adsbygoogle = window.adsbygoogle || []).push({});
</script></div></div><!-- /Widget Shortcode -->
<h2 class="mtop80">Remove &#8220;Proudly Powered by WordPress&#8221; on Twenty Twenty-Two Theme</h2>
<p>Open Up the CSS Editor:<br />
(Go to the Backend page -&gt; Appearance -&gt; Editor)</p>
<pre>.has-text-align-right {
    display: none;
}</pre>
<p>Now it&#8217;s all good!</p><p>The post <a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/">Remove Proudly powered by WordPress Theme and Replace with Your Own © Copyright Information</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/woocommerce-storefront-theme-remove-storefront-woothemes-credits/" rel="bookmark" title="Remove &#8220;Storefront designed by WooThemes&#8221; on Woocommerce Storefront Theme">Remove &#8220;Storefront designed by WooThemes&#8221; on Woocommerce Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/remove-product-description-and-reviews-tabs-woocommerce-storefront-theme/" rel="bookmark" title="Remove Product Description and Reviews Tabs in Woocommerce Storefront Theme">Remove Product Description and Reviews Tabs in Woocommerce Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/how-to-remove-copyright-text-in-wp-bootstrap-starter-theme/" rel="bookmark" title="How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template">How to Remove &#8220;Bootstrap WordPress Theme&#8221; on WP Bootstrap Starter Template</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/feed/</wfw:commentRss>
			<slash:comments>6</slash:comments>
		
		
			</item>
		<item>
		<title>Remove &#8220;Storefront designed by WooThemes&#8221; on Woocommerce Storefront Theme</title>
		<link>https://blog.identitydesign.us/woocommerce-storefront-theme-remove-storefront-woothemes-credits/</link>
					<comments>https://blog.identitydesign.us/woocommerce-storefront-theme-remove-storefront-woothemes-credits/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Thu, 08 Sep 2016 00:06:22 +0000</pubDate>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[codes]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Great-Stuff]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[woocommerce]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=877</guid>

					<description><![CDATA[<p>Woocommerce offers a well designed free template for everyone called, the Storefront. By adding the CSS codes below, you can remove the credits, &#8220;Storefront designed by WooThemes&#8221; without editing or deleting a line of the core programmings. So instead of deleting anything, you are just hiding the text actually. So it&#8217;s a risk free, easy [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/woocommerce-storefront-theme-remove-storefront-woothemes-credits/">Remove “Storefront designed by WooThemes” on Woocommerce Storefront Theme</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/woocommerce-storefront-theme-remove-storefront-woothemes-credits/">Remove &#8220;Storefront designed by WooThemes&#8221; on Woocommerce Storefront Theme</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-product-description-and-reviews-tabs-woocommerce-storefront-theme/" rel="bookmark" title="Remove Product Description and Reviews Tabs in Woocommerce Storefront Theme">Remove Product Description and Reviews Tabs in Woocommerce Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p><a href="http://sleekycase.com/3d-custom-photo-design-matte-case/" rel="attachment wp-att-940" target="_blank"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2014/06/banner-web.jpg" alt="Get Custom Phone Case Now!" width="940" height="492" class="alignnone size-full wp-image-940" srcset="https://blog.identitydesign.us/wp-content/uploads/2014/06/banner-web.jpg 940w, https://blog.identitydesign.us/wp-content/uploads/2014/06/banner-web-300x157.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2014/06/banner-web-768x402.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2014/06/banner-web-624x327.jpg 624w" sizes="auto, (max-width: 940px) 100vw, 940px" /></a></p>
<p>Woocommerce offers a well designed free template for everyone called, the <strong>Storefront</strong>. By adding the CSS codes below, you can remove the credits, &#8220;Storefront designed by WooThemes&#8221; without editing or deleting a line of the core programmings. So instead of deleting anything, you are just hiding the text actually. So it&#8217;s a risk free, easy and fast!</p>
<h2>Remove &#8220;Storefront designed by WooThemes&#8221; Credits</h2>
<p>Place the CSS line on the WordPress backend where CSS is located:<br />
(Go to the Backend page -&gt; Appearance -&gt; Editor)</p>
<pre>footer .site-info { 
 display: none !important; 
}
footer .col-full:after { 
 content: "© YOUR COMPANY NAME";
 font-size: 15px;
 color: #777;
 line-height: 140%;
 text-align: center;
 display: block;
 margin: 20px auto;
}</pre>
<p>Now you&#8217;ll see the line, &#8220;Storefront designed by WooThemes&#8221; is gone. Feel free to edit the <code>font-size</code> and <code>color</code> of your own.</p><p>The post <a href="https://blog.identitydesign.us/woocommerce-storefront-theme-remove-storefront-woothemes-credits/">Remove “Storefront designed by WooThemes” on Woocommerce Storefront Theme</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/woocommerce-storefront-theme-remove-storefront-woothemes-credits/">Remove &#8220;Storefront designed by WooThemes&#8221; on Woocommerce Storefront Theme</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-product-description-and-reviews-tabs-woocommerce-storefront-theme/" rel="bookmark" title="Remove Product Description and Reviews Tabs in Woocommerce Storefront Theme">Remove Product Description and Reviews Tabs in Woocommerce Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/woocommerce-storefront-theme-remove-storefront-woothemes-credits/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Make Clickable Link with JavaScript instead of HTML Anchor</title>
		<link>https://blog.identitydesign.us/make-clickable-link-javascript-instead-html-anchor/</link>
					<comments>https://blog.identitydesign.us/make-clickable-link-javascript-instead-html-anchor/#comments</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Tue, 23 Aug 2016 00:08:29 +0000</pubDate>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[codes]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=871</guid>

					<description><![CDATA[<p>Sometimes you just can&#8217;t edit the HTML but still need to make the div clickable. Here&#8217;s how with using JavaScript. *Jquery needs to be installed. &#60;script&#62;  $('.YOUR-CLASS-NAME').each(function() { var link = $(this).html(); $(this).contents().wrap('&#60;a href="YOUR-URL-LINK"&#62;&#60;/a&#62;'); }); &#60;/script&#62; You need to replace .YOUR-CLASS-NAME with your div&#8217;s class and replace "YOUR-URL-LINK" with your destination link. Pretty simple, heh?</p>
<p>The post <a href="https://blog.identitydesign.us/make-clickable-link-javascript-instead-html-anchor/">Make Clickable Link with JavaScript instead of HTML Anchor</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/make-clickable-link-javascript-instead-html-anchor/">Make Clickable Link with JavaScript instead of HTML Anchor</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/simple-javascript-redirect-code/" rel="bookmark" title="Simple JavaScript Redirect Code for HTML">Simple JavaScript Redirect Code for HTML</a></li>
<li><a href="https://blog.identitydesign.us/force-the-anchor-tag-not-clickable-with-css/" rel="bookmark" title="Force an Anchor Tag Not Clickable with CSS">Force an Anchor Tag Not Clickable with CSS</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Sometimes you just can&#8217;t edit the HTML but still need to make the <code>div</code> clickable. Here&#8217;s how with using JavaScript. *Jquery needs to be installed.</p>
<pre>&lt;script&gt; 
$('.YOUR-CLASS-NAME').each(function() {
var link = $(this).html();
$(this).contents().wrap('&lt;a href="YOUR-URL-LINK"&gt;&lt;/a&gt;');
});
&lt;/script&gt;</pre>
<p>You need to replace <code>.YOUR-CLASS-NAME</code> with your div&#8217;s class and replace <code>"YOUR-URL-LINK"</code> with your destination link. Pretty simple, heh?</p><p>The post <a href="https://blog.identitydesign.us/make-clickable-link-javascript-instead-html-anchor/">Make Clickable Link with JavaScript instead of HTML Anchor</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/make-clickable-link-javascript-instead-html-anchor/">Make Clickable Link with JavaScript instead of HTML Anchor</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/simple-javascript-redirect-code/" rel="bookmark" title="Simple JavaScript Redirect Code for HTML">Simple JavaScript Redirect Code for HTML</a></li>
<li><a href="https://blog.identitydesign.us/force-the-anchor-tag-not-clickable-with-css/" rel="bookmark" title="Force an Anchor Tag Not Clickable with CSS">Force an Anchor Tag Not Clickable with CSS</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/make-clickable-link-javascript-instead-html-anchor/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Remove automatic &#060;BR&#062; &#038; &#060;P&#062; tags in WordPress</title>
		<link>https://blog.identitydesign.us/remove-automatic-and-tags-in-wordpress-2/</link>
					<comments>https://blog.identitydesign.us/remove-automatic-and-tags-in-wordpress-2/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Mon, 20 Jun 2016 23:19:20 +0000</pubDate>
				<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/remove-automatic-and-tags-in-wordpress-2/</guid>

					<description><![CDATA[<p>In general rules in HTML, &#8216;Return/Enter&#8217; won&#8217;t line break your paragraph as you expected like in Microsoft Words. To get the line break, you have to put the code &#60;BR&#62;. But, default setting in WordPress does the line break for you by hitting &#8216;Return/Enter&#8217; button on the keyboard without the &#60;BR&#62; code. It&#8217;s annoying sometimes [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/remove-automatic-and-tags-in-wordpress-2/">Remove automatic <BR> & <P> tags in WordPress</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/remove-automatic-and-tags-in-wordpress-2/">Remove automatic &lt;BR&gt; &amp; &lt;P&gt; tags in WordPress</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-automatic-and-tags-in-wordpress/" rel="bookmark" title="Remove Automatic and Tags in WordPress">Remove Automatic and Tags in WordPress</a></li>
<li><a href="https://blog.identitydesign.us/remove-product-description-and-reviews-tabs-woocommerce-storefront-theme/" rel="bookmark" title="Remove Product Description and Reviews Tabs in Woocommerce Storefront Theme">Remove Product Description and Reviews Tabs in Woocommerce Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>In general rules in HTML, &#8216;Return/Enter&#8217; won&#8217;t line break your paragraph as you expected like in Microsoft Words. To get the line break, you have to put the code &lt;BR&gt;. But, default setting in WordPress does the line break for you by hitting &#8216;Return/Enter&#8217; button on the keyboard without the &lt;BR&gt; code. It&#8217;s annoying sometimes because we are not used to it. </p>
<p>It&#8217;s really easy to turn automated &lt;BR&gt; &amp; &lt;P&gt; off on your WordPress. Go to Admin -&gt; Appearance -&gt; Editor -&gt; function.php and copy &amp; paste the following code below at very end.</p>
<h2>Remove the Automatic &lt;BR&gt; &amp; &lt;P&gt; Tags</h2>
<pre>
remove_filter( 'the_content', 'wpautop' );
remove_filter( 'the_excerpt', 'wpautop' );
</pre>

<div class="clear"></div><p>The post <a href="https://blog.identitydesign.us/remove-automatic-and-tags-in-wordpress-2/">Remove automatic <BR> & <P> tags in WordPress</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/remove-automatic-and-tags-in-wordpress-2/">Remove automatic &lt;BR&gt; &amp; &lt;P&gt; tags in WordPress</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-automatic-and-tags-in-wordpress/" rel="bookmark" title="Remove Automatic and Tags in WordPress">Remove Automatic and Tags in WordPress</a></li>
<li><a href="https://blog.identitydesign.us/remove-product-description-and-reviews-tabs-woocommerce-storefront-theme/" rel="bookmark" title="Remove Product Description and Reviews Tabs in Woocommerce Storefront Theme">Remove Product Description and Reviews Tabs in Woocommerce Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/remove-automatic-and-tags-in-wordpress-2/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Remove Automatic and Tags in WordPress</title>
		<link>https://blog.identitydesign.us/remove-automatic-and-tags-in-wordpress/</link>
					<comments>https://blog.identitydesign.us/remove-automatic-and-tags-in-wordpress/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Wed, 01 Jun 2016 00:10:49 +0000</pubDate>
				<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/remove-automatic-and-tags-in-wordpress/</guid>

					<description><![CDATA[<p>The default setting on WordPress, your text will be wrapped around the code and your &#8216;Return/Enter&#8217; will line break your sentences.  This might be annoying to you because you don&#8217;t need that automated function.  It&#8217;s really easy to turn the automated , off on your WordPress. Go to Admin -&#62; Appearance -&#62; Editor -&#62; functions.php (or [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/remove-automatic-and-tags-in-wordpress/">Remove Automatic and Tags in WordPress</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/remove-automatic-and-tags-in-wordpress/">Remove Automatic and Tags in WordPress</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-automatic-and-tags-in-wordpress-2/" rel="bookmark" title="Remove automatic &lt;BR&gt; &amp; &lt;P&gt; tags in WordPress">Remove automatic &lt;BR&gt; &amp; &lt;P&gt; tags in WordPress</a></li>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
<li><a href="https://blog.identitydesign.us/remove-product-description-and-reviews-tabs-woocommerce-storefront-theme/" rel="bookmark" title="Remove Product Description and Reviews Tabs in Woocommerce Storefront Theme">Remove Product Description and Reviews Tabs in Woocommerce Storefront Theme</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>The default setting on WordPress, your text will be wrapped around the code <code></p>
<p></code> and your &#8216;Return/Enter&#8217; will line break your sentences. </p>
<p>This might be annoying to you because you don&#8217;t need that automated function. </p>
<p>It&#8217;s really easy to turn the automated <code></p>
<p></code>, <code><br /></code> off on your WordPress. Go to Admin -&gt; Appearance -&gt; Editor -&gt; functions.php (or Theme Functions) and copy &amp; paste the code very end of the file.</p>
<h2>Stop Paragraph Tags and Line Break Filters</h2>
<p>Copy this code and paste it very end of your theme functions.php file.</p>
<pre>
remove_filter( 'the_content', 'wpautop' );
remove_filter( 'the_excerpt', 'wpautop' );
</pre>

<div class="clear"></div><p>The post <a href="https://blog.identitydesign.us/remove-automatic-and-tags-in-wordpress/">Remove Automatic and Tags in WordPress</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/remove-automatic-and-tags-in-wordpress/">Remove Automatic and Tags in WordPress</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/remove-automatic-and-tags-in-wordpress-2/" rel="bookmark" title="Remove automatic &lt;BR&gt; &amp; &lt;P&gt; tags in WordPress">Remove automatic &lt;BR&gt; &amp; &lt;P&gt; tags in WordPress</a></li>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
<li><a href="https://blog.identitydesign.us/remove-product-description-and-reviews-tabs-woocommerce-storefront-theme/" rel="bookmark" title="Remove Product Description and Reviews Tabs in Woocommerce Storefront Theme">Remove Product Description and Reviews Tabs in Woocommerce Storefront Theme</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/remove-automatic-and-tags-in-wordpress/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>CSS Vertical Align Center</title>
		<link>https://blog.identitydesign.us/css-vertical-align-center/</link>
					<comments>https://blog.identitydesign.us/css-vertical-align-center/#comments</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Wed, 16 Mar 2016 21:50:42 +0000</pubDate>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[codes]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[demo]]></category>
		<category><![CDATA[Great-Stuff]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=815</guid>

					<description><![CDATA[<p>Let&#8217;s  vertical align your design elements with CSS and HTML! Despite how popular people search for this method, vertical centering your contents seems not easy than you think for beginners. Below method could be the one of the simplest ways you can make it happen. DEMO: How to Vertically Align Middle with CSS Vertical Align Demo [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/css-vertical-align-center/">CSS Vertical Align Center</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/css-vertical-align-center/">CSS Vertical Align Center</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/table-column-width-setting-css/" rel="bookmark" title="CSS: A Simple Way to Set the Table Column Width">CSS: A Simple Way to Set the Table Column Width</a></li>
<li><a href="https://blog.identitydesign.us/circled-number-lists/" rel="bookmark" title="Circled Number Lists (HTML/CSS)">Circled Number Lists (HTML/CSS)</a></li>
<li><a href="https://blog.identitydesign.us/woocommerce-storefront-theme-remove-storefront-woothemes-credits/" rel="bookmark" title="Remove &#8220;Storefront designed by WooThemes&#8221; on Woocommerce Storefront Theme">Remove &#8220;Storefront designed by WooThemes&#8221; on Woocommerce Storefront Theme</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Let&#8217;s  vertical align your design elements with CSS and HTML! Despite how popular people search for this method, vertical centering your contents seems not easy than you think for beginners. Below method could be the one of the simplest ways you can make it happen.</p>
<h2>DEMO: How to Vertically Align Middle with CSS</h2>
<div class="board">
<h3>Vertical Align Demo</h3>
<div class="text-center">
<div class="div-outer">
<div class="div-inner">
<h4>Box One</h4>
<p>Vertical Align Center</p>
</div>
</div>
<div class="div-outer">
<div class="div-inner">
<h4>Box Two</h4>
<p>Vertical Align Middle</p>
</div>
</div>
<div class="div-outer">
<div class="div-inner">
<h4>Box Three</h4>
<p>Vertical Align Center</p>
</div>
</div>
</div>
</div>

<div class="clear"></div>
<h2>HTML</h2>
<p>Copy the code below and paste into your HTML document.	 		 	</p>
<pre>&lt;div class="div-outer"&gt;
    &lt;div class="div-inner"&gt;
    &lt;h4&gt;Box One&lt;/h4&gt;
    &lt;p&gt;Vertical Align Center&lt;/p&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;div class="div-outer"&gt;
    &lt;div class="div-inner"&gt;
    &lt;h4&gt;Box One&lt;/h4&gt;
    &lt;p&gt;Vertical Align Center&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div class="div-outer"&gt;
    &lt;div class="div-inner"&gt;
    &lt;h4&gt;Box One&lt;/h4&gt;
    &lt;p&gt;Vertical Align Center&lt;/p&gt;
    &lt;/div&gt;
&lt;/div&gt;
</pre>
<p>You can tweak around with different colors of the boxes or texts. Have fun!<br />
	 	</p>
<div class="clear"></div>
<h2>CSS</h2>
<p>Copy the code below and paste into your CSS document. You need to make the same <code>min-height</code> and <code>line-height</code> on the outer part of the div. In my case, I have <code>200px</code>.</p>
<pre>.div-outer {
    min-height: 200px;
    line-height: 200px;
}
.div-inner {
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
}
</pre>
<p>In case if this css isn&#8217;t working, you can try as below.</p>
<pre>.div-outer {
    height: 80vh;
    position: relative;
}
.div-inner {margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
</pre>
<p>You can tweak around with different colors of the boxes or texts. Have fun!<br />
</p>
<div class="clear"></div>
<style>
h3 { text-align:center; color:#fe862c; margin-bottom:20px; }
.div-outer {
    padding: 18px;	 	
    min-height: 200px;	 	
    line-height: 200px;	 	
    width: 25%;	 
    display: inline-block;	 
    background:#fe862c;	 
}	 	
.div-outer h4, .div-outer p { color:#fff; }	 	
.div-inner {	 
    display: inline-block;	 
    vertical-align: middle;	 	
    line-height: normal;	 	
}	 	
</style><p>The post <a href="https://blog.identitydesign.us/css-vertical-align-center/">CSS Vertical Align Center</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/css-vertical-align-center/">CSS Vertical Align Center</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/table-column-width-setting-css/" rel="bookmark" title="CSS: A Simple Way to Set the Table Column Width">CSS: A Simple Way to Set the Table Column Width</a></li>
<li><a href="https://blog.identitydesign.us/circled-number-lists/" rel="bookmark" title="Circled Number Lists (HTML/CSS)">Circled Number Lists (HTML/CSS)</a></li>
<li><a href="https://blog.identitydesign.us/woocommerce-storefront-theme-remove-storefront-woothemes-credits/" rel="bookmark" title="Remove &#8220;Storefront designed by WooThemes&#8221; on Woocommerce Storefront Theme">Remove &#8220;Storefront designed by WooThemes&#8221; on Woocommerce Storefront Theme</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/css-vertical-align-center/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Remove Product Description and Reviews Tabs in Woocommerce Storefront Theme</title>
		<link>https://blog.identitydesign.us/remove-product-description-and-reviews-tabs-woocommerce-storefront-theme/</link>
					<comments>https://blog.identitydesign.us/remove-product-description-and-reviews-tabs-woocommerce-storefront-theme/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Thu, 21 Jan 2016 00:02:54 +0000</pubDate>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[codes]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[Great-Stuff]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[woocommerce]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=904</guid>

					<description><![CDATA[<p>Wocommerce offers the tabs: &#8220;Product Description&#8221;, &#8220;Reviews and/or &#8220;Additional Information&#8221; in the product detail page. Let&#8217;s find a way to remove or disable the tabs while you are using in the &#8220;Storefront&#8221; theme. Remove &#8220;Product Description&#8221;, &#8220;Reviews&#8221; and &#8220;Additional Information&#8221; Tabs Go to the backend -&#62; Appearance -&#62; Editor -&#62; Find &#8220;storefront-functions.php&#8221; on the right. [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/remove-product-description-and-reviews-tabs-woocommerce-storefront-theme/">Remove Product Description and Reviews Tabs in Woocommerce Storefront Theme</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/remove-product-description-and-reviews-tabs-woocommerce-storefront-theme/">Remove Product Description and Reviews Tabs in Woocommerce Storefront Theme</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/woocommerce-storefront-theme-remove-storefront-woothemes-credits/" rel="bookmark" title="Remove &#8220;Storefront designed by WooThemes&#8221; on Woocommerce Storefront Theme">Remove &#8220;Storefront designed by WooThemes&#8221; on Woocommerce Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>Wocommerce offers the tabs: &#8220;Product Description&#8221;, &#8220;Reviews and/or &#8220;Additional Information&#8221; in the product detail page. Let&#8217;s find a way to remove or disable the tabs while you are using in the &#8220;Storefront&#8221; theme.</p>
<h2>Remove &#8220;Product Description&#8221;, &#8220;Reviews&#8221; and &#8220;Additional Information&#8221; Tabs</h2>
<p>Go to the backend -&gt; Appearance -&gt; Editor -&gt; Find &#8220;storefront-functions.php&#8221; on the right. Input below code in the very bottom. &#8220;Update File&#8221; after adding the codes.</p>
<pre>
add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );

function woo_remove_product_tabs( $tabs ) {

unset( $tabs['description'] ); // Remove the description tab
unset( $tabs['reviews'] ); // Remove the reviews tab
unset( $tabs['additional_information'] ); // Remove the additional information tab

return $tabs;

}</pre>
<p>If you wish to keep one or two of the three tabs, just remove the corresponding line from the codes. Enjoy woocommerce!</p><p>The post <a href="https://blog.identitydesign.us/remove-product-description-and-reviews-tabs-woocommerce-storefront-theme/">Remove Product Description and Reviews Tabs in Woocommerce Storefront Theme</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/remove-product-description-and-reviews-tabs-woocommerce-storefront-theme/">Remove Product Description and Reviews Tabs in Woocommerce Storefront Theme</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/woocommerce-storefront-theme-remove-storefront-woothemes-credits/" rel="bookmark" title="Remove &#8220;Storefront designed by WooThemes&#8221; on Woocommerce Storefront Theme">Remove &#8220;Storefront designed by WooThemes&#8221; on Woocommerce Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
<li><a href="https://blog.identitydesign.us/remove-proudly-powered-by-wordpress-on-wordpress-twenty-sixteen-theme-replace-copyright/" rel="bookmark" title="Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information">Remove Proudly powered by WordPress Theme and Replace with Your Own &copy; Copyright Information</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/remove-product-description-and-reviews-tabs-woocommerce-storefront-theme/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Resolved! Loading Your Google Fonts Over https (SSL) Sites</title>
		<link>https://blog.identitydesign.us/loading-webfonts-https-ssl/</link>
					<comments>https://blog.identitydesign.us/loading-webfonts-https-ssl/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Wed, 06 Jan 2016 01:58:25 +0000</pubDate>
				<category><![CDATA[Fonts]]></category>
		<category><![CDATA[Google and SEO]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[characters]]></category>
		<category><![CDATA[codes]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Font]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Great-Stuff]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[Type]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=789</guid>

					<description><![CDATA[<p>I couldn&#8217;t believe how amazingly simple it was! I was searching for days and nights how to make my google fonts properly load over on my WordPress https (SSL) site. Here&#8217;s the basic story. I&#8217;m running an e-Commerce store with a Secure Sockets Layer installed on the domain. I created the logo with &#8220;La Belle [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/loading-webfonts-https-ssl/">Resolved! Loading Your Google Fonts Over https (SSL) Sites</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/loading-webfonts-https-ssl/">Resolved! Loading Your Google Fonts Over https (SSL) Sites</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/responsive-google-adsense/" rel="bookmark" title="Responsive Google Adsense is Easy!">Responsive Google Adsense is Easy!</a></li>
<li><a href="https://blog.identitydesign.us/css-vertical-align-center/" rel="bookmark" title="CSS Vertical Align Center">CSS Vertical Align Center</a></li>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>I couldn&#8217;t believe how amazingly simple it was! I was searching for days and nights how to make my google fonts properly load over on my WordPress https (SSL) site.</p>
<p>Here&#8217;s the basic story. I&#8217;m running an e-Commerce store with a Secure Sockets Layer installed on the domain. I created the logo with &#8220;La Belle Aurore&#8221; font from Google. When customers pay for their purchase, they have to land on the cart page showing https. My logo won&#8217;t be properly showing when my customer uses IE (Internet Explorer 11) browsers or my Safari from iPhones, so I really had resolve this issue.</p>
<p>I&#8217;ve seen some people trying to resolve the issue by creating weird code in the .htaccess file or tweaking the .function file in WordPress theme. I&#8217;ve tried it, but none of them actually worked for me.</p>
<p>Ta-Dah! It was simpler than I thought. I deleted the <code>http:</code> part on my CSS file, and it worked like magic! So <strong>DO</strong> &#8220;//fonts.googleapis.com/css?family=XXX&#8221;, <strong>NOT</strong> &#8220;http://fonts.googleapis.com/css?family=XXX&#8221;</p>
<pre>
@import url(//fonts.googleapis.com/css?family=NAME_OF_YOUR_FONT_FAMILY);
</pre>
<p>I used &#8220;La Belle Aurore&#8221; font on my site, so here&#8217;s what I have. <code>@import url(//fonts.googleapis.com/css?family=La+Belle+Aurore);</code> I hope this method save your time as well. Good luck!</p><p>The post <a href="https://blog.identitydesign.us/loading-webfonts-https-ssl/">Resolved! Loading Your Google Fonts Over https (SSL) Sites</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/loading-webfonts-https-ssl/">Resolved! Loading Your Google Fonts Over https (SSL) Sites</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/responsive-google-adsense/" rel="bookmark" title="Responsive Google Adsense is Easy!">Responsive Google Adsense is Easy!</a></li>
<li><a href="https://blog.identitydesign.us/css-vertical-align-center/" rel="bookmark" title="CSS Vertical Align Center">CSS Vertical Align Center</a></li>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/loading-webfonts-https-ssl/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Quick Start Guide to MailChimp for WordPress</title>
		<link>https://blog.identitydesign.us/howto-mailchimp-for-wordpress/</link>
					<comments>https://blog.identitydesign.us/howto-mailchimp-for-wordpress/#comments</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Mon, 13 Oct 2014 19:11:30 +0000</pubDate>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[Great-Stuff]]></category>
		<category><![CDATA[Resource]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=636</guid>

					<description><![CDATA[<p>This post will be a quick start guide to MailChimp for WordPress plugin. You might use it to collect massive email data from the visitors of your website in order to send a blast of email for your personal or commercial needs. For beginners, MailChimp is a great place to start with your email campaign [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/howto-mailchimp-for-wordpress/">Quick Start Guide to MailChimp for WordPress</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/howto-mailchimp-for-wordpress/">Quick Start Guide to MailChimp for WordPress</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/migrating-joomla-to-wordpress/" rel="bookmark" title="Migrating Joomla to WordPress">Migrating Joomla to WordPress</a></li>
<li><a href="https://blog.identitydesign.us/wordpress-appearing-weird-characterscode/" rel="bookmark" title="WordPress Appearing Strange Weird Characters / Codes">WordPress Appearing Strange Weird Characters / Codes</a></li>
<li><a href="https://blog.identitydesign.us/freebies-christmas-responsive-email-template-business-htmlcss/" rel="bookmark" title="Freebies: Christmas Responsive Email Template for Business (HTML/CSS)">Freebies: Christmas Responsive Email Template for Business (HTML/CSS)</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>This post will be a quick start guide to MailChimp for WordPress plugin. You might use it to collect massive email data from the visitors of your website in order to send a blast of email for your personal or commercial needs. For beginners, MailChimp is a great place to start with your email campaign where that is available to &#8220;send 12,000 emails to 2,000 subscribers for free&#8221;. </p>
<ul class="dotted-600">
<li>
<div class="numbering">1</div>
<p>Download the MailChimp for WordPress Plugin. https://wordpress.org/plugins/mailchimp-for-wp/ or go to your WordPress Admin -> Plugins -> Add New -> (Search for) MailChimp for WordPress -> Download &#038; Activate.</li>
<li>
<div class="numbering">2</div>
<p>Sign up MailChimp website for free. http://mailchimp.com/</li>
<li>
<div class="numbering">3</div>
<p>Create and name your list. Go to the &#8216;List&#8217; menu on the sidebar. Create a list.</li>
<li>
<div class="numbering">4</div>
<p>Go to your name at the top of the sidebar and select &#8216;Account&#8217;.
</li>
<li>
<div class="numbering">5</div>
<p>Create API Key. On the top menu click &#8216;Extras&#8217; -> API keys -> &#8216;Create A Key&#8217;</li>
<li>
<div class="numbering">6</div>
<p>Copy the API Key you just created and Paste it onto your &#8216;MailChimp for WP&#8217; (your WordPress Admin -> MailChimp for WordPress -> MailChimp Settings) then &#8216;Save Changes&#8217;</li>
<li>
<div class="numbering">7</div>
<p>Check and make sure you see &#8216;CONNECTED&#8217; sign on &#8216;MailChimp API Settings&#8217;. Click on the button -&#8216;Renew MailChimp lists&#8217;</li>
<li>
<div class="numbering">8</div>
<p>Go to the admin -> &#8216;MailChimp for WP&#8217; -> &#8216;Checkboxes&#8217; and check on the &#8216;MailChimp Lists&#8217; box and save.</li>
<li>
<div class="numbering">9</div>
<p>Go to the admin -> &#8216;MailChimp for WP&#8217; -> &#8216;Forms&#8217;and check on the &#8216;Lists this form subscribes to&#8217; box and save.
</li>
<li>
<div class="numbering">10</div>
<p>On the &#8216;Form&#8217; setting page, copy the form shortcode below &#8216;Form mark-up&#8217; and paste into any posts or pages you want to show your subscriber form, or you can use a MailChimp form widget to subscribe emails. (For widget users, go to the admin -> drag and drop &#8216;MailChimp Sign-Up Form&#8217; to your widget sidebar.</li>
<p><a href="https://blog.identitydesign.us/wp-content/uploads/2014/10/Screen-Shot-2014-10-13-at-12.37.18-AM.jpg"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2014/10/Screen-Shot-2014-10-13-at-12.37.18-AM.jpg" alt="Screen Shot 2014-10-13 at 12.37.18 AM" width="521" height="129" class="alignnone size-full wp-image-637" srcset="https://blog.identitydesign.us/wp-content/uploads/2014/10/Screen-Shot-2014-10-13-at-12.37.18-AM.jpg 521w, https://blog.identitydesign.us/wp-content/uploads/2014/10/Screen-Shot-2014-10-13-at-12.37.18-AM-300x74.jpg 300w" sizes="auto, (max-width: 521px) 100vw, 521px" /></a></p>
<li>
<div class="numbering">11</div>
<p>Test your email. Once you actually test subscribing with your email, you would get a successful message &#8220;Thank you, your sign-up request was successful! Please check your e-mail inbox.&#8221;, but if miss any steps from above, you might see a message &#8220;oops. Something went wrong. Please try again later.&#8221;</li>
</ul>
<p>Enjoy the MailChimp for WordPress plugin / widget!</p><p>The post <a href="https://blog.identitydesign.us/howto-mailchimp-for-wordpress/">Quick Start Guide to MailChimp for WordPress</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/howto-mailchimp-for-wordpress/">Quick Start Guide to MailChimp for WordPress</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/migrating-joomla-to-wordpress/" rel="bookmark" title="Migrating Joomla to WordPress">Migrating Joomla to WordPress</a></li>
<li><a href="https://blog.identitydesign.us/wordpress-appearing-weird-characterscode/" rel="bookmark" title="WordPress Appearing Strange Weird Characters / Codes">WordPress Appearing Strange Weird Characters / Codes</a></li>
<li><a href="https://blog.identitydesign.us/freebies-christmas-responsive-email-template-business-htmlcss/" rel="bookmark" title="Freebies: Christmas Responsive Email Template for Business (HTML/CSS)">Freebies: Christmas Responsive Email Template for Business (HTML/CSS)</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/howto-mailchimp-for-wordpress/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Responsive Google Adsense is Easy!</title>
		<link>https://blog.identitydesign.us/responsive-google-adsense/</link>
					<comments>https://blog.identitydesign.us/responsive-google-adsense/#comments</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Wed, 24 Sep 2014 21:42:51 +0000</pubDate>
				<category><![CDATA[Google and SEO]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Pixels]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Great-Stuff]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Responsive]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=584</guid>

					<description><![CDATA[<p>We are facing a big transition in web design. In recent days, majority of well developed websites are made in responsive websites. Responsive design is the development responding to the environment based on screen size of a device. That being said the content elements must evolve to meet the technology as millions of bloggers are [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/responsive-google-adsense/">Responsive Google Adsense is Easy!</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/responsive-google-adsense/">Responsive Google Adsense is Easy!</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/loading-webfonts-https-ssl/" rel="bookmark" title="Resolved! Loading Your Google Fonts Over https (SSL) Sites">Resolved! Loading Your Google Fonts Over https (SSL) Sites</a></li>
<li><a href="https://blog.identitydesign.us/how-to-make-bootstrap-nav-top-level-menu-clickable-with-dropdowns/" rel="bookmark" title="How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns">How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns</a></li>
<li><a href="https://blog.identitydesign.us/no-programming-needed-use-javascript-to-load-header-and-footer-templates-works-just-like-php-include/" rel="bookmark" title="(No Programming) Use JavaScript to Load Header and Footer Templates. Works Just Like PHP Include">(No Programming) Use JavaScript to Load Header and Footer Templates. Works Just Like PHP Include</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>We are facing a big transition in web design. In recent days, majority of well developed websites are made in responsive websites. Responsive design is the development responding to the environment based on screen size of a device. That being said the content elements must evolve to meet the technology as millions of bloggers are using Google Adsense technology to monetize their content.</p>
<p>Below is the HOW-TO guide to tweak the current Google Adsense code with the new responsive Google Adsense banners on your site. You don&#8217;t need to have a deep understanding of it&#8217;s frame work. Here&#8217;s an easy way to make it happen.</p>
<p>Our DEMO is here. Just look at the header section of this site. Do you see a wide horizontal banner (728 px x 90 px)? Try resize the browser to make it smaller and reload the page. Try even smaller like you are using a mobile and reload the page. Do you see the size of the ad is changing as it&#8217;s responding?</p>
<p>Let&#8217;s first take a look at your current Google Adsense Code below. You can get this code from <a href="https://www.google.com/adsense/" target="_blank">Google Adsense Site</a> &rarr; My ads (top menu) &rarr; &#8220;Get Code&#8221; from one of your ad unit.</p>
<p>Make sure you select &#8220;asynchronous&#8221; code type from the drop down menu.</p>
<pre>&lt;script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"&gt;&lt;/script&gt;
&lt;!-- NAME OF YOUR AD --&gt;
&lt;ins class="adsbygoogle"
     style="display:inline-block;width:728px;height:90px"
     data-ad-client="ca-pub-8255226778912403"
     data-ad-slot="1054112722"&gt;&lt;/ins&gt;
&lt;script&gt;
(adsbygoogle = window.adsbygoogle || []).push({});
&lt;/script&gt;</pre>
<p>1. You simply add a <code>&lt;div&gt;</code> around it.<br />
2. Named the class to <code>responsive-ad</code> on the <code>&lt;div&gt;</code><br />
3. Added the class <code>responsive-ad</code> to <code>&lt;ins&gt;</code>. So it&#8217;s now <code>adsbygoogle responsive-ad</code>.<br />
4. Changed the style to <code>display:block</code><br />
5. You must replace <code>data-ad-client</code> numbers and <code>data-ad-slot</code> numbers with yours..<br />
6. Added <code>data-format="auto"</code> before closing <code>&lt;/ins&gt;</code> tag.<br />
7. Add <code>&lt;style&gt;</code> tags. You can tweak it whatever you want.</p>

<div class="clear"></div>
<pre>&lt;div class="responsive-ad"&gt;	
&lt;script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"&gt;&lt;/script&gt;
&lt;!-- NAME OF YOUR AD --&gt;
&lt;ins class="adsbygoogle responsive-ad"
     style="display:block"
     data-ad-client="ca-pub-XXXXXXXXXXXXXXXX"
     data-ad-slot="XXXXXXXXXX"
     data-format="auto"&gt;&lt;/ins&gt;
&lt;script&gt;
(adsbygoogle = window.adsbygoogle || []).push({});
&lt;/script&gt;
&lt;/div&gt;

&lt;style type="text/css"&gt;
.responsive-ad { width: 320px; height: 50px; margin: 0 auto; }
@media (min-width:480px) { .responsive-ad { width: 468px; height: 60px; } }
@media (min-width:768px) { .responsive-ad { width: 728px; height: 90px; } }
&lt;/style&gt;</pre>
<p>The <code>&lt;style&gt;</code> above has set a minimum of 768px (and up) for desktops, a minimum of 480px (and up but below 768px) for tablet, and 320px (and up but below 480px) for mobile. You may feel free to change the numbers of <code>min-width:</code> as your site structure.</p>
<p>Enjoy your blogging and monetizing with the new Responsive Google Adsense!</p><p>The post <a href="https://blog.identitydesign.us/responsive-google-adsense/">Responsive Google Adsense is Easy!</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/responsive-google-adsense/">Responsive Google Adsense is Easy!</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/loading-webfonts-https-ssl/" rel="bookmark" title="Resolved! Loading Your Google Fonts Over https (SSL) Sites">Resolved! Loading Your Google Fonts Over https (SSL) Sites</a></li>
<li><a href="https://blog.identitydesign.us/how-to-make-bootstrap-nav-top-level-menu-clickable-with-dropdowns/" rel="bookmark" title="How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns">How to Make Bootstrap Nav Top Level Menu Clickable With Dropdowns</a></li>
<li><a href="https://blog.identitydesign.us/no-programming-needed-use-javascript-to-load-header-and-footer-templates-works-just-like-php-include/" rel="bookmark" title="(No Programming) Use JavaScript to Load Header and Footer Templates. Works Just Like PHP Include">(No Programming) Use JavaScript to Load Header and Footer Templates. Works Just Like PHP Include</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/responsive-google-adsense/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>WordPress Appearing Strange Weird Characters / Codes</title>
		<link>https://blog.identitydesign.us/wordpress-appearing-weird-characterscode/</link>
					<comments>https://blog.identitydesign.us/wordpress-appearing-weird-characterscode/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Thu, 12 Jun 2014 22:22:57 +0000</pubDate>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[characters]]></category>
		<category><![CDATA[codes]]></category>
		<category><![CDATA[strange]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=348</guid>

					<description><![CDATA[<p>This was pretty shocking moments when seeing the weird strange codes on my WordPress website. I was looking all over to resolve the issue and it worked for me. This could has happened because you have upload your plugin directly through FTP and didn&#8217;t go through the backend and install it proper way. Which I [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/wordpress-appearing-weird-characterscode/">WordPress Appearing Strange Weird Characters / Codes</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/wordpress-appearing-weird-characterscode/">WordPress Appearing Strange Weird Characters / Codes</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/loading-webfonts-https-ssl/" rel="bookmark" title="Resolved! Loading Your Google Fonts Over https (SSL) Sites">Resolved! Loading Your Google Fonts Over https (SSL) Sites</a></li>
<li><a href="https://blog.identitydesign.us/howto-mailchimp-for-wordpress/" rel="bookmark" title="Quick Start Guide to MailChimp for WordPress">Quick Start Guide to MailChimp for WordPress</a></li>
<li><a href="https://blog.identitydesign.us/migrating-joomla-to-wordpress/" rel="bookmark" title="Migrating Joomla to WordPress">Migrating Joomla to WordPress</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p><a href="http://sleekycase.com/3d-custom-photo-design-matte-case/" rel="attachment wp-att-940" target="_blank"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2014/06/banner-web.jpg" alt="Get Custom Phone Case Now!" width="940" height="492" class="alignnone size-full wp-image-940" srcset="https://blog.identitydesign.us/wp-content/uploads/2014/06/banner-web.jpg 940w, https://blog.identitydesign.us/wp-content/uploads/2014/06/banner-web-300x157.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2014/06/banner-web-768x402.jpg 768w, https://blog.identitydesign.us/wp-content/uploads/2014/06/banner-web-624x327.jpg 624w" sizes="auto, (max-width: 940px) 100vw, 940px" /></a></p>
<p>This was pretty shocking moments when seeing the weird strange codes on my WordPress website. I was looking all over to resolve the issue and it worked for me. This could has happened because you have upload your plugin directly through FTP and didn&#8217;t go through the backend and install it proper way.</p>
<p>Which I did to make all this mess. I uploaded my files directly through FTP. </p>
<p><a href="https://blog.identitydesign.us/wp-content/uploads/2014/05/weirdcode.jpg"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2014/05/weirdcode.jpg" alt="weirdcodes" width="1211" height="672" class="alignnone size-full wp-image-349" srcset="https://blog.identitydesign.us/wp-content/uploads/2014/05/weirdcode.jpg 1211w, https://blog.identitydesign.us/wp-content/uploads/2014/05/weirdcode-300x166.jpg 300w, https://blog.identitydesign.us/wp-content/uploads/2014/05/weirdcode-1024x568.jpg 1024w, https://blog.identitydesign.us/wp-content/uploads/2014/05/weirdcode-624x346.jpg 624w" sizes="auto, (max-width: 1211px) 100vw, 1211px" /></a></p>
<p>I had back ups files, but these weird strange characters were showing up on top of every pages I go even I replaced it with my backed up files. </p>

<p>If you see the similar things showing, just de-activate the plugin that causing the issue, or you can delete the plugin folder directly from your FTP. And here&#8217;s what you should do next, re-install the plugin through the WordPress backend (admin) panel. It worked like a charm.</p>
<p>You might still see after, but don&#8217;t go crazy. There is a good chance your browser&#8217;s cache might need to be refreshed. Hit &#8220;Reload&#8221; the browser or Shift + &#8220;Reload&#8221; and it should work fine.</p><p>The post <a href="https://blog.identitydesign.us/wordpress-appearing-weird-characterscode/">WordPress Appearing Strange Weird Characters / Codes</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/wordpress-appearing-weird-characterscode/">WordPress Appearing Strange Weird Characters / Codes</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/loading-webfonts-https-ssl/" rel="bookmark" title="Resolved! Loading Your Google Fonts Over https (SSL) Sites">Resolved! Loading Your Google Fonts Over https (SSL) Sites</a></li>
<li><a href="https://blog.identitydesign.us/howto-mailchimp-for-wordpress/" rel="bookmark" title="Quick Start Guide to MailChimp for WordPress">Quick Start Guide to MailChimp for WordPress</a></li>
<li><a href="https://blog.identitydesign.us/migrating-joomla-to-wordpress/" rel="bookmark" title="Migrating Joomla to WordPress">Migrating Joomla to WordPress</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/wordpress-appearing-weird-characterscode/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
