Linux 软件免费装
Banner图

Resell GD

开发者 lcwakeman
更新时间 2019年11月19日 01:26
捐献地址: 去捐款
PHP版本: 4.2 及以上
WordPress版本: 5.3
版权: GPLv2 or later
版权网址: 版权信息

标签

storefront interface domain name searches Resell GD

下载

1.0 1.1 1.2 1.3 1.4

详情介绍:

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:

安装:

  1. Upload plugin-name.php to the /wp-content/plugins/ directory
  2. 通过WordPress的“插件”菜单激活插件
  3. Configure Resell GD
  4. Import GoDaddy Products
  5. Import GoDaddy Prices
  6. Create a page with the [gd_domain_search] shortcode for a domain search page
  7. Add the Domain Search widget for domain searches from the sidebar
  8. Create page(s) with the [gd_products ] shortcode to allow users to select a product and add it to the cart.

屏幕截图:

  • Configure Resell GD. Enter your GoDaddy Program ID and Domain Search URL. The Purge GoDaddy Products checkbox will delete all the GoDaddy products from the database.
  • 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.
  • Import GoDaddy Prices. These are the prices exported from the GoDaddy Price management page.
  • Add your shortcodes to your posts or pages. You can use the Shortcode Generator to generate a shortcode.

升级注意事项:

1.0
  • Initial version.
1.1
  • GoDaddy Import/Export format change.
  • FAQ changes.
1.2
  • depreciated code updated
  • Added Hosting Account Login and Create Widget.
  • Fixed Import Issues. Purging and reimporting products and pricing required after this upgrade. Admin->Settings->Resell GD.
  • 国际化
1.3
  • Better error reporting
  • Multiple Sedtion ID support for gd_products shortcode - [gd_products id id...]. This is required because some products that you may want to display together end up with different section ids.
1.4
  • PHP 7.1

常见问题:

How can I change the look of the Domain Search Widget

The html and the css for the widget are very spartan. It is dimply a form with a text box and a submit button. The first change you might want to make is to the css for the widget. Follow the following steps to change the css.

  1. Create the resell-gd_custom directory in the plugins directory of you site if it doesn't exist.
  2. Create the file custom.css if it doesn't exist.
  3. If the following rules do not exist, create them or edit the existing rules. Note that the sprite image I am using is in the resell-gd_custom/images directory.
  4. Save the files and check it out.
`.gd_widget_submit { background: rgba(0, 0, 0, 0) url("images/readmore-sprite.png") no-repeat scroll left top; border: none; border-radius: 23px; display: block; height: 46px; width: 200px; font-size: 125%; color: #fff; } .gd_widget_input { width: 200px; } ` To add text to the widget, do the following:
  1. Create the resell-gd_custom directory in the plugins directory of you site if it doesn't exist.
  2. Create the file gd_widget_custom.php. Insert the following:
`<?php class gd_widget_custom extends gd_widget { function __construct() { parent::__construct(); } public function widget( $args, $instance ) { $args['after_widget'] = ' It All Starts With A Domain Name'.$args['after_widget']; parent::widget( $args, $instance ); } } ` The above will add the text 'It All Starts With A Domain Name' below the widget.

更新日志:

1.0 1.1 1.2 1.3 1.4