Klasický WordPress modul Coding standards I18n Post types, taxonomies, meta, options Transients a WP cache Nepoužívajte "super" triedy/objekty

Size: px
Start display at page:

Download "Klasický WordPress modul Coding standards I18n Post types, taxonomies, meta, options Transients a WP cache Nepoužívajte "super" triedy/objekty"

Transcription

1 WooCommerce pre vývojárov Ján Bočínec

2 Modul pre WooCommerce Klasický WordPress modul Coding standards I18n Post types, taxonomies, meta, options Transients a WP cache Nepoužívajte "super" triedy/objekty /** * Check if WooCommerce is active **/ if ( in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) { // Put your plugin code here

3 woocommerce_loaded WC() //WooCommerce WC()->session //WC_Session WC()->query //WC_Query WC()->countries //WC_Countries WC()->cart //WC_Cart WC()->customer //WC_Customer WC()->checkout() //WC_Checkout WC()->payment_gateways() //WC_Payment_Gateways WC()->shipping() //WC_Shipping WC()->mailer() //WC_ s $customer_country = WC()->customer->get_country(); docs.woothemes.com/wc-apidocs

4 global $woocommerce; $woocommerce->cart->get_cart_subtotal();

5 Funkcie wc-admin-functions.php wc-attribute-functions.php wc-cart-functions.php wc-order-functions.php wc-conditional-functions.php wc-core-functions.php wc-coupon-functions.php wc-formatting-functions.php wc-meta-box-functions.php wc-notice-functions.php wc-order-functions.php wc-page-functions.php wc-product-functions.php wc-template-functions.php wc-term-functions.php wc-user-functions.php wc-webhook-functions.php wc-widget-functions.php

6 Platobná brána class WC_Custom_Gateway extends WC_Payment_Gateway { public function construct() { $this->id = 'custom_gateway'; $this->icon = 'url_to_image'; $this->has_fields = false; $this->method_title = ( 'Custom Gateway', 'wc-custom-gateway' ); $this->method_description = ( 'Gateway description.', 'wc-custom-gateway' ); function webikon_woocommerce_payment_gateways( $methods ) { $methods[] = 'WC_Custom_Gateway'; return $methods; add_filter( 'woocommerce_payment_gateways', 'webikon_woocommerce_payment_gateways' );

7 function process_payment( $order_id ) { $order = new WC_Order( $order_id ); // Mark order as on-hold $order->update_status('on-hold', ( 'Awaiting payment', 'wc-custom-gateway' )); // Add order note $order->add_order_note( ('Payment on-hold', 'wc-custom-gateway') ); $payment_complete = new Call_Custom_Payment_API( $order_id, $params ); if ( $payment_complete ) { // Reduce stock levels $order->reduce_order_stock(); // Remove cart WC()->cart->empty_cart(); // Change order status to completed $order->payment_complete(); return array( 'result' => 'success', 'redirect' => 'redirect_url' ); else { //Add error message on the checkout page wc_add_notice( ('Payment error:', 'wc-custom-gateway'). $error_message, 'error' ); return array( 'result' => 'fail', 'redirect' => '' );

8 Spôsob dopravy class WC_Custom_Shipping_Method extends WC_Shipping_Method { public function construct() { $this->id = 'custom_shipping'; $this->title = ( 'Your Shipping Method', 'wc-custom-shipping' ) $this->method_description = ( 'Shipping description', 'wc-custom-shipping' ) $this->init(); function webikon_woocommerce_shipping_methods( $methods ) { $methods[] = 'WC_Custom_Gateway'; return $methods; add_filter( 'woocommerce_shipping_methods', 'webikon_woocommerce_shipping_methods' );

9 public function calculate_shipping( $package ) { $rate = array( // ID for the rate 'id' => $this->id, // Label for the rate 'label' => $this->title, // Amount for shipping or an array of costs (for per item shipping) 'cost' => '10.99', // Pass an array of taxes, or pass nothing to have it calculated for you, // or pass 'false' to calculate no tax for this method 'taxes' => '', // Calc tax per_order or per_item. Per item needs an array of costs passed via 'cost' 'calc_tax' => 'per_item' ); // Register the rate $this->add_rate( $rate );

10 Settings API /** * Initialise Gateway Settings Form Fields */ function init_form_fields() { $this->form_fields = array( 'option_name' => array( 'title' => 'Title for your option shown on the settings page', 'description' => 'Description for your option shown on the settings page' 'type' => 'text password textarea checkbox select multiselect', 'default' => 'Default value for the option', 'class' => 'Class for the input', 'css' => 'CSS rules added line to the input', 'label' => 'Label', // checkbox only 'options' => array( 'key' => 'value' ) // array of options for select/multiselects only ) ); // End init_form_fields()

11 Stránky nastavení account general checkout products tax shipping api add_filter( 'woocommerce_get_sections_'. SETTINGS_PAGE, function( $sections ) { return $sections; ); add_filter( 'woocommerce_get_settings_'. SETTINGS_PAGE, function( $settings, $current_section ) { return $settings, 10, 2 );

12 Vlastná stránka nastavení add_filter( 'woocommerce_get_settings_pages', function( $settings ) { $settings[] = new WC_Settings_Custom; //instance of WC_Settings_Page return $settings; ); Integrations WooCommerce -> Settings -> Integrations WC_Integration class

13 Vlastný typ produktu //Register the simple_custom product type class WC_Product_Simple_Custom extends WC_Product { public function construct( $product ) { $this->product_type = 'simple_custom'; parent:: construct( $product ); //Add a simple_custom product tab. add_filter( 'woocommerce_product_data_tabs', 'custom_product_tabs' ); //Contents of the simple_custom options product tab. add_action( 'woocommerce_product_data_panels', 'custom_options_tab_content' ); // Save the simple_custom fields. add_action( 'woocommerce_process_product_meta_simple_custom', 'save_rental_option_field' ); add_action( 'woocommerce_process_product_meta_variable_custom', 'save_rental_option_field' );

14 /** * Show pricing fields for simple_custom product. */ function simple_custom_js() { if ( 'product'!= get_post_type() ) return;?><script type='text/javascript'> jquery( document ).ready( function() { jquery( '.options_group.pricing' ).addclass( 'show_if_simple_custom' ).show(); ); </script><?php add_action( 'admin_footer', 'simple_custom_js' ); Používať wp_enqueue_script a wp_enqueue_style!

15 Téma podporuje WooCoommerce add_action( 'after_setup_theme', 'my_theme_woocommerce_support' ); function my_theme_woocommerce_support() { add_theme_support( 'woocommerce' );

16 WooCommerce podstránky wc_get_cart_url() wc_get_checkout_url() wc_get_page_permalink( $page ) wc_get_page_id( $page )

17 WooCommerce šablóny /woocommerce/templates/ /custom-theme/woocommerce/

18 WooCommerce REST API v3 curl \ -u consumer_key:consumer_secret JSON { "order": { "id": 645, "order_number": 645, "created_at": " T20:00:21Z", "updated_at": " T20:00:21Z", "completed_at": " T20:00:21Z", "status": "processing", "currency": "USD", "total": "79.87", "subtotal": "63.97", "total_line_items_quantity": 3, "total_tax": "5.90", "total_shipping": "10.00", "cart_tax": "5.40", "shipping_tax": "0.50",... woothemes.github.io/woocommerce-rest-api-docs

19 WooCommerce iphone app

20 WooCommerce CLI $ wp wc usage: wp wc coupon <command> or: wp wc customer <command> or: wp wc order <command> or: wp wc product <command> or: wp wc report <command> or: wp wc tax <command> or: wp wc tool <command> See 'wp help wc <command>' for more information on a specific command. wp wc tool clear_transients github.com/woothemes/woocommerce/wiki/wp-cli-commands wp-cli.org

21 Cache a optimilizácia Obsah špecifický pre konkrétneho zákazníka /cart /checkout /my-account /* (bloky s informáciami) Vylúčiť tieto podstránky z cacheovania Pomôže AJAX Alternatíva je "sledovať " správanie: Je návštevník e-shopu už zákazníkom? Angular/React?

22 Chcete naozaj rýchlosť? WordPress Object Cache Redis/Memcached Aplikuje sa aj na Transients API PHP 7 ElasticSearch - Databáza spomaľuje ElasticPress WooCommerce SSD bez kompromisov RAM > veľkosť databázy Čím viac CPU tým lepšie :)

23 Ladenie a testovanie Váš e-shop žije! Nezabúdajte na zálohy. Všetko deaktivujte. Použite nejakú základnú tému (Storefront). Pokazte čo sa dá.

24 System Status Report JavaScript chyby? WP_DEBUG WC_Logger WC_LOG_DIR.../wp-content/uploads/wc-logs/ Google

25 System Status Report Základné informácie o WordPress Nastavenie servera a aktuálny stav databázy Základné nastavenia WooCommerce Verzia API Aktívne moduly Informácie o aktívnej téme Používané šablóny Export (markdown) docs.woothemes.com/document/understanding-the-woocommerce-system-status-report

26 Rozšírenia a nástroje Smart Manager Product CSV Import Suite WP All Import Store Toolkit WPML (+multi-currency) toret.cz platobnebrany.sk Query Monitor (slow queries log) MySQLTuner

27 WooCommerce 2.6 (Beta 1) Zipping Zebra Zóny pre dopravu Záložky na podstránky "môj účet" AJAX v košíku Payment Tokens API - štandardizovanie platieb Nové WooCommerce REST API /wc-api/v3/ => /wp-json/wc/v1/ Zmeny v niekoľkých šablonách woocommerce.wordpress.com/2016/04/22/woocommerce-2-6-beta-1-is-here

28 @JohnnyPea webikon.sk wpguru.sk wp.sk

WooCommerce User Manual By Design N Buy

WooCommerce User Manual By Design N Buy By Design N Buy Introduction The world's favorite ecommerce solution that gives you completes control to sell anything. WooCommerce is built to integrate seamlessly with WordPress, which is the world's

More information

Integration Manual Valitor WooCommerce Module

Integration Manual Valitor WooCommerce Module Integration Manual Valitor WooCommerce Module Integrating with Valitor could not be easier. Choose between Hosted, HTTP POST or XML integration options, or alternatively browse our selection of client

More information

WordPress WooCommerce plugin. Merchant Integration Manual

WordPress WooCommerce plugin. Merchant Integration Manual WordPress WooCommerce plugin Merchant Integration Manual 2015 07 10 Features Adds EveryPay card payment gateway service to the WooCommerce installation for supporting Visa and MasterCard payments. Requirements

More information

USER MANUAL. Portal Invoice Add-on TABLE OF CONTENTS. Version: 1.0

USER MANUAL. Portal Invoice Add-on TABLE OF CONTENTS. Version: 1.0 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Portal Invoice Add-on... 1 Prerequisites... 1 Installation... 2 WordPress Manual Plug-in installation... 2 Plug-in Configuration... 7 SuiteCRM

More information

WooCommerce REST API Integration. October 27, 2018

WooCommerce REST API Integration. October 27, 2018 WooCommerce REST API Integration October 27, 2018 Andrew Duncan CEO/Owner/Developer Databuzz The ecommerce platform for WordPress The world s most customisable ecommerce platform The most popular ecommerce

More information

SMS Plugin for WooCommerce Manual

SMS Plugin for WooCommerce Manual SMS Plugin for WooCommerce Manual v1.0.0 Contents Installation Configuration Account Info Tab Account Setup Send SMS panel Actions Tab New Order panel Order Status panel Additional Notification Settings

More information

MyanPay API Integration with WordPress & WooCommerce CMS

MyanPay API Integration with WordPress & WooCommerce CMS 2016 MyanPay API Integration with WordPress & WooCommerce CMS MyanPay Myanmar Soft-Gate Technology Co, Ltd. 7/6/2016 MyanPay API Integration with WordPress & WooComerce 1 MyanPay API Integration with WordPress

More information

WooCommerce izettle Documentation

WooCommerce izettle Documentation WooCommerce izettle Documentation Installation 2 System requirements 2 Downloading and installing the plugin 2 Getting a license key 3 Connecting to izettle 3 Getting started 4 The plugin settings page

More information

WC Auto-Ship for WooCommerce

WC Auto-Ship for WooCommerce WC Auto-Ship for WooCommerce Version 3.1.0 Published: July 24, 2015 2015 Patterns In the Cloud, http://patternsinthecloud.com (http://patternsinthecloud.com) Contact support@patternsinthecloud.com for

More information

SEGPAY WooCommerce Plugin SETUP

SEGPAY WooCommerce Plugin SETUP SEGPAY WooCommerce Plugin SETUP Client Documentation Version 1.1 May 11, 2017 Table of Contents Version Tracking... 3 Summary... 4 Pre-Installation Checklist... 4 Plugin Installation... 5 Testing... 9

More information

Demystifying Hooks, Actions & Filters. A quick run through by Damien Carbery

Demystifying Hooks, Actions & Filters. A quick run through by Damien Carbery Demystifying Hooks, Actions & Filters A quick run through by Damien Carbery They are everywhere Actions and filters are the means to extend WordPress. Without them WordPress could not be extended and there

More information

Quickbooks Document : Installation : 1) WordPress Plugin Uploader 2) FTP

Quickbooks Document : Installation : 1) WordPress Plugin Uploader 2) FTP Quickbooks Document : Installation : 1) WordPress Plugin Uploader 1. Log into your WordPress admin panel 2. Navigate to Plugin -> Add New 3. Click Upload. 4. Click Choose File and select the Quickbooks

More information

Documentation of Reward Points for Woocommerce. Installation of Reward Points for Woocommerce

Documentation of Reward Points for Woocommerce. Installation of Reward Points for Woocommerce Documentation of Reward Points for Woocommerce Installation of Reward Points for Woocommerce Installation Install Word Press from http://codex.wordpress.org/installing_wordpress. Upload via FTP : - Unzip

More information

Product Sales Report Pro v2.1 User's Manual

Product Sales Report Pro v2.1 User's Manual Product Sales Report Pro v2.1 User's Manual Thank you for purchasing the Product Sales Report plugin. This manual will guide you through installing and using the plugin. Installation 1. Login to your WordPress

More information

ONE STEP CHECKOUT USER GUIDE

ONE STEP CHECKOUT USER GUIDE ONE STEP CHECKOUT USER GUIDE Version 1.0 www.advancedcheckout.com support@advancedcheckout.com Contents 1. ONE STEP CHECKOUT CONFIGURATION... 3 2. GENERAL CONFIGURATION... 3 3. DEFAULT SETTINGS... 5 4.

More information

WOOCOMMERCE VISMA INTEGRATION Last Modified: 2017-Mar-28

WOOCOMMERCE VISMA INTEGRATION Last Modified: 2017-Mar-28 Contact us at: support@uniwin.se WOOCOMMERCE VISMA INTEGRATION Last Modified: 2017-Mar-28 Reading guide I will mark all the tabs like this: This is a tab Important marks will be highlighted in yellow text.

More information

CMSnipcart Documentation

CMSnipcart Documentation CMSnipcart Documentation Release 1.0.0 CMExtension January 07, 2016 Contents 1 Overview 3 1.1 Technical Requirements......................................... 3 1.2 Features..................................................

More information

AceShop Quick Guide. AceShop is the integration of two of the most popular open source projects in the world: OpenCart and Joomla!

AceShop Quick Guide. AceShop is the integration of two of the most popular open source projects in the world: OpenCart and Joomla! AceShop Quick Guide 1.1 What is AceShop? AceShop is a full-featured e-commerce component for Joomla with an easy to use, search engine friendly, visually appealing interface. AceShop is the integration

More information

SYLLABUS FOR BUILDING YOUR ecommerce STORE WITH WORDPRESS

SYLLABUS FOR BUILDING YOUR ecommerce STORE WITH WORDPRESS SYLLABUS FOR BUILDING YOUR ecommerce STORE WITH WORDPRESS Bud Kraus Joy of WP joyofwp.com bud@joyofwp.com 973 479 2914 The WooCommerce plugin for WordPress allows you to create any kind of ecommerce Store.

More information

How to configure Web Hosting plugin

How to configure Web Hosting plugin How to configure Web Hosting plugin Install WooCommerce plugin In left-hand admin menu go-to WooCommerce Accounts tab Settings and click on In Account Creation Section if not checked check Automatically

More information

WebShop. User Manual. protonic software GmbH

WebShop. User Manual. protonic software GmbH WebShop User Manual 1 WebShop - Table of contents The instructions in this manual are for informational purposes only and are subject to change. Protonic Software GmbH assumes no liability. The software

More information

Webcart Documentation

Webcart Documentation Webcart Documentation Webcart E-Commerce Solution Webcart is a powerful multi-store shopping cart software that can help you to start and manage your online stores with ease. It supports multiple storefronts

More information

PHPBasket 4 Administrator Documentation

PHPBasket 4 Administrator Documentation PHPBasket 4 Please ensure you have the latest version of this document from http://www.phpbasket.com Contents CONTENTS 2 REQUIREMENTS 3 INSTALLATION 4 PREPARATION 4 UPLOAD 4 INSTALLATION 4 ADMINISTRATOR

More information

Quick Online Shop Documentation

Quick Online Shop Documentation Quick Online Shop Documentation In the following tutorial, you will get a complete step by step guide of using Quick Online Shop WordPress theme for building an amazon affiliate store site. All steps have

More information

Orbit Store Documentation User

Orbit Store Documentation User Orbit Store Documentation User A. Registration 1. Click on the Register link found on the upper right navigation 2. Supply username and email field with the correct information for the CREATE ACCOUNT section

More information

Theming WordPress. Beth Tucker Long

Theming WordPress. Beth Tucker Long Theming WordPress Beth Tucker Long Who am I? Beth Tucker Long (@e3betht) PHP Developer Stay- at- home mom User group leader Mentor & ApprenIce Audience ParIcipaIon? Completely fine. Ask me quesions any

More information

How to Add Product In Your Store

How to Add Product In Your Store How to Add Product In Your Store Adding a simple product Adding a Simple product is similar to writing a post in WordPress. 1. Go to WooCommerce > Products > Add Product. You then have a familiar interface

More information

Magento Survey Extension User Guide

Magento Survey Extension User Guide Magento Survey Extension User Guide Page 1 Table of Contents To Access Plugin, Activate API Key... 3 Create Questions... 5 Manage Survey... 6 Assign Question to Survey... 7 Reveal Survey In Three Ways...

More information

Webshop Plus! v Pablo Software Solutions DB Technosystems

Webshop Plus! v Pablo Software Solutions DB Technosystems Webshop Plus! v.2.0 2009 Pablo Software Solutions http://www.wysiwygwebbuilder.com 2009 DB Technosystems http://www.dbtechnosystems.com Webshos Plus! V.2. is an evolution of the original webshop script

More information

Get in Touch Module 1 - Core PHP XHTML

Get in Touch Module 1 - Core PHP XHTML PHP/MYSQL (Basic + Advanced) Web Technologies Module 1 - Core PHP XHTML What is HTML? Use of HTML. Difference between HTML, XHTML and DHTML. Basic HTML tags. Creating Forms with HTML. Understanding Web

More information

WordPress plugin development (with pictures) Simon Wheatley

WordPress plugin development (with pictures) Simon Wheatley WordPress plugin development (with pictures) Simon Wheatley www.simonwheatley.co.uk WordPress plugin development (with pictures) Simon Wheatley www.simonwheatley.co.uk plugins photo by djking anatomy of

More information

Toolbox: Utilizing the Shared Cart Feature

Toolbox: Utilizing the Shared Cart Feature Toolbox: Utilizing the Shared Cart Feature The shared cart feature offers Deacon Depot users the ability to share one cart among multiple users for easier order creation. To create a shared cart: From

More information

ebay Connector Features Module Configuration

ebay Connector Features Module Configuration ebay Connector webkul.com/blog/ebay-connector-for-magento2/ March 15, 2016 ebay Connector extension allows you to integrate Magento 2 store with ebay store. Import products, categories, and orders from

More information

Bitcoin for WooCommerce Documentation

Bitcoin for WooCommerce Documentation Bitcoin for WooCommerce Documentation Release 3.0.1 EliteCoderLab June 13, 2015 Contents 1 Table of Contents 3 2 Installation 5 2.1 Server Requirements........................................... 5 2.2

More information

Installation and Activation of Foody pro theme

Installation and Activation of Foody pro theme Installation and Activation of Foody pro theme Installation 1. Install Word Press from http://codex.wordpress.org/installing_wordpress. 2. Upload via Word press Admin: - Go to your WordPress admin panel,

More information

Vantiv ecommerce for Magento 2

Vantiv ecommerce for Magento 2 Vantiv ecommerce for Magento 2 User Guide Version 1.0.0 June 2017 Table of Content 1. Onboarding...3 2. Installation...3 3. Configuration...5 4. Nuances for each MOP...22 5. Checkout...23 6. Stored Payment

More information

WORDPRESS PLUGIN DEVELOPMENT

WORDPRESS PLUGIN DEVELOPMENT WORDPRESS PLUGIN DEVELOPMENT What Is a Plugin? WordPress plugins are apps that allow you to add new features and functionality to your WordPress website. Exactly the same way as apps do for your smartphone.

More information

Documentation of Color and Image Swatches for woocommerce. Installation of Color and Image Swatches for woocommerce

Documentation of Color and Image Swatches for woocommerce. Installation of Color and Image Swatches for woocommerce Documentation of Color and Image Swatches for woocommerce Installation of Color and Image Swatches for woocommerce Activation Once you have uploaded the plugin, activate your plugin in Plugins Installed

More information

ORDERING FROM TEMPLATES Click on the My Accounts tab at the top of the screen, and then select Templates.

ORDERING FROM TEMPLATES Click on the My Accounts tab at the top of the screen, and then select Templates. ONLINE ORDERING INSTRUCTIONS LOGGING IN Visit the All Med Website at www.amms.net LOG-IN with your User Name and Password User Name: Password (case-sensitive): ORDERING FROM TEMPLATES Click on the My Accounts

More information

Vantiv ecommerce for Magento 1 User Guide. Version 1.0.7

Vantiv ecommerce for Magento 1 User Guide. Version 1.0.7 Vantiv ecommerce for Magento 1 User Guide Version 1.0.7 Vantiv ecommerce for Magento 1... 1 User Guide... 1 1. Project... 3 2. Onboarding... 3 3. Installation... 3 4. Configuration... 5 5. Nuances for

More information

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Magento

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Magento About the Tutorial Magento is an open source E-commerce software, created by Varien Inc., which is useful for online business. It has a flexible modular architecture and is scalable with many control options

More information

Navigating the WordPress Plugin Landscape

Navigating the WordPress Plugin Landscape Navigating the WordPress Plugin Landscape Mark Hills 24th IEEE International Conference on Program Comprehension May 16-17, 2016 Austin, Texas, USA http://www.rascal-mpl.org 1 Background: WordPress Extremely

More information

Page 1 of 32. Rewards Points

Page 1 of 32. Rewards Points Page 1 of 32 Rewards Points Table of Contents Rewards Points... 1 Installation... 2 Configure Reward Points... 3 General Configuration... 4 Earning Points Configuration... 4 Spending Points Configuration:...

More information

WEBSITE INSTRUCTIONS

WEBSITE INSTRUCTIONS Table of Contents WEBSITE INSTRUCTIONS 1. How to edit your website 2. Kigo Plugin 2.1. Initial Setup 2.2. Data sync 2.3. General 2.4. Property & Search Settings 2.5. Slideshow 2.6. Take me live 2.7. Advanced

More information

MotoPress Restaurant Menu Plugin Documentation

MotoPress Restaurant Menu Plugin Documentation MotoPress Restaurant Menu Plugin Documentation Updated on January 11, 2017 Overview Addons Quick start guide Installation Create a menu item Create a menu category Add a menu tag Add ingredients Apply

More information

Ultimate GDPR Compliance Toolkit for WordPress. Release 1.1

Ultimate GDPR Compliance Toolkit for WordPress. Release 1.1 Ultimate GDPR Compliance Toolkit for WordPress Release 1.1 May 28, 2018 Contents 1 Ultimate GDPR Plugin 1 1.1 General Information.......................................... 1 1.2 Requirements..............................................

More information

Project Covered During Training: Real Time project Training

Project Covered During Training: Real Time project Training Website: http://www.php2ranjan.com/ Contact person: Ranjan Mobile/whatsapp: 91-9347045052, 09032803895 Dilsukhnagar, Hyderabad, India Email: purusingh2004@gmail.com Skype: purnendu_ranjan Course name:

More information

Static Webpage Development

Static Webpage Development Dear Student, Based upon your enquiry we are pleased to send you the course curriculum for PHP Given below is the brief description for the course you are looking for: - Static Webpage Development Introduction

More information

Fyndiq WooCommerce Plugin. User Guide Version 1.0.0

Fyndiq WooCommerce Plugin. User Guide Version 1.0.0 Fyndiq WooCommerce Plugin User Guide Version 1.0.0 1 Table of Contents Introduction Fyndiq Merchant Support Basic Configuration Required Credentials Connecting the Module Configuring Products General Requirements

More information

WEBSITE INSTRUCTIONS. Table of Contents

WEBSITE INSTRUCTIONS. Table of Contents WEBSITE INSTRUCTIONS Table of Contents 1. How to edit your website 2. Kigo Plugin 2.1. Initial Setup 2.2. Data sync 2.3. General 2.4. Property & Search Settings 2.5. Slideshow 2.6. Take me live 2.7. Advanced

More information

A Guide to Understand, Install and Use Pie Register WordPress Registration Plugin

A Guide to Understand, Install and Use Pie Register WordPress Registration Plugin A Guide to Understand, Install and Use Pie Register WordPress Registration Plugin 1 P a g e Contents 1. Introduction... 5 2. Who is it for?... 6 3. Community v/s PRO Version... 7 3.1. Which version is

More information

Portal > Knowledgebase > I am a Supplier/Decorator > ESP Websites > Website Settings

Portal > Knowledgebase > I am a Supplier/Decorator > ESP Websites > Website Settings Portal > Knowledgebase > I am a Supplier/Decorator > ESP Websites > Website Settings Website Settings Tamika C - 2017-02-07 - in ESP Websites Website Settings The Website Settings section enables you to

More information

Connecting VirtueMart To PayPal (Live)

Connecting VirtueMart To PayPal (Live) Connecting VirtueMart To PayPal (Live) After testing is complete in the PayPal Sandbox and you are satisfied all is well, then its time to disconnect VirtueMart from the PayPal Sandbox and connect Virtuemart

More information

QuickBooks Payments For WooCommerce : Introduction: Installation: Requirements:

QuickBooks Payments For WooCommerce : Introduction: Installation: Requirements: QuickBooks Payments For WooCommerce : Introduction: QuickBooks Payments For WooCommerce provides an easier, cost effective and simple alternative for a small business for accepting credit cards. Customers

More information

DOCUMENTATION OLAM WORDPRESS THEME

DOCUMENTATION OLAM WORDPRESS THEME DOCUMENTATION OLAM WORDPRESS THEME INDEX Theme installation 2 Setting up website 3 Sidebars & widgets 5 Working with EDD 8 Working with Unyson 8 Content Elements 9 Media elements 9 Olam elements 10 Creating

More information

Page 1 of 6. Plan Name. For more information please ref. to our pricing page or call us on Basic Advance Business Enterprise

Page 1 of 6. Plan Name. For more information please ref. to our pricing page or call us on Basic Advance Business Enterprise For more information please ref. to our pricing page or call us on +9 93268246 Plan Name Basic Advance Business Enterprise Frontend / Storefront / Website Features A General Features Mobile responsive

More information

Smart Bulk SMS & Voice SMS Marketing Script with 2-Way Messaging. Quick-Start Manual

Smart Bulk SMS & Voice SMS Marketing Script with 2-Way Messaging. Quick-Start Manual Mobiketa Smart Bulk SMS & Voice SMS Marketing Script with 2-Way Messaging Quick-Start Manual Overview Mobiketa Is a full-featured Bulk SMS and Voice SMS marketing script that gives you control over your

More information

Merchant e-solutions Payment Acceptance User Guide for Magento (M1)

Merchant e-solutions Payment Acceptance User Guide for Magento (M1) Merchant e-solutions Payment Acceptance User Guide for Magento (M1) Step-by-step guidance for setup and use of the Payment Acceptance extension for Magento 1 Table of Contents Key Contacts... 3 Extension

More information

Magento Enterprise Edition. User Guide. Part IV: Customers Sales & Orders Payments Shipping Taxes. Version

Magento Enterprise Edition. User Guide. Part IV: Customers Sales & Orders Payments Shipping Taxes. Version Magento Enterprise Edition User Guide Part IV: Customers Sales & Orders Payments Shipping Taxes Version 1.14.2 Contents Customers 1 Chapter 1: Customer Accounts 3 Customer Account Configuration 4 Customer

More information

WooCommerce Webshop Brochure

WooCommerce Webshop Brochure 1 WooCommerce Webshop Brochure 2018 EO Web Solutions AB 2 We help businesses choose the most optimal solution Lars J. Croff Founder of We help businesses by facilitating access to professional web solutions

More information

SV WooCommerce Order Export Documentation This documentation will help you to unleash the full functionality of SV WooCommerce Order Export Plugin.

SV WooCommerce Order Export Documentation This documentation will help you to unleash the full functionality of SV WooCommerce Order Export Plugin. straightvisions SV WooCommerce Order Export Documentation This documentation will help you to unleash the full functionality of SV WooCommerce Order Export Plugin. Download this document as PDF Compatibility

More information

PIMCORE TRAINING GUIDE

PIMCORE TRAINING GUIDE PIMCORE TRAINING GUIDE VERSION 1.0, MAY 2017 Table of Contents 1. Welcome to Pimcore... 3 1.1. Pimcore training offerings... 3 2. Pimcore Basic Training (2 Days)... 4 2.1. Pre-requisites... 4 2.2. Training

More information

ONEFUSION INSTRUCTION MANUAL HELPING YOU MANAGE YOUR OWN SITE

ONEFUSION INSTRUCTION MANUAL HELPING YOU MANAGE YOUR OWN SITE 11/6/2013 ONEFUSION INSTRUCTION MANUAL HELPING YOU MANAGE YOUR OWN SITE Wordpress 2013 One Fusion Table of Contents Welcome and Login... 1 Dashboard... 2 Dashboard Menu... 4 Toolbar... 6 Pages... 7 Add

More information

Migration Tool. User Guide. SHOPIFY to MAGENTO. Copyright 2014 LitExtension.com. All Rights Reserved.

Migration Tool. User Guide. SHOPIFY to MAGENTO. Copyright 2014 LitExtension.com. All Rights Reserved. SHOPIFY to MAGENTO Migration Tool User Guide Copyright 2014 LitExtension.com. All Rights Reserved. Shopify to Magento Migration Tool: User Guide Page 1 Contents 1. Preparation... 3 2. Set-up... 3 3. Set-up...

More information

Documentation of Check Pincode / Zipcode for Shipping and COD-Pro. Installation of Check Pincode / Zipcode for Shipping and COD-Pro

Documentation of Check Pincode / Zipcode for Shipping and COD-Pro. Installation of Check Pincode / Zipcode for Shipping and COD-Pro Documentation of Check Pincode / Zipcode for Shipping and COD-Pro Installation of Check Pincode / Zipcode for Shipping and COD-Pro Installation 1) Install Word Press from http://codex.wordpress.org/installing_wordpress.

More information

KonaKart Shopping Widgets. 3rd January DS Data Systems (UK) Ltd., 9 Little Meadow Loughton, Milton Keynes Bucks MK5 8EH UK

KonaKart Shopping Widgets. 3rd January DS Data Systems (UK) Ltd., 9 Little Meadow Loughton, Milton Keynes Bucks MK5 8EH UK KonaKart Shopping Widgets 3rd January 2018 DS Data Systems (UK) Ltd., 9 Little Meadow Loughton, Milton Keynes Bucks MK5 8EH UK Introduction KonaKart ( www.konakart.com ) is a Java based ecommerce platform

More information

General Settings General Settings Settings

General Settings General Settings Settings Contents General Settings... 3 Payment Methods... 31 Currency Management... 35 Sales Tax... 37 Commission Settings... 40 Affiliate Commission Settings... 43 Email Templates Management... 46 Subscription

More information

Top 10 WordPress Plugins.

Top 10 WordPress Plugins. Top 10 WordPress Plugins Thank you for downloading this ebook. I wrote this guide to help others learn which plugins are the best to install to use with WordPress. This ebook is a guide, and the purpose

More information

edirectory Change log

edirectory Change log edirectory 11.2.00 Change log Arca Solutions 7138 Little River Turnpike #1825 Annandale, VA 22003 www.arcasolutions.com 1. What s new 1. Sponsors can now add a video to their classifieds ads 2. Sponsors

More information

Shopping Basket and Order Requirements

Shopping Basket and Order Requirements Page 1 of 41 Page 2 of 41 1. The user can browse the site and select the product items to be added to the Shopping basket. Use the Catalog link to search and add products to the shopping basket or click

More information

VolunteerMatters Wordpress Web Platform estore Admin Guide. Version 1.1

VolunteerMatters Wordpress Web Platform estore Admin Guide. Version 1.1 VolunteerMatters Wordpress Web Platform estore Admin Guide Version 1.1 VolunteerMatters Wordpress Web: estore Admin Guide This VolunteerMatters Wordpress Web Platform administrative guide is broken up

More information

Getting Started Guide. Prepared by-fatbit Technologies

Getting Started Guide. Prepared by-fatbit Technologies Getting Started Guide Prepared by-fatbit Technologies 1 Contents 1. Manage Settings... 3 1.1. General... 4 1.2. Local... 6 1.3. SEO... 7 1.4. Option... 8 1.5. Live Chat... 19 1.6. Third Part API s... 20

More information

SMS Plugin for Magento Manual

SMS Plugin for Magento Manual 1 SMS Plugin for Magento Manual v1.0.0 Installation Configuration Account Info Tab API key Setup Actions Tab New Order panel Order Status panel Admin Actions panel Mass SMS to Customers Sent List Contents

More information

Blue Form Builder extension for Magento 2

Blue Form Builder extension for Magento 2 Blue Form Builder extension for Magento 2 User Guide Version 1.0 Table of Contents I) Introduction......5 II) General Configurations....6 1) General Settings.....7 2) ReCaptcha... 8 III) Manage Forms......

More information

One Step Checkout for Magento 2

One Step Checkout for Magento 2 magento_2:one_step_checkout https://amasty.com/docs/doku.php?id=magento_2:one_step_checkout For more details see the One Step Checkout extension page. Display all checkout steps on one page to let visitors

More information

ONE STEP CHECKOUT. USER GUIDE for Magento 2.0. Version

ONE STEP CHECKOUT. USER GUIDE for Magento 2.0. Version support@magestore.com sales@magestore.com +1-415-954-7137 ONE STEP CHECKOUT USER GUIDE for Magento 2.0 Version 1.0 One step checkout v1.0 User Guide for Magento 2.0 1 Table of Contents 1. INTRODUCTION

More information

Follow Up . Magento Extension User Guide. Official extension page: Follow Up . User Guide: Follow Up

Follow Up  . Magento Extension User Guide. Official extension page: Follow Up  . User Guide: Follow Up Follow Up Email Magento Extension User Guide Official extension page: Follow Up Email Page 1 Table of contents: 1. Follow Up Email configuration....3 2. Rule creation...7 3. Follow up email templates.....17

More information

USER MANUAL. SuitePort - SuiteCRM Customer Portal for WordPress TABLE OF CONTENTS. Version: 2.5.0

USER MANUAL. SuitePort - SuiteCRM Customer Portal for WordPress TABLE OF CONTENTS. Version: 2.5.0 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Prerequisites... 1 Installation... 2 SuiteCRM Plug-in Installation... 2 WordPress Manual Plug-in installation... 3 Plug-in

More information

Fyndiq Prestashop Module

Fyndiq Prestashop Module Fyndiq Prestashop Module User guide. Version 2.0 Introduction 2 Fyndiq Merchant Support 2 Prerequisites 2 Seller account 3 Create the account 4 Your company 4 Contact information 4 Your webshop on Fyndiq

More information

GeoIP - Magento 2 USER MANUAL MAGEDELIGHT.COM E:

GeoIP - Magento 2 USER MANUAL MAGEDELIGHT.COM E: GeoIP - Magento 2 USER MANUAL MAGEDELIGHT.COM E: SUPPORT@MAGEDELIGHT.COM License Key After successful installation of GeoIP extension by using the Magento setup, you are now required to configure the license

More information

WordPress and ecommerce. A match made in heaven?

WordPress and ecommerce. A match made in heaven? WordPress and ecommerce A match made in heaven? $165.4 Billion merchant accounts inventory security PCI Compliance ecommerce is hard! payment gateways shopping carts ssl certificates Today s Outline Onsite

More information

Sliding PayPal Shopping Cart 2 DMXzone

Sliding PayPal Shopping Cart 2 DMXzone Table of contents Table of contents... 1 About Sliding PayPal Shopping Cart 2... 2 Features in Detail... 3 The Basics: Use Sliding PayPal Shopping Cart 2 on your Page... 21 Advanced: Different Options

More information

Event Scheduling System 4.0 User Guide

Event Scheduling System 4.0 User Guide This document was produced by Voloper Creations Inc. 2000 2009 Voloper Creations Inc. All Rights Reserved Brands or product names are trademarks or registered trademarks of their respective holders. The

More information

WP Voting Plugin - Ohiowebtech Video Extension - Youtube Documentation

WP Voting Plugin - Ohiowebtech Video Extension - Youtube Documentation WP Voting Plugin - Ohiowebtech Video Extension - Youtube Documentation Overview This documentation includes details about the WP Voting Plugin - Video Extension Plugin for Youtube. This extension will

More information

OSoftMediia IT Solutions & Services

OSoftMediia IT Solutions & Services OSoftMediia IT Solutions & Services Proposal for Summer Industrial Training May, June, July 2018 OSoftMediia is an organization registered under Udyog Aadhaar by Government of India - Ministry of Micro,

More information

Extra Fee for Magento 2

Extra Fee for Magento 2 Extra Fee for Magento 2 Magento 2 Extension User Guide Official extension page: Extra Fee for Magento 2 Page 1 Table of contents: 1. General settings.....3 2. Extra Fees Creation.....5 3. Condition Settings...11

More information

Cart Product Selector. Quick Start Guide

Cart Product Selector. Quick Start Guide Cart Product Selector Quick Start Guide 1. Introduction Cart Product Selector is an extension which allows the customer to selectively choose products present in the cart and proceed to checkout with the

More information

Read the Docs Template Documentation

Read the Docs Template Documentation Read the Docs Template Documentation Release 1.0 Read the Docs Jun 27, 2017 KNOWLEDGE BASE 1 Support 1 2 AdminExtra 3 2.1 Compatibility............................................... 3 2.2 Features..................................................

More information

InstantSearch+ Documentation for WooCommerce

InstantSearch+ Documentation for WooCommerce InstantSearch+ Documentation for WooCommerce Contents Overview... 1 Top Menu... 2 Home...2 Pricing...2 Help & Support...2 Stores...2 Account...4 Dashboard Tabs... 5 Analytics...5 AutoComplete...9 Search

More information

Helpline No WhatsApp No.:

Helpline No WhatsApp No.: TRAINING BASKET QUALIFY FOR TOMORROW Helpline No. 9015887887 WhatsApp No.: 9899080002 Regd. Off. Plot No. A-40, Unit 301/302, Tower A, 3rd Floor I-Thum Tower Near Corenthum Tower, Sector-62, Noida - 201309

More information

MMP350 Class Notes Week 8

MMP350 Class Notes Week 8 MMP350 Class Notes Week 8 MMP350 Class Notes Week 8... 1 This Week s goals... 1 Materials... 1 Creating a Child Theme... 2 Purpose... 2 Overview... 2 Step: Create a Child Theme Folder... 2 Step: Enqueue

More information

Jquery Manually Set Checkbox Checked Or Not

Jquery Manually Set Checkbox Checked Or Not Jquery Manually Set Checkbox Checked Or Not Working Second Time jquery code to set checkbox element to checked not working. Apr 09 I forced a loop to show checked state after the second menu item in the

More information

DPD API Reference Documentation

DPD API Reference Documentation DPD API Reference Documentation Release 2.0 Portal Labs, LLC May 09, 2017 CONTENTS 1 DPD API 3 1.1 About................................................... 3 2 Authentication 5 3 Limitations 7 3.1 Pagination................................................

More information

Sendroid Ultimate. User Manual

Sendroid Ultimate. User Manual Sendroid Ultimate User Manual System Overview Sendroid Ultimate is an ultimate bulk SMS portal software and SMS reseller system designed for bulk SMS service providers, SMS resellers and bulk SMS marketers.

More information

Octolooks Scrapes Guide

Octolooks Scrapes Guide Octolooks Scrapes Guide https://octolooks.com/wordpress-auto-post-and-crawler-plugin-scrapes/ Version 1.4.4 1 of 21 Table of Contents Table of Contents 2 Introduction 4 How It Works 4 Requirements 4 Installation

More information

More information >>> HERE <<<

More information >>> HERE <<< buy tickets wordpress plugin; affiliate link submission software; best price table wordpress plugin; affiliate links in iphone apps; wordpress plugin ajax tutorial More information >>> HERE

More information

PHP / MYSQL DURATION: 2 MONTHS

PHP / MYSQL DURATION: 2 MONTHS PHP / MYSQL HTML Introduction of Web Technology History of HTML HTML Editors HTML Doctypes HTML Heads and Basics HTML Comments HTML Formatting HTML Fonts, styles HTML links and images HTML Blocks and Layout

More information

Geo Tax for J2Store. Plugin for Joomla! / J2Store. This manual documents version 3.1.x of the Joomla! / J2Store extension.

Geo Tax for J2Store. Plugin for Joomla! / J2Store. This manual documents version 3.1.x of the Joomla! / J2Store extension. Geo Tax for J2Store Plugin for Joomla! / J2Store This manual documents version 3.1.x of the Joomla! / J2Store extension. http://www.aimy-extensions.com/joomla/geo-tax-for-j2store.html 1 Introduction Aimy

More information

USER MANUAL. SalesPort Salesforce Customer Portal for WordPress (Lightning Mode) TABLE OF CONTENTS. Version: 3.1.0

USER MANUAL. SalesPort Salesforce Customer Portal for WordPress (Lightning Mode) TABLE OF CONTENTS. Version: 3.1.0 USER MANUAL TABLE OF CONTENTS Introduction...1 Benefits of Customer Portal...1 Prerequisites...1 Installation...2 Salesforce App Installation... 2 Salesforce Lightning... 2 WordPress Manual Plug-in installation...

More information

Design Gallery User Guide

Design Gallery User Guide Design Gallery User Guide Table of Contents Placing an Order... 3 For Stock and Print on Demand Items... 4 For Customizable Items... 5 Advanced Location Search in Shopping... 7 Your Shopping Cart... 8

More information