Plugin Directory

Changeset 2270321


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

Update plugin information

Location:
simple-course-creator/trunk
Files:
3 edited

Legend:

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

    r911748 r2270321  
    2929The course listing will display as a container that shows nothing but the course title and the course description, which is what you filled out when creating a new course.
    3030
    31 The series of posts will be hidden until you click a subtle link for displaying them, at which point the container will gracefully expand to reveal all posts in said course. They will all be linked except for the current post.
     31The series of posts will be hidden until you click a subtle link for displaying them, at which point the container
     32 will gracefully expand to reveal all posts in said course. They will all be linked except for the current post.
    3233
    3334![Course Collapsed](http://buildwpyourself.com/wp-content/uploads/2014/03/course-collapsed.png)
     
    4041---
    4142
    42 Simple Course Creator comes with a few very simple options.
     43Simple Course Creator comes with very simple options.
    4344
    44 Choose to display your course containers above post content, below post content, both above and below post content, or do not display it at all while still preserving the course configuration.
     451. Choose to display your course containers above post content, below post content, both above and below post content
     46, or do not display it at all while still preserving the course configuration.
    4547
    46 You may also choose your course list style type. They can be displayed as a numbered list, a bulleted list, or a list with no list indicator at all... simply stacked like paragraphs.
     482. Choose your course list style type. They can be displayed as a numbered list, a bulleted list, or a list with no list
     49 indicator at all... simply stacked like paragraphs.
     50 
     51 3. Choose to sort your posts by date, author, title, last modified, random, or comment count.
     52 
     53 4. Choose to display your sorted posts in ascending order or descending order.
     54 
     55 5. Choose a display style of the current post in your post listing. Select between bold, strike, italic, or no style
     56  at all.
     57 
     58  6. Disable plugin javascript, which causes the post listing to be fully expended on page load. The show/hide
     59   function is removed.
    4760
    4861![Simple Course Creator Settings](http://buildwpyourself.com/wp-content/uploads/2014/03/scc-settings.png)
     
    122135---
    123136
    124 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.
     137I'm Sean. I've created a few little pieces of software. I'm not that easy to find online. That's by design.
    125138
    126 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)
     139Is this plugin useful to you? If so, please consider buying me a bag of coffee beans. Thank you much. [Donate via
     140 PayPal](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=52HQDSEUA542S)
  • simple-course-creator/trunk/readme.txt

    r1443528 r2270321  
    2424* [SCC Updates](https://wordpress.org/plugins/simple-course-creator-updates/) - List the newest posts from your courses and stories in a timeline format anywhere on your site (shortcode).
    2525
    26 Follow Simple Course Creator’s development on [Github](https://github.com/sdavis2702/simple-course-creator)
     26Follow Simple Course Creator’s development on [Github](https://github.com/sdavismedia/simple-course-creator)
    2727
    28 View all [contributors](https://github.com/sdavis2702/simple-course-creator/graphs/contributors) to SCC’s development.
     28View all [contributors](https://github.com/sdavismedia/simple-course-creator/graphs/contributors) to SCC’s development.
    2929
    3030== Installation ==
     
    3939= Can a post be assigned to more than one course? =
    4040
    41 No. A post can only be assign to one course that way it can display the rest of the course's posts within the content of said post.
     41No. A post should only be assigned to one course. This is because the purpose of the plugin is to display the other
     42posts that are in the same course as the post being viewed. In order to do that, the other posts must be pulled from a
     43single source (the one course you have chosen). Technically, multiple courses can be added to a posts. However, only
     44course will display on your post, and you will not have control of which course that is.
    4245
    4346= Can I edit the course HTML output? =
     
    8790== Changelog ==
    8891
     92= 1.0.7 =
     93* Added: setting for ordering the post listing using the "order" parameter (ascending or descending)
     94* Removed: "scc_order" filter, which is now replaced by the above setting
     95* Tweaked: default border and padding on the post listing display
     96
    8997= 1.0.6 =
    9098* Added: setting for ordering the post listing using the "orderby" parameter
  • simple-course-creator/trunk/simple-course-creator.php

    r1443533 r2270321  
    22/**
    33 * Plugin Name: Simple Course Creator
    4  * Plugin URI: http://buildwpyourself.com/downloads/simple-course-creator/
     4 * Plugin URI: https://github.com/SDavisMedia/simple-course-creator
    55 * Description: Allows you to easily create and manage courses in your WordPress website.
    6  * Version: 1.0.6
     6 * Version: 1.0.7
    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
    1313 * Domain Path: /languages/
     
    5757
    5858        // define plugin version
    59         define( 'SCC_VERSION', '1.0.6' );
     59        define( 'SCC_VERSION', '1.0.7' );
    6060
    6161        // define plugin directory
Note: See TracChangeset for help on using the changeset viewer.