Plugin Directory

Changeset 808358


Ignore:
Timestamp:
11/21/2013 05:23:55 PM (12 years ago)
Author:
speedito
Message:

Adding Back to Top for Bookmark style

Location:
simple-faqs
Files:
2 edited
4 copied

Legend:

Unmodified
Added
Removed
  • simple-faqs/tags/1.1.2/readme.txt

    r806632 r808358  
    44Requires at least: 3.7.1
    55Tested up to: 3.7.1
    6 Stable tag: 1.1.1
     6Stable tag: 1.1.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4141= 1.1.1
    4242Show all FAQ without pagination
     43
     44= 1.1.2 =
     45Add Back To Top feature for Bookmark Style
  • simple-faqs/tags/1.1.2/simple-faq.php

    r806632 r808358  
    22/**
    33 * Plugin Name: Simple FAQs
    4  * Plugin URI: http://URI_Of_Page_Describing_Plugin_and_Updates
     4 * Plugin URI: http://wordpress.org/plugins/simple-faqs/
    55 * Description: FAQ plugin to allow creating and showing FAQ easily on Wordpress website
    6  * Version: 1.1.1
     6 * Version: 1.1.2
    77 * Author: Waqas Ahmed
    88 * Author URI: http://speedsoftsol.com
     
    120120function faq_style_bookmarks($items) {
    121121    $item_number = 1;
    122     $output = '';
     122    $output = '<a id="simple-faq-top"></a>';
    123123   
    124124    //For the top bookmark list
     
    138138        $output .= '</h3></a>';
    139139        $output .= $item['content'];
     140        $output .= '<br /><a class="simple-faq-back" href="#simple-faq-top">Back To Top</a>';
    140141        $item_number++;     
    141142    }
  • simple-faqs/trunk/readme.txt

    r806632 r808358  
    44Requires at least: 3.7.1
    55Tested up to: 3.7.1
    6 Stable tag: 1.1.1
     6Stable tag: 1.1.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4141= 1.1.1
    4242Show all FAQ without pagination
     43
     44= 1.1.2 =
     45Add Back To Top feature for Bookmark Style
  • simple-faqs/trunk/simple-faq.php

    r806632 r808358  
    22/**
    33 * Plugin Name: Simple FAQs
    4  * Plugin URI: http://URI_Of_Page_Describing_Plugin_and_Updates
     4 * Plugin URI: http://wordpress.org/plugins/simple-faqs/
    55 * Description: FAQ plugin to allow creating and showing FAQ easily on Wordpress website
    6  * Version: 1.1.1
     6 * Version: 1.1.2
    77 * Author: Waqas Ahmed
    88 * Author URI: http://speedsoftsol.com
     
    120120function faq_style_bookmarks($items) {
    121121    $item_number = 1;
    122     $output = '';
     122    $output = '<a id="simple-faq-top"></a>';
    123123   
    124124    //For the top bookmark list
     
    138138        $output .= '</h3></a>';
    139139        $output .= $item['content'];
     140        $output .= '<br /><a class="simple-faq-back" href="#simple-faq-top">Back To Top</a>';
    140141        $item_number++;     
    141142    }
Note: See TracChangeset for help on using the changeset viewer.