Why You Can’t Find .htaccess File on Your WordPress Site file

The .htaccess file is not exclusive to WordPress.important htacess file in site run on apche server. In today’s WordPress tutorial, we Aim to rectify that, by explaining what WordPress .htaccess file is, what it does, and show you how to create it. What is the .htaccess file? The .htaccess file is a server configuration file … Read more

What’s Coming in WordPress 5.2 (Features and Screenshots)

The newest Beta Release for the most popular website CMS in the world is expected to be released this month. We have been following feature the release notes and development of 5.2 closely and have listed the new features and development here. WordPress 5.2 comes with a number of new features  and focuses on fixing … Read more

How to Schedule Posts in WordPress

yes you can Schedule post in wordpress. you can Step by Step Follow and setup time and Date.schedule posts in WordPress is a great way to regulate content output and timing. In case you have a lot of articles waiting to go live, publishing them in a single go may not be the best approach. Hence this … Read more

How to Speed up WordPress Leveraging Browser Caching via .htaccess

Leverage browser caching to make your webpages faster.Are you looking for leverage browser caching .A web browser retrieves a lot of resources from the server like CSS files, Images and html files etc. speed and get better search engine rankings. This article shall cover how to speed up WordPress by leveraging browser cache via htaccess file. … Read more

How to add to cart without reload page using php code

we are add to cart in e-commerce website without reload page use the php simple code. and get id the cart in session that are the send value through cart button with session. //Get session value $_SESSION[‘cart’]; if(isset($_GET[‘action’]) && $_GET[‘action’]==”add”){ $id=intval($_GET[‘id’]); if(isset($_SESSION[‘cart’][$id])){ $_SESSION[‘cart’][$id][‘quantity’]++; } else{ //Get product id $sql_p=”SELECT * FROM products WHERE id={$id}”; $query_p=mysqli_query($con,$sql_p); … Read more

WordPress Actions, Filters, and Hooks : A guide for non-developers

Hooks are provided by WordPress to allow your plugin to ‘hook into’ the rest of WordPress; that is, to call functions in your plugin at specific times, and thereby set your plugin in motion.In WordPress code there are numerous pre-defined actions or hooks that allow developers to add their own code at these points. There … Read more

Add columns to admin orders list in WooCommerce backend

You want to add some columns to your order listing page in the woocommerce admin area. So you if you want to add some columns in the orders Admin list page (in backend) ADDING COLUMNS IN WOOCOMMERCE ADMIN ORDERS LIST In the example below, we add 2 new custom columns, before existing “Total” and “Actions” … Read more

How to Optimize WordPress Robots.txt File for SEO

You are lucky that WordPress automatically creates a Robots.txt file for you. Having this file is half of the battle. You have to make sure that Robots.txt file is optimized to get the full benefits. What is Robots.txt File? Robots.txt file is a text file which instructs search engine bots how to crawl and index … Read more