Plugin Directory

Changeset 2726571


Ignore:
Timestamp:
05/19/2022 07:19:58 AM (4 years ago)
Author:
Access Keys
Message:
  • Fixed error in show caption in widget input field.
  • Fixed some css compatibilities with twenty twenty one theme.
  • Compatibility Check with latest wordpress version
Location:
wp-1-slider
Files:
146 added
4 edited

Legend:

Unmodified
Added
Removed
  • wp-1-slider/trunk/css/wp1s-frontend-style.css

    r2255492 r2726571  
    327327    opacity: 0;
    328328}
     329
    329330.wp1s-main-wrapper .wp1s-arrow-type-1 .bx-wrapper .bx-next {
    330331    background: url('../images/arrow/arrow-type-1.png') no-repeat -43px 0;
     
    334335    opacity: 0;
    335336}
    336 
     337/* .bx-next:focus and .bx-prev:focus classes are set because the a:focus class in twenty twenty one theme's
     338        style.css sets the background color removing the slider arrow.
     339 */
     340.bx-next:focus
     341{
     342    background: url('../images/arrow/arrow-type-1.png') no-repeat -43px 0 !important;
     343}
     344.bx-prev:focus
     345{
     346    background: url('../images/arrow/arrow-type-1.png') no-repeat -43px 0 !important
     347}
    337348.wp1s-main-wrapper .wp1s-arrow-type-1 .bx-wrapper:hover .bx-prev {
    338349    left:15px;
  • wp-1-slider/trunk/inc/wp1s-slide-general-settings.php

    r2376057 r2726571  
    227227            if ( isset($wp1s_stored_meta_setting['wp1s_show_caption_widget'][0]) && $wp1s_stored_meta_setting['wp1s_show_caption_widget'][0]== '1' ) { ?>checked="checked"<?php } ?> />
    228228            <?php _e( 'Check to show caption in widget', 'wp-1-slider' )?></label>
    229             <input type="hidden" name="wp1s_show_caption_widget" class="wp1s-show-caption-widget-value" value="<?php echo $wp1s_stored_meta_setting['wp1s_show_caption_widget'][0];?>" />
     229            <input type="hidden" name="wp1s_show_caption_widget" class="wp1s-show-caption-widget-value" value="<?php $wp1s_stored_meta_setting['wp1s_show_caption_widget'][0] ?? '';?>" />
    230230                 
    231231          </div>
  • wp-1-slider/trunk/readme.txt

    r2610100 r2726571  
    44Donate link: http://accesspressthemes.com/donation/
    55Requires at least: 3.8
    6 Tested up to: 5.8
    7 Stable tag: 1.3.0
     6Tested up to: 5.9
     7Stable tag: 1.3.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    207207== Changelog ==
    208208
     209= 1.3.1 =
     210* Fixed error in show caption in widget input field.
     211* Fixed some css compatibilities with twenty twenty one theme.
     212* Compatibility Check with latest wordpress version.
     213
    209214= 1.3.0 =
    210215* Added description for Slider Option settings.
  • wp-1-slider/trunk/wp-1-slider.php

    r2610100 r2726571  
    55 * Plugin URI:  http://accesspressthemes.com/wordpress-plugins/
    66 * Description: An ultimate WordPress slider Plugin | Many layout | Many useful features | Many configuration options | Easy to use!
    7  * Version:     1.3.0
     7 * Version:     1.3.1
    88 * Author:      AccessPress Themes
    99 * Author URI:  http://accesspressthemes.com/
     
    1717 * */
    1818require_once('inc/wp1s-resizer.php');
    19 defined( 'WP1S_VERSION' ) or define( 'WP1S_VERSION', '1.3.0' ); //plugin version
     19defined( 'WP1S_VERSION' ) or define( 'WP1S_VERSION', '1.3.1' ); //plugin version
    2020defined( 'WP1S_TD' ) or define( 'WP1S_TD', 'wp-1-slider' ); //plugin's text domain
    2121defined( 'WP1S_IMG_DIR' ) or define( 'WP1S_IMG_DIR', plugin_dir_url( __FILE__ ) . 'images' ); //plugin image directory
Note: See TracChangeset for help on using the changeset viewer.