Changeset 2270394
- Timestamp:
- 03/29/2020 11:04:36 PM (6 years ago)
- Location:
- simple-course-creator-customizer/trunk
- Files:
-
- 5 added
- 1 deleted
- 5 edited
-
README.md (modified) (3 diffs)
-
assets/banner-1544x500.png (added)
-
assets/banner-772x250.png (added)
-
assets/icon-128x128.png (added)
-
assets/icon-256x256.png (added)
-
assets/icon.svg (added)
-
assets/screenshot-1.png (modified) (previous)
-
assets/screenshot-2.png (deleted)
-
includes/admin/class-scc-customizer.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
simple-course-creator-customizer.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-course-creator-customizer/trunk/README.md
r911752 r2270394 4 4 View it on WordPress: (http://wordpress.org/plugins/simple-course-creator-customizer/) 5 5 6 This is an add-on plugin for use with the [Simple Course Creator](https://github.com/sdavis2702/simple-course-creator) plugin. 6 This is an add-on plugin for use with the [Simple Course Creator](https://github.com/sdavismedia/simple-course-creator 7 ) plugin. 7 8 8 9 Simple Course Creator is designed to easily link posts together in a series and output that series list in the content of each included post. … … 22 23 --- 23 24 24 For **complete** customization control with HTML, CSS, and JS, skip out on this add-on follow the [Theme Overrides section](https://github.com/ sdavis2702/simple-course-creator#theme-overrides) of Simple Course Creator.25 For **complete** customization control with HTML, CSS, and JS, skip out on this add-on follow the [Theme Overrides section](https://github.com/SDavisMedia/simple-course-creator#theme-overrides) of Simple Course Creator. 25 26 26 27 ### Bugs and Contributions … … 37 38 --- 38 39 39 I'm Sean. I created the [Volatyl Framework](http://volatylthemes.com) for WordPress. I like to do most of my WordPress stuff on [Build WordPress Yourself](http://buildwpyourself.com/). I also write stuff on my [personal site](http://seandavis.co) and [SDavis Media](http://sdavismedia.com). Follow me on the [Twitter](http://sdvs.me/twitter) machine.40 I'm Sean. I've created a few little pieces of software. I'm not that easy to find online. That's by design. 40 41 41 Meanwhile, tell me... is this plugin useful to you? If so, consider buying me a box of "Tazo: Awake - English Breakfast Black Tea." I need ALL the energiez. Thanks. [Donate Black Tea](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=52HQDSEUA542S) 42 Is this plugin useful to you? If so, please consider buying me a bag of coffee beans. Thank you much. [Donate via 43 PayPal](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=52HQDSEUA542S) -
simple-course-creator-customizer/trunk/includes/admin/class-scc-customizer.php
r1443536 r2270394 188 188 #customize-control-scc_padding_px label:after, 189 189 #customize-control-scc_border_px label:after, 190 #customize-control-scc_border_radius label:after { content: " px"; }190 #customize-control-scc_border_radius label:after { content: " - px"; } 191 191 </style> 192 192 <?php } … … 261 261 echo '}'; 262 262 263 // full course toggle link position (no setting, just adjust based on setting use 264 if ( 265 ( ! empty( $scc_padding_px ) && '0' !== $scc_padding_px ) 266 || ( '' != $scc_border_px && '0' != $scc_border_px ) 267 || $scc_bg_color 268 ) : 269 echo '#scc-wrap .scc-toggle-post-list{right:10px}'; 270 endif; 271 263 272 // course box link color 264 273 if ( $scc_link_color ) : -
simple-course-creator-customizer/trunk/readme.txt
r1443536 r2270394 4 4 Tags: customizer, series, course, lesson, taxonomy, sdavis2702 5 5 Requires at least: 3.8 6 Tested up to: 4.67 Stable tag: 1.0. 46 Tested up to: 5.3 7 Stable tag: 1.0.5 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 67 67 == Screenshots == 68 68 69 1. customizer settings 70 2. customized output 69 1. customizer settings and preview 71 70 72 71 == Changelog == 72 73 = 1.0.5 = 74 * Fixed: updated default controls for compatibility with Simple Course Creator 1.0.7+ 73 75 74 76 = 1.0.4 = -
simple-course-creator-customizer/trunk/simple-course-creator-customizer.php
r1443536 r2270394 1 1 <?php 2 2 /** 3 * Plugin Name: S CC- Customizer4 * Plugin URI: http ://buildwpyourself.com/downloads/scc-customizer/3 * Plugin Name: Simple Course Creator - Customizer 4 * Plugin URI: https://github.com/SDavisMedia/simple-course-creator-customizer 5 5 * Description: Customizer the Simple Course Creator output with the WordPress theme customizer 6 * Version: 1.0. 46 * Version: 1.0.5 7 7 * Author: Sean Davis 8 * Author URI: http ://seandavis.co8 * Author URI: https://github.com/SDavisMedia/ 9 9 * License: GPL2 10 10 * Requires at least: 3.8 11 * Tested up to: 4.611 * Tested up to: 5.3 12 12 * Text Domain: scc_customizer 13 13 * Domain Path: /languages/ … … 53 53 54 54 // define plugin version 55 define( 'SCCC_VERSION', '1.0. 4' );55 define( 'SCCC_VERSION', '1.0.5' ); 56 56 57 57 // define plugin directory
Note: See TracChangeset
for help on using the changeset viewer.