http://intelyblog.com/wp-content/uploads/2022/07/IntelyBlog.png00rush-intelyhttp://intelyblog.com/wp-content/uploads/2022/07/IntelyBlog.pngrush-intely2021-09-11 18:05:562021-09-11 18:05:58How to check if a file exists on a remote server using CURL
http://intelyblog.com/wp-content/uploads/2022/07/IntelyBlog.png00rush-intelyhttp://intelyblog.com/wp-content/uploads/2022/07/IntelyBlog.pngrush-intely2021-09-11 17:52:252021-09-12 04:02:53How to create WhatsApp share button in HTML
http://intelyblog.com/wp-content/uploads/2022/07/IntelyBlog.png00rush-intelyhttp://intelyblog.com/wp-content/uploads/2022/07/IntelyBlog.pngrush-intely2021-09-11 17:43:352021-09-12 03:52:53Create a link for WhatsApp click to chat in HTML
http://intelyblog.com/wp-content/uploads/2022/07/IntelyBlog.png00rush-intelyhttp://intelyblog.com/wp-content/uploads/2022/07/IntelyBlog.pngrush-intely2021-09-07 03:09:102021-09-07 06:47:18How to get current page full URL in PHP
Step 4: Write the below script in the app.js file. jQuery slice function is used to hide and show the containers. Here in this script the limit is set to 2. It can vary depending on the number of containers.
HTML preview after connecting the load more script
http://intelyblog.com/wp-content/uploads/2022/07/IntelyBlog.png00rush-intelyhttp://intelyblog.com/wp-content/uploads/2022/07/IntelyBlog.pngrush-intely2021-09-05 17:21:002021-09-05 17:47:25How to create load more function with jQuery
And that’s it! your pages will be loading with https.
http://intelyblog.com/wp-content/uploads/2022/07/IntelyBlog.png00rush-intelyhttp://intelyblog.com/wp-content/uploads/2022/07/IntelyBlog.pngrush-intely2021-08-30 18:25:172021-09-05 17:28:15Enforcing https on all WordPress pages
How to check if a file exists on a remote server using CURL
/in PHPHow to create WhatsApp share button in HTML
/in WhatsAppShare on WhatsApp
Create a link for WhatsApp click to chat in HTML
/in WhatsAppHow to get current page full URL in PHP
/in PHPStep 1: Deciding on the SSL protocol whether the site using http or https.
Step 2: Append domain name or IP to the URL
Step 3: Append the current page URL after domain / IP
$url .= $_SERVER[‘REQUEST_URI’]
Step 4: Let’s put all these together and create a function that can be reused.
How to create load more function with jQuery
/in jQueryStep 1: Create the html containers that needed to be used for the load more function.
HTML
CSS
Preview
Step 2: Make sure the containers have a wrapper to such as below mentioned example.
Step 3: Connect jQuery CDN and a JS file to run the load script.
Step 4: Write the below script in the app.js file.
jQuery slice function is used to hide and show the containers. Here in this script the limit is set to 2. It can vary depending on the number of containers.
jQuery
Preview
Enforcing https on all WordPress pages
/in HostingStep 1
Go to your file manager or access your files via any FTP client.
Step 2
Open your .htaccess file in edit mode (Where you can update the file and save.)
Step 3
Include the following two lines below RewriteEngine On as shown.
RewriteCond %{SERVER_PORT} !^443$
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
Step 4
Finally save your updates and close.
And that’s it! your pages will be loading with https.