Plugin Directory

Changeset 1429687


Ignore:
Timestamp:
06/03/2016 07:59:50 AM (10 years ago)
Author:
Griden
Message:

Text changes, admin icon

Location:
responsive-slider/trunk
Files:
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • responsive-slider/trunk/docs/readme.html

    r657684 r1429687  
    5252   
    5353        <p>
    54             Then you may want to check the <a href="http://devpress.com/demo/responsive-slider/">Slider Demo</a> we've set - it would give you an idea what is possible to achieve with <em>Responsive Slider</em>.
     54            Then you may want to check the <a href="http://demo.alienwp.com/responsive-slider/">Slider Demo</a> we've set - it would give you an idea what is possible to achieve with <em>Responsive Slider</em>.
    5555        </p>
    5656       
    5757        <h2>Support</h2>
    58         <p>This plugin is supported at <a href="http://devpress.com">DevPress</a> - a WordPress community of developers, designers, and professional WordPress users.</p>
     58        <p>This plugin is supported at <a href="http://alienwp.com">AlienWP</a> - A WordPress Theme and Plugin Company.</p>
    5959       
    6060        <h2>Credits</h2>
     
    6969        </p>
    7070        <p>
    71             This plugin is copyrighted to <a href="http://devpress.com">DevPress</a>.
     71            This plugin is copyrighted to <a href="http://alienwp.com">AlienWP</a>.
    7272        </p>
    7373    </div>
  • responsive-slider/trunk/readme.txt

    r657684 r1429687  
    44Tags: slider, responsive, flex slider, flexslider, slides, jquery slider, slideshow
    55Requires at least: 3.3
    6 Tested up to: 3.5
    7 Stable tag: 0.1.8
     6Tested up to: 4.5.2
     7Stable tag: 0.1.9
    88
    99A responsive slider for integrating into themes via a simple shortcode.
     
    1313The *Responsive Slider* plugin allows you to create slides that consist of linked (to any url) images and titles. The slider would then take those slides and present them as a jQuery-powered slideshow - at a chosen location within your theme, page, or post. In whatever order you want them.
    1414
     15Check out the Demo to see the plugin in action:
    1516**[See the Demo](http://demo.alienwp.com/responsive-slider/)**
     17
     18> Upgrade to a paid membership for support, themes & Pro version of plugin:
     19> **[Upgrade for Support](http://alienwp.com/register/)**
    1620
    1721The main purpose of the *Responsive Slider* is to serve as an effective addition to **responsive WordPress themes**, as it would automatically adjust to its container. This would work out of the box - there is no need for additional CSS or JavaScript tweaks from your theme.
     
    5660== Changelog ==
    5761
     62= 0.1.9 =
     63* Updated some links, documentation in preparation for new version of plugin along with pro version
     64
    5865= 0.1.8 =
    5966* Fix: omit the anchor tag if the 'URL' field is empty.
  • responsive-slider/trunk/responsive-slider.php

    r657684 r1429687  
    33 * Plugin Name: Responsive Slider
    44 * Plugin URI: http://alienwp.com/plugins/responsive-slider
    5  * Description: A responsive content slider for integrating into themes via a simple shortcode.
    6  * Version: 0.1.8
     5 * Description: A responsive content slider for integrating into themes, pages and posts via a simple shortcode.
     6 * Version: 0.1.9
    77 * Author: AlienWP
    88 * Author URI: http://alienwp.com
     
    5959    /* Enqueue the JavaScript. */
    6060    add_action( 'template_redirect', 'responsive_slider_enqueue_scripts' );
    61    
    62     /* Custom post type icon. */
    63     add_action( 'admin_head', 'responsive_slider_cpt_icon' );       
     61       
    6462   
    6563    /* Add image sizes */
     
    146144        'not_found_in_trash'   => __( 'No Slide found in Trash', 'responsive-slider' ),
    147145        'parent_item_colon'    => ''
     146       
    148147    );
    149148   
     
    162161        'taxonomies'           => array(),
    163162        'has_archive'          => true,
    164         'show_in_nav_menus'    => false
     163        'show_in_nav_menus'    => false,
     164         'menu_icon'   => 'dashicons-images-alt2',
    165165    );
    166166   
     
    213213}
    214214
    215 /**
    216  * Custom post type icon.
    217  *
    218  * @since 0.1
    219  */
    220 function responsive_slider_cpt_icon() {
    221     ?>
    222     <style type="text/css" media="screen">
    223         #menu-posts-slides .wp-menu-image {
    224             background: url(<?php echo RESPONSIVE_SLIDER_URI . 'images/slides-icon.png'; ?>) no-repeat 6px -17px !important;
    225         }
    226         #menu-posts-slides:hover .wp-menu-image {
    227             background-position: 6px 7px!important;
    228         }   
    229     </style>
    230 <?php }
    231215
    232216/**
Note: See TracChangeset for help on using the changeset viewer.