Set up payment methods in Woo Commerce store.

Woo commerce provides a number of pay methods manually by itself.  It consists of   Direct bank transfer  Check Payments  Cash on delivery  All this are the safes methods inn case of customers.  For payment options like credit card, google pay etc. the help of an external source is required.  For this several options are there… Continue reading Set up payment methods in Woo Commerce store.

WordPress inBuilt function ‘get_query_var()’ is not working

The function get_query_var() is a WordPress function used to retrieve a variable value from the current URL’s query string. If you’re experiencing issues with get_query_var(), there are a few things you can check: Verify you are using it within the appropriate context: get_query_var() is meant to be used within the WordPress loop or in a… Continue reading WordPress inBuilt function ‘get_query_var()’ is not working

Setting up wordpress on local server(Windows)

WordPress version is installed locally on our computer by creating a temporary database and server.The steps included in settinp up wordpress on local host are:1.Download and install XAMPPDownload XAMPP(XAMPP for windows 8.2.0).Run the installer.After installation, XAMPP control panel will be displayed .Click the start button,near Appache and MySQL 2.Create Local databaseCreate database using MySQL in… Continue reading Setting up wordpress on local server(Windows)

Enqueue script in the header section

In wordpress, wp_enqueue_script() allows plugins to queue scripts for the front end. Syntax for enqueue is Parameters are Parameters $handle string RequiredName of the script. Should be unique.$src string OptionalFull URL of the script, or path of the script relative to the WordPress root directory. Default: ”$deps string[] OptionalAn array of registered script handles this script depends on. Default: array()$ver string|bool|null OptionalString specifying script version number, if… Continue reading Enqueue script in the header section

Published
Categorized as Wordpress

Creating up of a coupon code in WooCommerce store.

This is an import thing in case of user interaction.  This helps to make the site more user friendly and happy customers.  To use coupons with WooCommerce.  Go to:  WooCommerce > Settings > General > Enable coupons  Tick the checkbox to Enable the use of coupon codes.  Save Changes.  Create a new coupon by selecting… Continue reading Creating up of a coupon code in WooCommerce store.

Set the product type and inventory management in WooCommerce

To add a variable product, create a new product or edit an existing one.  Go to: WooCommerce > Products.  Select the Add Product button or Edit an existing product. The Product Data displays.  Select Variable product from the Product Data dropdown We can also create variable , downloadable and grouped projects and made it push… Continue reading Set the product type and inventory management in WooCommerce

Adding products into the WooCommerce store:

Adding products into the store is an interesting thing were we can add products by giving the description , images and many other things.  Lets take a look at some terms related to products.  Product categories and tags work in much the same way as normal categories and tags you have when writing posts in… Continue reading Adding products into the WooCommerce store:

How to show only the required number of repeater fields contents in a ACF plugin(WordPress)

Making use of Advanced Custom fields in WordPress is very familiar for us. This helps the user to add contents dynamically through the back end of a WordPress website with out the help of any coding experiences. The ACF Repeater field is one of many ACF field types and is known as a complex field, mainly… Continue reading How to show only the required number of repeater fields contents in a ACF plugin(WordPress)

How to set conditions for a custom field in ACF – WordPress plugin

To set conditions for a custom field in Advanced Custom Fields (ACF) plugin for WordPress, follow these steps: Create your custom field group in the ACF interface. Click on the “Add Rule” button to add a condition. Choose the rule you want to set. You can choose from a range of options including “Page Template”,… Continue reading How to set conditions for a custom field in ACF – WordPress plugin