<?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 &#8211; Fliperr Blog</title>
	<atom:link href="https://blog.fliperr.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.fliperr.com</link>
	<description>Blog about domains, web development and business</description>
	<lastBuildDate>Sat, 11 Jan 2025 18:58:18 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>

<image>
	<url>https://blog.fliperr.com/wp-content/uploads/2025/01/bubbles.png</url>
	<title>Wordpress &#8211; Fliperr Blog</title>
	<link>https://blog.fliperr.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Age Verification Code For Website</title>
		<link>https://blog.fliperr.com/age-verification-code-for-website/</link>
					<comments>https://blog.fliperr.com/age-verification-code-for-website/#respond</comments>
		
		<dc:creator><![CDATA[]]></dc:creator>
		<pubDate>Wed, 21 Aug 2019 13:57:10 +0000</pubDate>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[age verification code]]></category>
		<category><![CDATA[age verification without plugin]]></category>
		<guid isPermaLink="false">http://blog.fliperr.com/?p=2795</guid>

					<description><![CDATA[A simple age verification code for website so you don't need to use a plugin. Easy to add and very light-weight. [...]<p><a class="btn btn-secondary understrap-read-more-link" href="https://blog.fliperr.com/age-verification-code-for-website/">Read More...<span class="screen-reader-text"> from Age Verification Code For Website</span></a></p>]]></description>
										<content:encoded><![CDATA[
<p>Age verification code for website is necessary for some sites such as websites with adult content or cannabis related websites and dispensaries. There are various plugins to add age verification process to WordPress such as <a rel="noopener noreferrer" href="https://wordpress.org/plugins/age-gate/" target="_blank">Age Gate</a> plugin or similar plugins. But actually you don&#8217;t need a plugin to add a simple age verification and bulk up your website. Every plugin affects the speed of your website and might cause some compatibility problems with other plugins or <a href="https://wordpress.org" rel="noopener noreferrer" target="_blank">WordPress</a>.</p>

<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<ins class="adsbygoogle"
     style="display:block; text-align:center;"
     data-ad-layout="in-article"
     data-ad-format="fluid"
     data-ad-client="ca-pub-6226012631321881"
     data-ad-slot="8848110854"></ins>
<script>
     (adsbygoogle = window.adsbygoogle || []).push({});
</script>

<p>I have a client who runs multiple adult toy stores and needed a website for his products and locations so I made the website but had problems with EVERY SINGLE <a href="https://blog.fliperr.com/category/wordpress/">WordPress</a> age verification plugin I&#8217;ve tried. For some reason I was having trouble verifying the age and displaying the website properly after the age verification process. The problem might be due to the hosting but still I had to find another working solution for this issue. So I came up with a simple, light-weight code that won&#8217;t affect the speed of the website and won&#8217;t bulk up the website as in page size (it&#8217;s only 1.23KB). Once the visitor verifies their age, they won&#8217;t be asked to verify their age until they clear their cookies on their browsers. If they click on Exit button they&#8217;ll be redirected to <em>about:blank</em>.</p>



<h2 class="wp-block-heading">Age Verification Code For Website</h2>



<p>Age verification code for website  needs to be added to <strong>footer.php</strong> right before the <em>&lt;/body&gt;</em> tag if you&#8217;re running a WordPress website:</p>



<pre class="wp-block-code"><code>&lt;div id="age-verify">
&lt;div style="max-width: 350px;margin:0 auto;padding-top: 80px;text-align:center">&lt;img src="https://img.icons8.com/flat_round/64/000000/lock--v5.png">&lt;br>&lt;br>&lt;h2 style="color:white">Are you 21 or older?&lt;/h2>&lt;p>This website requires you to be 21 years of age or older. Please verify your age to view the content, or click Exit to leave.&lt;/p>&lt;button style="background: green" onclick="acceptCookie();">I'm over 21&lt;/button>&lt;br>&lt;a style="color:white" href="about:blank">&lt;button style="background: #ce2c2c">Exit&lt;/button>&lt;/a>&lt;/div>&lt;/div>

&lt;style>#age-verify{position: fixed;z-index: 9998;top: 0;right: 0;left: 0;bottom: 0;width: 100%;height: 100%;background-color: #000;color:#fff;font-family:inherit;padding:20px;visibility:hidden}
#age-verify button{color:inherit;border:0;padding:10px;margin-top:10px;width:100%;cursor:pointer}
@media only screen and (max-width:600px){#age-verify{max-width:100%;bottom:0;left:0;border-radius:0}}&lt;/style>

&lt;script>function acceptCookie(){document.cookie="cookieaccepted=1; expires=Thu, 18 Dec 2030 12:00:00 UTC; path=/",document.getElementById("age-verify").style.visibility="hidden"}document.cookie.indexOf("cookieaccepted")&lt;0&amp;&amp;(document.getElementById("age-verify").style.visibility="visible");&lt;/script></code></pre>



<p>Here&#8217;s how it looks: </p>



<div class="wp-block-image"><figure class="aligncenter"><img fetchpriority="high" decoding="async" width="1024" height="575" src="https://blog.fliperr.com/wp-content/uploads/2019/08/age-verification-code-for-website-1024x575.jpg" alt="age verification code for website" class="wp-image-2804" srcset="https://blog.fliperr.com/wp-content/uploads/2019/08/age-verification-code-for-website-1024x575.jpg 1024w, https://blog.fliperr.com/wp-content/uploads/2019/08/age-verification-code-for-website-300x168.jpg 300w, https://blog.fliperr.com/wp-content/uploads/2019/08/age-verification-code-for-website-768x431.jpg 768w, https://blog.fliperr.com/wp-content/uploads/2019/08/age-verification-code-for-website.jpg 1374w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>age verification code for website on desktop</figcaption></figure></div>



<div class="wp-block-image"><figure class="aligncenter is-resized"><img decoding="async" src="https://blog.fliperr.com/wp-content/uploads/2019/08/age-verification-code-for-website-447x1024.png" alt="age verification code for website" class="wp-image-2808" width="241" height="551" srcset="https://blog.fliperr.com/wp-content/uploads/2019/08/age-verification-code-for-website-447x1024.png 447w, https://blog.fliperr.com/wp-content/uploads/2019/08/age-verification-code-for-website-131x300.png 131w, https://blog.fliperr.com/wp-content/uploads/2019/08/age-verification-code-for-website-768x1760.png 768w, https://blog.fliperr.com/wp-content/uploads/2019/08/age-verification-code-for-website-894x2048.png 894w, https://blog.fliperr.com/wp-content/uploads/2019/08/age-verification-code-for-website.png 951w" sizes="(max-width: 241px) 100vw, 241px" /><figcaption>age verification code for website on mobile</figcaption></figure></div>



<h3 class="wp-block-heading">How to add it to WordPress</h3>



<p>In order to add it to your WordPress site, go to your&nbsp;<strong>Appearance &gt; Theme Editor &gt; Theme Footer (footer.php)</strong> and paste the above code right before<strong> </strong><em>&lt;/body&gt;</em> tag.<br></p>



<h4 class="wp-block-heading">Why use this age verification code for your website?</h4>



<ul class="wp-block-list"><li>You won&#8217;t need a plugin for this purpose</li><li>It&#8217;s very light-weight (1.23KB)</li><li>It won&#8217;t affect your page speed</li><li>No database queries needed</li><li>Customizable</li><li>Responsive</li><li> It works like a charm!</li></ul>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.fliperr.com/age-verification-code-for-website/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Move WordPress Site to New Server</title>
		<link>https://blog.fliperr.com/how-to-move-wordpress-site-to-new-server/</link>
					<comments>https://blog.fliperr.com/how-to-move-wordpress-site-to-new-server/#respond</comments>
		
		<dc:creator><![CDATA[]]></dc:creator>
		<pubDate>Tue, 24 Apr 2018 05:15:10 +0000</pubDate>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://blog.fliperr.com/?p=2611</guid>

					<description><![CDATA[How to move WordPress site to new server is a question we get from our visitors who recently started building their online empire. This tutorial will show you how to move a WordPress site  to new server easily with Duplicator Plugin.  [...]<p><a class="btn btn-secondary understrap-read-more-link" href="https://blog.fliperr.com/how-to-move-wordpress-site-to-new-server/">Read More...<span class="screen-reader-text"> from How to Move WordPress Site to New Server</span></a></p>]]></description>
										<content:encoded><![CDATA[<p>How to move WordPress site to new server is a question we get from our visitors who recently started building their online empire. This tutorial will show you how to move a WordPress site  to new server easily with Duplicator Plugin. Migrating a WordPress site to a new domain or a new host is not as hard as it sounds. Luckily, there are some free plugins that help you move WordPress site to new host or a domain easily. In this article you will see which steps will lead you to a successful site migration process.</p>
<h3>Why Duplicator?</h3>
<p>Duplicator makes the website transfer process very simple. If you are not happy with your current domain and move your site to a new domain, this plugin is the only tool you need. Duplicator is also very handy if you want to use the same website template on multiple sites. Just create 1 back up and install it on unlimited sites with Duplicator with some easy steps such as:</p>
<ul>
<li><a href="#1">Install Duplicator Plugin On Your Existing WordPress Site</a></li>
<li><a href="#2">Create A Back Up For Your Existing WordPress Site</a></li>
<li><a href="#3">Move WordPress Site To New Host Or New Domain</a></li>
<li><a href="#4">Install Your New WordPress Site</a></li>
</ul>
<h3>Install Duplicator Plugin On Your Existing WordPress Site</h3>
<p style="text-align: left;">First thing, you need to install Duplicator plugin on your current site so the plugin can create a back up.</p>
<div style="margin: 0 auto;     background: #f1f1f1;
    padding: 3%;
    border: 1px solid #d1d1d1;"></p>
<p><span style="color: #ff6600;"><strong>How to install Duplicator plugin on WordPress:</strong></span></p>
<p>1-On your WordPress Dashboard, go to Plugins&gt;Add New</p>
<p>2-On the following screen, type <em>Duplicator</em> on the search bar.</p>
<p>3-Install and Activate <strong>Duplicator-Wordpress Migration Plugin</strong></p>
</div>
<p><a name="2"></a></p>
<h3>Create A Back Up For Your Existing WordPress Site</h3>
<p>After you successfully installed and activated the Duplicator, it will appear on your WordPress side menu. Simply go to <em>Duplicator&gt;Packages</em>.</p>
<p>On the following screen click <strong>Create New</strong> button. The plugin will create a package (back up) and save it for you so you can re-download it in the future.</p>
<p>After you click <em>Create New</em> button, you should see the setup screen, this is the first step of creating the database. You don&#8217;t have to edit anything on this screen, just click <strong><em>Next</em></strong>.</p>
<p>After you click <em>Next, </em>it will scan your site for a few seconds, this is the second step of the back up process. After the scan, you&#8217;ll see <span style="color: #339966;">Scan Complete</span> screen. Click <strong>Build</strong> button.<span style="color: #993366;"><span style="color: #000000;"> </span></span></p>
<p style="text-align: left;">Third and the last step of creating the database on Duplicator Plugin is called &#8220;Building Package&#8221;.  On this step, it will literally start building the zip file that contains all your WordPress site files and your database file (.sql file), in short; it&#8217;ll put everything about your site in a zip folder. This step might take a few minutes depending the size of your site.</p>
<p style="text-align: left;"><strong>Finally, back up creating process is done. Download both installer file (installer.php) and Archive file (zip file). Later you will upload these 2 files to your new site&#8217;s root folder.  <em>Please keep reading.</em></strong></p>
<p><center><a href="//www.bluehost.com/track/volvera/" target="_blank" rel="noopener noreferrer"> <img decoding="async" src="//bluehost-cdn.com/media/partner/images/volvera/728x90/728x90BW.png" border="0" /> </a></center><br />
<a name="3"></a></p>
<h3>Move WordPress Site To New Host Or New Domain (second part)</h3>
<p>Now we have the Archive and the Installer file. These 2 files will the only files you will need in order to install the site but before that, we will have to take a few simple steps. First step is creating a new database with <em>MySQL Databases</em><strong>. </strong></p>
<blockquote>
<h4><span style="color: #ff6600;">Create A Database</span></h4>
<ol>
<li>Go to your hosting page and look for <strong>cPanel</strong> and on the cPanel find and click <strong>MySQL Databases.</strong></li>
<li>Create a new database and a new user for the new site. Then add this new user to the new database you just created. <em>Remember, you will need the new user&#8217;s password later, so you might want to save it until the whole installation process is over.</em></li>
</ol>
</blockquote>
<p style="text-align: center;"><span style="color: #ff0000;">► <strong>If  you haven&#8217;t assigned the domain to the new <a href="https://www.bluehost.com/track/volvera" target="_blank" rel="noopener noreferrer">host</a>, go ahead and assign the domain as an Addon Domain.</strong></span></p>
<p>Second step is uploading the zip file and installer.php to your domain&#8217;s root folder.<strong> </strong>We have the back up files and a new database now. On the cPanel find and click <strong>File Manager</strong>. Find your new domain&#8217;s root folder and delete everything if there are any files and upload the zip file and installer.php file into this folder. If you are using shared hosting, your domain&#8217;s root folder would be in <strong>public_html </strong>folder.<br />
<a name="4"></a></p>
<h3>Install Your New WordPress Site</h3>
<p>After you have successfully uploaded the back up files. Simply go to <strong><em>example.com</em>/installer.php</strong></p>
<p style="text-align: left;">When you go to <em>example.com</em>/installer.php<strong> </strong>you should see the Deployment screen <strong>↓ </strong></p>
<p style="text-align: left;">Click <strong>Next </strong>and you should see Install Database screen. Go ahead and enter the database name, user name and user password you created on MySQL Databases. <strong>After you entered these information click Test Database and if you entered everything correctly, you will see a Success notice.</strong> Then, click <em>Next </em>and on the pop up screen click<em> Yes. </em></p>
<p>On the following screen you will see the new settings of your freshly installed site. Click <em>Next</em>.</p>
<p>Congratulations! You have successfully moved your WordPress site to new host (or domain). Simply click <strong>Site Login</strong> to go to your WP Login page. Login credentials are the same as your old site&#8217;s WP login credentials.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.fliperr.com/how-to-move-wordpress-site-to-new-server/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>[Solution] “Attackers might be able to see images..” SSL Warning</title>
		<link>https://blog.fliperr.com/solution-attackers-might-be-able-to-see-images-ssl-warning/</link>
					<comments>https://blog.fliperr.com/solution-attackers-might-be-able-to-see-images-ssl-warning/#respond</comments>
		
		<dc:creator><![CDATA[]]></dc:creator>
		<pubDate>Tue, 24 Apr 2018 04:56:12 +0000</pubDate>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[ssl warnings]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://blog.fliperr.com/?p=2584</guid>

					<description><![CDATA[You might be wondering why your domain is giving you "Your connection to this site is not fully secure Attackers might be able to see the images you're looking at on this site and trick you by modifying them." warning on Chrome browser. You are not alone. But fortunately there is a solution for this. [...]<p><a class="btn btn-secondary understrap-read-more-link" href="https://blog.fliperr.com/solution-attackers-might-be-able-to-see-images-ssl-warning/">Read More...<span class="screen-reader-text"> from [Solution] “Attackers might be able to see images..” SSL Warning</span></a></p>]]></description>
										<content:encoded><![CDATA[<p>You might be wondering why your domain is giving you &#8220;<span style="color: #993300"><a style="color: #993300" href="https://support.google.com/chrome/answer/95617?visit_id=1-636600419740102054-3673080058&#038;p=ui_security_indicator&#038;rd=1" target="_blank" rel="noopener noreferrer">Your connection to this site is not fully secure</a></span> Attackers might be able to see the images you&#8217;re looking at on this site and trick you by modifying them.&#8221; warning on Chrome browser. You are not alone. But fortunately there is a solution for this.</p>
<h4>Why Do I See This Error?</h4>
<p>Even though you have <a href="https://blog.fliperr.com/about-ssl/" target="_blank" rel="noopener noreferrer">SSL</a> installed on for your domain, you can see this error and this simply means your website contains &#8220;http&#8221; links on its pages. You can even see this error on some pages instead of every page.&nbsp; It can be an image that&#8217;s linked to an external url starts with &#8220;http&#8221; instead of &#8220;https&#8221;. We don&#8217;t want &#8220;http&#8221; links in our site so to eliminate this SSL error, we need to &#8220;fix&#8221; these &#8220;http&#8221; links.</p>
<p><script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script><br />
<ins class="adsbygoogle"
     style="display:block; text-align:center;"
     data-ad-layout="in-article"
     data-ad-format="fluid"
     data-ad-client="ca-pub-6226012631321881"
     data-ad-slot="7981407979"></ins><br />
<script>
     (adsbygoogle = window.adsbygoogle || []).push({});
</script></p>
<h4><span style="color: #333333">Easy Solution For &#8220;Attackers might be able to see the images&#8230;&#8221; SSL Error</span></h4>
<p>If your website was built with WordPress, simply download free&nbsp;<a href="https://wordpress.org/plugins/better-search-replace/" target="_blank" rel="noopener noreferrer">Better Search Replace</a>&nbsp;plugin, install and activate it on your website. Then on your WordPress dashboard hover on&nbsp;<img decoding="async" src="https://blog.fliperr.com/wp-content/uploads/2020/05/tools-button.png" class="alignnone wp-image-2511" alt="tools" width="74" height="18">&nbsp;and click <strong>Better Search Replace.</strong></p>
<p>On the Search/Replace screen</p>
<ol>
<li><strong><em>Search for:</em></strong> http:</li>
<li><strong><em>Replace with:</em></strong> https:</li>
<li><strong>Select tables </strong>section, select all of them by clicking on a table and pressing CTRL+A on your keyboard.</li>
<li><strong>Run as dry run:</strong> UNCHECK this so the plugin makes the necessary changes.</li>
<li>Click <strong>Run Search/Replace</strong></li>
</ol>
<p><img loading="lazy" decoding="async" src="https://blog.fliperr.com/wp-content/uploads/2018/04/better-search-replace-screen.jpg" class="alignnone size-full wp-image-2705" alt="better-search-replace-screen" width="813" height="726" srcset="https://blog.fliperr.com/wp-content/uploads/2018/04/better-search-replace-screen.jpg 813w, https://blog.fliperr.com/wp-content/uploads/2018/04/better-search-replace-screen-300x268.jpg 300w, https://blog.fliperr.com/wp-content/uploads/2018/04/better-search-replace-screen-768x686.jpg 768w" sizes="auto, (max-width: 813px) 100vw, 813px" /></p>
<p>It will search your database for http links and replace it with https. On some shared hosting packages you might need to change the &#8220;Max Page Size&#8221; to 1000 on Settings.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.fliperr.com/solution-attackers-might-be-able-to-see-images-ssl-warning/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
