Plugin Directory

Changeset 210475


Ignore:
Timestamp:
02/26/2010 10:04:03 AM (16 years ago)
Author:
jonbyrd
Message:
 
Location:
membership-subscription-management/tags/1.5.2
Files:
6 copied

Legend:

Unmodified
Added
Removed
  • membership-subscription-management/tags/1.5.2/byrd_rolessubscriptions/index.php

    r200383 r210475  
    4848    function getLogin(){
    4949        global $byrdRoles;
    50         $byrdRoles = new getLogin();
     50        $byrdRoles->getLogin();
    5151    }
    5252   
  • membership-subscription-management/tags/1.5.2/byrd_rolessubscriptions/readme.txt

    r200383 r210475  
    55Requires at least: 2.0
    66Tested up to: 3.0
    7 Stable tag: 1.5.1
     7Stable tag: 1.5.0
    88
    99Plugin Manages user subscriptions by creating and deleting user accounts while managing their payments.
     
    41411. Activate the plugin through the 'Plugins' menu in WordPress
    42421. Set the configurations for your Subscription in the wp admin
    43 1. Insert `<!-- byrd_subscription() -->` into any Page.
    44 1. Insert `<!-- byrd_login() -->` into any Page.
     431. Insert `<!-- byrd_subscription() -->` into any Page.
     441. Insert `<!-- byrd_login() -->` into any Page.
    4545
    4646**TIP:** This plugin cannot be installed via the wordpress automatic installer because wordpress is placing the plugin inside of another folder which is causing the plugin to not display. If you don't have the ability to ftp into your site and get this installed properly, just send me an email and I'll install it for you.
     
    5858There are two ways to paste your subscription information into your pages or posts. The first is the PHP method. I suggest that you only use this if you are comfortable with PHP coding.
    5959
    60 &lt;?php byrd_subscription(); ?&gt;
     60<?php byrd_subscription(); ?>
     61or
     62<?php global $byrdRoles; $byrdRoles->byrd_subscription();?>
    6163
    6264The second method is to paste this HTML comment directly into the html editor in the wordpress admin area. Simply edit your page or post, then change the editor to HTML and paste this code.
    6365
    64 &lt;!-- byrd_subscription() --&gt;
     66<!-- byrd_subscription() -->
    6567       
    66681. **Login Widget**
    6769The same rules apply to the two following snippets. The first is for php developers, the second is for the wordpress editable pages.
    6870
    69 &lt;?php byrd_login(); ?&gt;
    70 &lt;!-- byrd_login() --&gt;
     71<?php byrd_login(); ?>
     72or
     73<?php global $byrdRoles; $byrdRoles->getLogin();?>
     74<!-- byrd_login() -->
     75
    7176       
    72771. **Confirmation Page**
Note: See TracChangeset for help on using the changeset viewer.