=== Resell GD ===
Contributors: lcwakeman
Donate link: http://larrywakeman.com/category/downloads/
Tags: Resell GD, storefront interface, domain name searches
Requires at least: 4.2
Tested up to: 4.3.1
Stable tag: 1.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Resell GD Plugin - Allow GoDaddy Resellers to redirect product sales and perform domain name search through their reseller.

== Description ==

Resell GD Plugin - Allow GoDaddy Resellers to redirect product sales and perform domain name search through their reseller.

This plugin helps Resell GDs set up a store front on their own site that allows their users to perform Domain searched
and purchase other hosting and domain products.

Features include:
*	Upgrade Safe customization
* Importing of exported GoDaddy Price Lists
* Exporting of Price Lists for importing into GoDaddy

== Installation ==

1. Upload `plugin-name.php` to the `/wp-content/plugins/` directory
1. Activate the plugin through the 'Plugins' menu in WordPress
1. Configure Resell GD
1. Import GoDaddy Products
1. Import GoDaddy Prices
1. Create a page with the [gd_domain_search] shortcode for a domain search page
1. Add the Domain Search widget for domain searches from the sidebar
1. Create page(s) with the [gd_products <group id>] shortcode to allow users to select a product and add it to the cart.

== Frequently Asked Questions ==

No questions to date

== Upgrade Notice ==

= 1.0 =
* Initial version.

== Screenshots ==

1. Configure Resell GD. Enter your GoDaddy Program ID and Domain Search URL.
2. Import GoDaddy Products. Select the Export Group, the GoDaddy Price management page the products are on, and click the Do Import button. The import can rakde some time.
3. Import GoDaddy Prices. These are the prices exported from the GoDaddy Price management page.
4. Add your shortcodes to your posts or pages. You can use the Shortcode Generator to generate a shortcode.

== Changelog ==

= 1.0 =
* Initial version.

== Customization ==

This plugin is built completely with PHP Objects. All of the obhects except godaddyreseller.php can be inherited for customiztion.
There are some rules for this:

* The customized object must be in the custom directory.
* The filename must be <object name>_custom.php, i.e. gd_admin_custom.php
* The class must be named <object name>_custom and inherit <object name>, i.e `class gd_core_custom inherits gd_core {`.
* It should include a constructor that calls the parent constructor:
`	function __construct() {
		parent::__construct();
	}
`

javascript and css files may be customized also. The custom items are placed in the custom folder and named custom.js and 
custom.css. The default scripts and css files are enqueued before the custom scripts.

