Changeset 788177
- Timestamp:
- 10/15/2013 01:45:15 PM (12 years ago)
- Location:
- classdex/trunk
- Files:
-
- 5 edited
-
classdex.php (modified) (1 diff)
-
create_class.php (modified) (1 diff)
-
edit_class.php (modified) (1 diff)
-
includes/functions.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
classdex/trunk/classdex.php
r778774 r788177 5 5 Description: A class and customer management system for Wordpress. 6 6 Author: John Daskovsky 7 Version: 1.1. 57 Version: 1.1.6 8 8 Author URI: http://howtononprofit.wordpress.com/about/ 9 9 -
classdex/trunk/create_class.php
r767486 r788177 96 96 if(class_exists('Cart66Product')) { 97 97 $product = new Cart66Product(); 98 $_POST['cart66_product_nonce'] = wp_create_nonce('cart66_product_nonce'); 98 99 if($discounts) { 99 100 $product->setData(array( -
classdex/trunk/edit_class.php
r767486 r788177 107 107 $product = new Cart66Product(); 108 108 $product->loadByItemNumber($class_id); 109 $_POST['cart66_product_nonce'] = wp_create_nonce('cart66_product_nonce'); 109 110 if($discounts) { 110 111 $product->setData(array( -
classdex/trunk/includes/functions.php
r767486 r788177 501 501 echo "<td>{$row['phone']}</td>"; 502 502 echo "<td>"; 503 $payment = get_reg_deposit($row['reg_id']); 503 504 if(is_paid($row['reg_id'])) { echo "PAID"; } 505 elseif($payment > 0) { echo "Partial"; } 506 else { echo "Unpaid"; } 504 507 echo "</td>"; 505 $payment = get_reg_deposit($row['reg_id']);506 508 $delete_registration_url = "admin.php?page=classdex_delete_table_item&noheader=true&t=registrations&i=" . urlencode($row['reg_id']); 507 509 echo "<td><a href=\"admin.php?page=classdex_edit_customer&cust_id={$row['cust_id']}\"><i class=\"icon-pencil\"></i> Edit</a> -
classdex/trunk/readme.txt
r778774 r788177 3 3 Tags: class registration, customer management, yoga studio, Mailchimp, Cart66 4 4 Requires at least: 3.5 5 Tested up to: 3.6 6 Stable tag: 1.1. 55 Tested up to: 3.6.1 6 Stable tag: 1.1.6 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 13 13 14 14 [Read the detailed documentation.](http://howtononprofit.wordpress.com/classdex/) 15 15 16 [Questions? Post in the forum.](http://wordpress.org/support/plugin/classdex) 16 17 … … 45 46 46 47 == Changelog == 48 49 = Version 1.1.6 = 50 * FIXED: Repaired integration with Cart66 version 1.5.1.15. 51 * NEW: Added Unpaid and Partial as payment status descriptions. 47 52 48 53 = Version 1.1.5 =
Note: See TracChangeset
for help on using the changeset viewer.