Plugin Directory

Changeset 1158712


Ignore:
Timestamp:
05/12/2015 10:26:05 AM (11 years ago)
Author:
speedito
Message:

For version 2.1

Location:
simple-faqs/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • simple-faqs/trunk/faq_generator.php

    r1041057 r1158712  
    5757                    <option value="Accordion" selected="selected">Accordion</option>
    5858                    <option value="Simple">Simple</option>
    59                     <option value="Bookmark">Bookmark</option>
     59                    <option value="Bookmarks">Bookmark</option>
    6060                </select>
    6161            </div>
     
    7272                <select name="faq-skin" id="faq-skin" size="1">
    7373                    <option value="none" selected="selected">None</option>
    74                     <option value="Dark">Dark</option>
     74                    <option value="Black">Black</option>
     75                    <option value="Green">Green</option>
     76                    <option value="Blue">Blue</option>
     77                    <option value="Red">Red</option>
    7578                </select>
    7679            </div>
  • simple-faqs/trunk/readme.txt

    r1041078 r1158712  
    33Tags: FAQ listing
    44Requires at least: 3.7.1
    5 Tested up to: 4.0.1
    6 Stable tag: 2.0
     5Tested up to: 4.2.1
     6Stable tag: 2.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4040
    4141== Screenshots ==
    42 1. TinyMCE Editor button to launch Simple FAQ shortcode generator
    43 2. Shortcode generator
    44 
     421. screenshot-1.png
     432. screenshot-2.png
    4544
    4645== Changelog ==
     46= 2.1 =
     47Added new skins
     48Solved the shortcode generator issue
     49
    4750= 2.0 =
    4851Added shortcode generator
  • simple-faqs/trunk/simple-faq.php

    r1041057 r1158712  
    44 * Plugin URI: http://wordpress.org/plugins/simple-faqs/
    55 * Description: FAQ plugin to allow creating and showing FAQ easily on Wordpress website
    6  * Version: 2.0
     6 * Version: 2.1
    77 * Author: Waqas Ahmed
    88 * Author URI: http://speedsoftsol.com
     
    6969    $simple_faq_skin = strtolower($skin);
    7070    if (isset($simple_faq_skin) && $simple_faq_skin != "none") {
    71         if ($simple_faq_skin == "dark") {
    72             wp_enqueue_style( 'simple-faq-skin', plugins_url( 'skins/dark.css', __FILE__ )  );
    73         }
    74         elseif ($simple_faq_skin == "light") {
    75             wp_enqueue_style( 'simple-faq-skin', plugins_url( 'skins/light.css', __FILE__ )  );
     71        if ($simple_faq_skin == "black") {
     72            wp_enqueue_style( 'simple-faq-skin', plugins_url( 'skins/black.css', __FILE__ )  );
     73        }
     74        elseif ($simple_faq_skin == "green") {
     75            wp_enqueue_style( 'simple-faq-skin', plugins_url( 'skins/green.css', __FILE__ )  );
     76        }
     77        elseif ($simple_faq_skin == "blue") {
     78            wp_enqueue_style( 'simple-faq-skin', plugins_url( 'skins/blue.css', __FILE__ )  );
     79        }
     80        elseif ($simple_faq_skin == "red") {
     81            wp_enqueue_style( 'simple-faq-skin', plugins_url( 'skins/red.css', __FILE__ )  );
    7682        }
    7783    }
Note: See TracChangeset for help on using the changeset viewer.