Plugin Directory

Changeset 3292009


Ignore:
Timestamp:
05/12/2025 03:54:42 PM (11 months ago)
Author:
userlog45
Message:

Bug fix: Tagging version 1.0.3

Location:
post-types-slider/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • post-types-slider/trunk/README.txt

    r3284786 r3292009  
    55Tested up to: 6.7 
    66Requires PHP: 7.4
    7 Stable tag: 1.0.2
     7Stable tag: 1.0.3
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
  • post-types-slider/trunk/admin/class-post-type-slider-admin.php

    r3284786 r3292009  
    5757        add_action('add_meta_boxes', [$this, 'posttype_slider_metaboxes']);
    5858        add_action('save_post', [$this, 'postslider_save_meta']);
    59         add_filter('manage_slide_posts_columns', [$this, 'posttype_slide_columns']);
    60         add_action('manage_slide_posts_custom_column', [$this, 'posttype_slider_columns'], 10, 2);
     59        add_filter('manage_posttysl_slide_posts_columns', [$this, 'posttype_slide_columns']);
     60        add_action('manage_posttysl_slide_posts_custom_column', [$this, 'posttype_slider_columns'], 10, 2);
    6161        add_shortcode('posttysl_slider', [$this,  'posttysl__shortcode']);
    6262        add_action('wp_ajax_post_slider_category', [$this, 'postslider_category']);
     
    285285            'Slider Options',
    286286            [$this, 'postslider_metabox'],
    287             'slide',
     287            'posttysl_slide',
    288288            'normal',
    289289            'high'
  • post-types-slider/trunk/post-types-slider.php

    r3284786 r3292009  
    1717 * Plugin URI:        https://clickysoft.com
    1818 * Description:       Plugin for create slide of different post type
    19  * Version:           1.0.2
     19 * Version:           1.0.3
    2020 * Author:            Clickysoft
    2121 * Author URI:        https://clickysoft.com/
     
    8282    $plugin->run();
    8383}
    84 posttysl__run_posttype_slider();
     84posttysl_run_posttype_slider();
  • post-types-slider/trunk/public/css/post-type-slider-public.css

    r3284786 r3292009  
    2222}
    2323
    24 .post_slide  ul.slick-dots button:hover {
     24.post_slide ul.slick-dots button:hover {
    2525    border: none !important;
    2626}
     
    6767    box-shadow: 0px 2px 6px 2px #d3d3d34d;
    6868}
     69
     70
     71
     72@media (max-width: 767px) {
     73
     74    .post_type_grid .post_slide {
     75
     76        width: 100%;
     77    }
     78
     79    .post_type_grid {
     80        flex-direction: column;
     81        gap: 10px;
     82    }
     83
     84    .post_slide h2 {
     85        font-size: 18px;
     86        line-height: 25px;
     87    }
     88
     89    .entry-content p {
     90        font-size: 16px;
     91        line-height: 22px;
     92    }
     93}
Note: See TracChangeset for help on using the changeset viewer.