Plugin Directory

Changeset 1515982


Ignore:
Timestamp:
10/16/2016 04:59:41 PM (9 years ago)
Author:
sazzadh
Message:
  • Fixed some readme.txt issue
Location:
testimonial-slider-shortcode/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • testimonial-slider-shortcode/trunk/readme.txt

    r1515977 r1515982  
    77Requires at least: 4
    88Tested up to: 4.6
    9 Stable tag: 1.1.1
     9Stable tag: 1.1.2
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1212
    13 A lightweight Testimonial Slideshow plugin for WordPress. It lets you create a
    14 
    15 beautiful responsive Testimonial Slideshow.
     13A lightweight Testimonial Slideshow plugin for WordPress. It lets you create a beautiful responsive Testimonial Slideshow.
    1614
    1715== Description ==
    1816
    19 Using this plugin you can add a interactive Testimonial slider to any page or
    20 
    21 post. This plugin offer a shortcode to create Slideshow. It is fully responsive
    22 
    23 and looks good in any device.
     17Using this plugin you can add a interactive Testimonial slider to any page or post. This plugin offer a shortcode to create Slideshow. It is fully responsive  and looks good in any device.
    2418
    2519This plugin using a jquery plugin [Owl Carousel](http://www.owlcarousel.owlgraphic.com/) by Owlgraphic.
    2620
    2721= Shortcode Example =
     22`
     23[tss_testimonial_slider align="center" padding="0 40px" loop="1" autoplay="1" dots="1" nav="1" class=""]
     24[tss_item text="Abelson has been an amazing firm to work with. Lorem changed the company.”" name="—  JOHN SAMPSON, LEONARD GREEN & PARTNERS, LP" link="#"/]
     25[tss_item text="2222 Abelson has been an amazing firm to work with. Lorem changed the company." name="—  JOHN SAMPSON, LEONARD GREEN & PARTNERS, LP" link=""/]
     26[tss_item text="333 Abelson has been an amazing firm to work with. Lorem changed the company." name="—  JOHN SAMPSON, LEONARD GREEN & PARTNERS, LP" link=""/]
     27[/tss_testimonial_slider]
     28`
     29= So what are the arguments of the main shortcode? =
     30**align** you can sent the slider alignment here, support values are `left`, `right` or `center`
     31**padding** Possible value is pure CSS. Example `0 40px`
     32**loop** Enable or disable loop by adding `0` or `1`
     33**autoplay** Enable or disable autoplay by adding `0` or `1`
     34**dots** Enable or disable dot nav by adding `0` or `1`
     35**nav** Enable or disable left right arrow nav by adding `0` or `1`
    2836
     37
     38= So what are the arguments of the Sub shortcode? =
     39**text** this is the text of the slider item
     40**name** name of the testimonial author
     41**link** full link
     42
     43
     44== Installation ==
     45
     461. Upload `testimonial-slider-shortcode` to the `/wp-content/plugins/` directory
     471. Activate the plugin through the 'Plugins' menu in WordPress
     48
     49== Frequently Asked Questions ==
     50
     51= What is the Shortcode? =
     52
     53Below is the example of the shoercode.
    2954`
    30 [tss_testimonial_slider]
     55[tss_testimonial_slider align="center" padding="0 40px" loop="1" autoplay="1" dots="1" nav="1" class=""]
    3156[tss_item text="Abelson has been an amazing firm to work with. Lorem changed the company.”" name="—  JOHN SAMPSON, LEONARD GREEN & PARTNERS, LP" link="#"/]
    3257[tss_item text="2222 Abelson has been an amazing firm to work with. Lorem changed the company." name="—  JOHN SAMPSON, LEONARD GREEN & PARTNERS, LP" link=""/]
     
    3560`
    3661
    37 == Installation ==
     62= So what are the arguments of the main shortcode? =
     63**align** you can sent the slider alignment here, support values are `left`, `right` or `center`
     64**padding** Possible value is pure CSS. Example `0 40px`
     65**loop** Enable or disable loop by adding `0` or `1`
     66**autoplay** Enable or disable autoplay by adding `0` or `1`
     67**dots** Enable or disable dot nav by adding `0` or `1`
     68**nav** Enable or disable left right arrow nav by adding `0` or `1`
    3869
    39 1. Upload `plugin-name.php` to the `/wp-content/plugins/` directory
    40 1. Activate the plugin through the 'Plugins' menu in WordPress
    4170
    42 == Frequently Asked Questions ==
    43 
    44 = What is the Shortcode and How to add zoom effect to a Image? =
    45 
    46 Below is the example of the shoercode.
    47 `
    48 [tss_testimonial_slider]
    49 [tss_item text="Abelson has been an amazing firm to work with. Lorem changed the company.”" name="—  JOHN SAMPSON, LEONARD GREEN & PARTNERS, LP" link="#"/]
    50 [tss_item text="2222 Abelson has been an amazing firm to work with. Lorem changed the company." name="—  JOHN SAMPSON, LEONARD GREEN & PARTNERS, LP" link=""/]
    51 [tss_item text="333 Abelson has been an amazing firm to work with. Lorem changed the company." name="—  JOHN SAMPSON, LEONARD GREEN & PARTNERS, LP" link=""/]
    52 [/tss_testimonial_slider]
    53 `
     71= So what are the arguments of the Sub shortcode? =
     72**text** this is the text of the slider item
     73**name** name of the testimonial author
     74**link** full link
    5475
    5576
     
    6384== Changelog ==
    6485
     86= 1.1.2 =
     87* Fixed some readme.txt issue
     88
     89= 1.1.1 =
     90* Fixed a readme.txt issue
     91
    6592= 1.1 =
    6693* Added Center, left and right alignment support
  • testimonial-slider-shortcode/trunk/testimonial-slider-shortcode.php

    r1515977 r1515982  
    22/**
    33 * @package testimonial-slider-shortcode
    4  * @version 1.1.1
     4 * @version 1.1.2
    55 */
    66/*
     
    99Description: <strong>Testimonial Slider Shortcode</strong> is a lightweight Testimonial Slideshow plugin for WordPress. It lets you create a beautiful responsive Testimonial Slideshow.
    1010Author: Sazzad Hu
    11 Version: 1.1.1
     11Version: 1.1.2
    1212Author URI: http://sazzadh.com/
    1313
Note: See TracChangeset for help on using the changeset viewer.