🔒 EXCLUSIVE: Changeset/ - Collection

Changeset 2270394


Ignore:
Timestamp:
03/29/2020 11:04:36 PM (6 years ago)
Author:
sdavis2702
Message:

Update for WordPress and SCC compatibility

Location:
simple-course-creator-customizer/trunk
Files:
5 added
1 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • simple-course-creator-customizer/trunk/README.md

    r911752 r2270394  
    44View it on WordPress: (http://wordpress.org/plugins/simple-course-creator-customizer/)
    55
    6 This is an add-on plugin for use with the [Simple Course Creator](https://github.com/sdavis2702/simple-course-creator) plugin.
     6This is an add-on plugin for use with the [Simple Course Creator](https://github.com/sdavismedia/simple-course-creator
     7) plugin.
    78
    89Simple Course Creator is designed to easily link posts together in a series and output that series list in the content of each included post.
     
    2223---
    2324
    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.
     25For **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.
    2526
    2627### Bugs and Contributions
     
    3738---
    3839
    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.
     40I'm Sean. I've created a few little pieces of software. I'm not that easy to find online. That's by design.
    4041
    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)
     42Is 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  
    188188            #customize-control-scc_padding_px label:after,
    189189            #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"; }
    191191        </style>
    192192    <?php }
     
    261261            echo '}';
    262262
     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
    263272            // course box link color
    264273            if ( $scc_link_color ) :
  • simple-course-creator-customizer/trunk/readme.txt

    r1443536 r2270394  
    44Tags: customizer, series, course, lesson, taxonomy, sdavis2702
    55Requires at least: 3.8
    6 Tested up to: 4.6
    7 Stable tag: 1.0.4
     6Tested up to: 5.3
     7Stable tag: 1.0.5
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6767== Screenshots ==
    6868
    69 1. customizer settings
    70 2. customized output
     691. customizer settings and preview
    7170
    7271== Changelog ==
     72
     73= 1.0.5 =
     74* Fixed: updated default controls for compatibility with Simple Course Creator 1.0.7+
    7375
    7476= 1.0.4 =
  • simple-course-creator-customizer/trunk/simple-course-creator-customizer.php

    r1443536 r2270394  
    11<?php
    22/**
    3  * Plugin Name: SCC - Customizer
    4  * 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
    55 * Description: Customizer the Simple Course Creator output with the WordPress theme customizer
    6  * Version: 1.0.4
     6 * Version: 1.0.5
    77 * Author: Sean Davis
    8  * Author URI: http://seandavis.co
     8 * Author URI: https://github.com/SDavisMedia/
    99 * License: GPL2
    1010 * Requires at least: 3.8
    11  * Tested up to: 4.6
     11 * Tested up to: 5.3
    1212 * Text Domain: scc_customizer
    1313 * Domain Path: /languages/
     
    5353
    5454        // define plugin version
    55         define( 'SCCC_VERSION', '1.0.4' );
     55        define( 'SCCC_VERSION', '1.0.5' );
    5656
    5757        // define plugin directory
Note: See TracChangeset for help on using the changeset viewer.