Plugin Directory

Changeset 700471

Timestamp:
04/19/2013 08:05:54 PM (11 years ago)
Author:
jbrinley
Message:

deprecate plugin

Location:
really-simple-e-commerce/trunk
Files:
19 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • really-simple-e-commerce/trunk/readme.txt

    r301039 r700471  
    55Requires at least: 3.0
    66Tested up to: 3.0.1
    7 Stable tag: 0.8.4
     7Stable tag:
    88
    99A simple, modular e-commerce/shopping cart plugin that focuses on setting up a simple, low-hassle e-commerce site.
     
    1111== Description ==
    1212
    13 A simple e-commerce/shopping cart plugin that focuses on setting up a simple, low-hassle e-commerce site. The plugin aims to just work without requiring complex configuration on the part site administrator or end user. Modular components can extend the functionality of the plugin and add new payment gateways.
     13s.
    1414
    15 Currently supports [PayPal WPS](https://www.paypal.com/us/mrb/pal=FZ3D6V3SQJUJG) and the [Authorize.net](https://ems.authorize.net/oap/home.aspx?SalesRepID=39&ResellerID=14955) and [Sage](http://processingpoint.com/index.php?option=com_content&view=article&id=54&Itemid=34) payment gateways. Others (including PayPal WPP, and Payflow Pro) will be added in the future.
    16 
    17 Created by [Adelie Design](http://www.AdelieDesign.com)
    18 
    19 == Installation ==
    20 
    21 1. Download and unzip the plugin
    22 1. Upload the `really-simple-e-commerce` folder to the `/wp-content/plugins/` directory
    23 1. Activate the plugin through the 'Plugins' menu in WordPress
    24 1. Create a (blank) page for the cart and a (blank) page for checkout
    25 1. Set options through the 'E-Commerce' menu.
    26 1. Configure your payment gateway on the Gateway Settings page.
    27 1. Create products using the form at the bottom of an 'Edit Page' screen.
    28 
    29 == Frequently Asked Questions ==
    30 
    31 = How do I add an 'Add to Cart' button to a page? =
    32 
    33 An 'Add to Cart' button will automatically appear on any page with an active product. To control where the button appears on that page, include the `[add_to_cart]` shortcode anywhere on that page.
    34 
    35 To include a button on a different page, use the `[add_to_cart]` shortcode with an argument for the page ID of the product. E.g., `[add_to_cart pid=40]` or just `[add_to_cart 40]`.
    36 
    37 = I need to be able to pay with X =
    38 
    39 I'll add new payment processors as I can.
    40 
    41 New payment processors for Really Simple E-Commerce can be created as separate modules. The plugin should create a class that extends `RSECommercePaymentHandler`.
    42 
    43 = Where can I get a list of products? =
    44 
    45 If you use the Product post type, all Product posts will be listed at http://example.com/product/.
    46 
    47 = I get PHP errors when I try to activate the plugin =
    48 
    49 If you don't have PHP 5 or higher, you'll get an error similar to the following:
    50 `Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}'`
    51 
    52 This plugin does not support older versions of PHP.
    53 
    54 = Where can I get support? =
    55 Contact [Adelie Design](http://www.AdelieDesign.com) at [http://www.AdelieDesign.com](http://www.AdelieDesign.com)
    56 
    57 == Changelog ==
    58 
    59 = 0.1 =
    60 * Initial version
    61 
    62 
    63 = 0.2 =
    64 
    65 * Some major refactoring to take advantage of WP's filter and action hooks.
    66 * An untested implementation of the Sage payment gateway is included (uncomment the last lines of really-simple-e-commerce.php to try it out).
    67 * Posts can now be products, too.
    68 
    69 
    70 = 0.2.1 =
    71 
    72 * Fixed credit card number validation
    73 
    74 
    75 = 0.3 =
    76 
    77 * Sage payment gateway now supported
    78 
    79 
    80 = 0.3.1 =
    81 
    82 * Disabled plugin for PHP < 5
    83 * Some cosmetic updates to the product box
    84 * Verified WP 3.0 compatibility
    85 
    86 = 0.3.2 =
    87 
    88 * Some documentation clean-up
    89 
    90 = 0.4 =
    91 
    92 * Major refactoring, breaking out Orders, Products, and Cart into separate classes
    93 * Order dates now stored in UTC
    94 * Added Test Gateway
    95 * Carts now stored in the database instead of cookies
    96 
    97 = 0.5 =
    98 
    99 * Fixed bug that prevented creation of new carts on a fresh install/activation
    100 * PayPal Website Payments Standard (WPS) now supported
    101 * Added filter hooks for editing checkout/notification panes
    102 
    103 = 0.6 =
    104 
    105 * Added an option to set the currency symbol
    106 
    107 = 0.7 =
    108 
    109 * Added optional stock management feature
    110 
    111 = 0.8 =
    112 
    113 * Added Product post type
    114 * Added option to select which post types to use for products
    115 
    116 = 0.8.2 =
    117 
    118 * `add_to_cart` action now accepts array of product IDs
    119 * Properly escaped product names
    120 * Fixed gateway settings link for non-root WP directories
    121 * Wrapped most (all?) text strings in i18n functions
    122 * New hook for shipping calculations
    123 
    124 = 0.8.3 =
    125 
    126 * Added localization hook and .pot file
    127 
    128 == Todo ==
    129 RSECommerce will be ready for version 1.0 when all the following features have been implemented:
    130 
    131 * Support for Google Checkout
    132 * Support for PayPal WPP
    133 * Support for PayFlow Pro
    134 * Support a cash/check/bill payment method
    135 * Full internationalization support
    136 * Fully documented
    137 * UI for selecting required/optional fields
    138 * Auto-discovery feature for new add-ons in the add-on directory
    139 * Template overrides in theme or other plugins
    140 
    141 Possible features for version 2.0:
    142 
    143 * Support for multiple payment types
    144 * UI for adding product attributes
Note: See TracChangeset for help on using the changeset viewer.