Changeset 767948
- Timestamp:
- 09/06/2013 02:15:18 PM (13 years ago)
- Location:
- classdex/trunk
- Files:
-
- 4 added
- 3 edited
-
classdex.php (modified) (2 diffs)
-
css/classdex.css (added)
-
css/img (added)
-
css/img/inset_line.png (added)
-
css/img/th.png (added)
-
includes/shortcodes.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
classdex/trunk/classdex.php
r767486 r767948 5 5 Description: A class and customer management system for Wordpress. 6 6 Author: John Daskovsky 7 Version: 1.1. 37 Version: 1.1.4 8 8 Author URI: http://howtononprofit.wordpress.com/about/ 9 9 … … 308 308 } 309 309 310 311 310 function load_admin_custom_css(){ 312 311 add_action( 'admin_enqueue_scripts', 'load_custom_classdex_style' ); 313 312 } 313 314 function classdex_enqueue_style() { 315 wp_register_style( 'classdex_public_css', CLASSDEX_URL . '/css/classdex.css'); 316 wp_enqueue_style( 'classdex_public_css' ); 317 } 318 add_action( 'wp_enqueue_scripts', 'classdex_enqueue_style' ); 314 319 ?> -
classdex/trunk/includes/shortcodes.php
r767486 r767948 116 116 $content .= $class_status; 117 117 } 118 $content .= "<br> [divider]";118 $content .= "<br><div class=\"classdex_divider\"></div>"; 119 119 } 120 120 } … … 147 147 }else{ 148 148 149 $content .= " [fancy_table]<table><thead><tr>";149 $content .= "<table class=\"classdex_fancy_table\"><thead><tr>"; 150 150 $content .= "<th><strong>Class</strong></th><th><strong>Day</strong></th><th style=\"width: 75px;\"><strong>Time</strong></th><th style=\"width: 100px;\"><strong>Dates</strong></th><th><strong>Fee</strong></th><th style=\"width: 240px;\"><strong>Registration</strong></th></tr></thead><tbody>"; 151 151 … … 174 174 $content .= "</tr>"; 175 175 } 176 $content .= "</tbody></table> [/fancy_table]";176 $content .= "</tbody></table>"; 177 177 } 178 178 -
classdex/trunk/readme.txt
r767486 r767948 4 4 Requires at least: 3.5 5 5 Tested up to: 3.6 6 Stable tag: 1.1. 36 Stable tag: 1.1.4 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 46 46 == Changelog == 47 47 48 = Version 1.1.4 = 49 * NEW: Added custom ClassDex css for the front end. 50 * FIXED: Generalized style of shortcode displays. 51 * FIXED: Removed improper shortcode usage. 52 48 53 = Version 1.1.3 = 49 54 * NEW: Added clarifying text to the class waiver. … … 72 77 73 78 = 1.1.3 = 79 This release improves the shortcode displays and adds custom css flexibility. [See documentation for details.](http://howtononprofit.wordpress.com/classdex/) 80 81 = 1.1.3 = 74 82 This release contains several bug fixes and new features. Please note, the shortcodes have changed. [See documentation for details.](http://howtononprofit.wordpress.com/classdex/) 75 83
Note: See TracChangeset
for help on using the changeset viewer.