Plugin Directory

Changeset 2248830


Ignore:
Timestamp:
02/22/2020 11:04:20 PM (6 years ago)
Author:
rm2773
Message:

Update to version 1.0.1

Location:
wp-studio-tabs
Files:
92 added
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • wp-studio-tabs/trunk/readme.txt

    r2242091 r2248830  
    1212== Description ==
    1313
     14WP Studio Tabs allows you to create/manage simple animated tabs for your Wordpress website.
     15
     16== Installation ==
     17
     181. Download the zip folder named wpstudio-tabs.zip
     192. Unzip the folder and put it in the plugins directory of your wordpress installation. (wp-content/plugins).
     203. Activate the plugin through the plugin window in the admin panel.
     214. Go to Pages > Manage Tabs, and then add a new tab set and configure it's settings.
     225. Copy the shortcode and paste it into a page, post or widget.
     236. Do not use the shortcode twice on a single page - it will not work.
     24
     25== Frequently Asked Questions ==
     26
     27== Screenshots ==
     28
     29== Changelog ==
     30
     31= 1.0.1 =
     32
     33* Readme.txt updated to be more descriptive.
     34* Added widget support for shortcode usage.
    1435
    1536= 1.0.0 =
     
    1738* Plugin released
    1839
    19 
    20 == Screenshots ==
    21 1. Settings include: inline or vertical layout, hide/show Google toolbar, display specific languages, and show/hide Google branding. Add the shortcode to pages, posts, and widgets.
    22 2. Floating language selector
    23 3. Flags and dropdown language selector
    24 4. Language selector in menu with flags
  • wp-studio-tabs/trunk/wpstudio-tabs.php

    r2242091 r2248830  
    3636    add_action( 'manage_posts_custom_column' , array(&$this, 'wpstudio__tabs_posts_display_shortcode'), 10, 2 );
    3737    add_action( 'add_meta_boxes', array(&$this, 'wpstudio__tabs_settings_metabox'));
     38    add_filter('widget_text','do_shortcode');
     39   
    3840    if (!is_admin()):
    3941      add_shortcode('tabs', array(&$this, 'wpstudio__tabs_create_shortcode'));
Note: See TracChangeset for help on using the changeset viewer.