Changeset 210475
- Timestamp:
- 02/26/2010 10:04:03 AM (16 years ago)
- Location:
- membership-subscription-management/tags/1.5.2
- Files:
-
- 6 copied
-
. (copied) (copied from membership-subscription-management/trunk)
-
byrd_rolessubscriptions (copied) (copied from membership-subscription-management/trunk/byrd_rolessubscriptions)
-
byrd_rolessubscriptions/database/table.php (copied) (copied from membership-subscription-management/trunk/byrd_rolessubscriptions/database/table.php)
-
byrd_rolessubscriptions/index.php (copied) (copied from membership-subscription-management/trunk/byrd_rolessubscriptions/index.php) (1 diff)
-
byrd_rolessubscriptions/ipn.php (copied) (copied from membership-subscription-management/trunk/byrd_rolessubscriptions/ipn.php)
-
byrd_rolessubscriptions/readme.txt (copied) (copied from membership-subscription-management/trunk/byrd_rolessubscriptions/readme.txt) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
membership-subscription-management/tags/1.5.2/byrd_rolessubscriptions/index.php
r200383 r210475 48 48 function getLogin(){ 49 49 global $byrdRoles; 50 $byrdRoles = newgetLogin();50 $byrdRoles->getLogin(); 51 51 } 52 52 -
membership-subscription-management/tags/1.5.2/byrd_rolessubscriptions/readme.txt
r200383 r210475 5 5 Requires at least: 2.0 6 6 Tested up to: 3.0 7 Stable tag: 1.5. 17 Stable tag: 1.5.0 8 8 9 9 Plugin Manages user subscriptions by creating and deleting user accounts while managing their payments. … … 41 41 1. Activate the plugin through the 'Plugins' menu in WordPress 42 42 1. 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.43 1. Insert `<!-- byrd_subscription() -->` into any Page. 44 1. Insert `<!-- byrd_login() -->` into any Page. 45 45 46 46 **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. … … 58 58 There 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. 59 59 60 <?php byrd_subscription(); ?> 60 <?php byrd_subscription(); ?> 61 or 62 <?php global $byrdRoles; $byrdRoles->byrd_subscription();?> 61 63 62 64 The 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. 63 65 64 <!-- byrd_subscription() --> 66 <!-- byrd_subscription() --> 65 67 66 68 1. **Login Widget** 67 69 The same rules apply to the two following snippets. The first is for php developers, the second is for the wordpress editable pages. 68 70 69 <?php byrd_login(); ?> 70 <!-- byrd_login() --> 71 <?php byrd_login(); ?> 72 or 73 <?php global $byrdRoles; $byrdRoles->getLogin();?> 74 <!-- byrd_login() --> 75 71 76 72 77 1. **Confirmation Page**
Note: See TracChangeset
for help on using the changeset viewer.