Upsells and cross sells in WooCommerce Store.

WooCommerce cross-sells and upsells are both marketing strategies to get customers to increase their average order value by offering relevant product recommendations on the product page, in the cart, or at the checkout. These two terms are often used interchangeably but actually refer to two distinctly different marketing techniques. Upsell means you “offer the same type of product… Continue reading Upsells and cross sells in WooCommerce Store.

Plugin to display twitter feed

To display twitter feeds in wordpress,a new plugin “Feed Them Social – Page, Post, Video and Photo Galleries” by By SlickRemix can be used. “ Custom Twitter Feeds” plugin was used to display twitter feed in wordpress.Now this plugin updates feeds in the page only for paid users.A update may happen in June which enable… Continue reading Plugin to display twitter feed

Published
Categorized as Wordpress

How to add footer links in wordpress

Create a widget in your custom theme. To add widgets in the dashboard, register sidebar function in the page functions.php. function arphabet_widgets_init(){register_sidebar( array(‘name’ => ‘Footer Sidebar 1’,‘id’ => ‘footer-sidebar-1’,‘description’ => ‘Appears in the footer area’,‘before_widget’ => ”, ‘after_widget’ => ”,‘before_title’ => ‘ ‘, ‘after_title’ => ”,) );…….…..…}add_action(‘widgets_init’,’arphabet_widgets_init’); This will give a widget in the dashboard.… Continue reading How to add footer links in wordpress

Custom menu creation in wordpress

To register a navigation menu in WordPress the function : register_nav_menus() should be added in functions.php file. This will create a menu tab in wordpress control panel. To customize the default menu, you have to enter the WordPress dashboard, click on Appearance and then on Menus. Give the menu a name, and then click the Create Menu button. After creating it,… Continue reading Custom menu creation in wordpress

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