Plugin Directory

Changeset 1903940


Ignore:
Timestamp:
07/04/2018 11:35:51 AM (8 years ago)
Author:
AdlPlugins
Message:

Released version 3.1.0

Location:
product-carousel-slider-for-woocommerce
Files:
131 added
2 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • product-carousel-slider-for-woocommerce/trunk/readme.txt

    r1782140 r1903940  
    22Contributors: AdlPlugins
    33Tags: woocommerce carousel, woocommerce slider, woocommerce product slider, woocommerce product carousel, woocommerce
    4 Requires at least: 3.5
    5 Tested up to: 4.9.1
    6 Stable tag: 3.0.2
     4Requires at least: 4.0
     5Tested up to: 4.9.6
     6Stable tag: 3.1.0
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2626*   Advanced shortcode generator.
    2727*   Advanced settings panel.
    28 *   Control number of products to be displayed.
     28*   Control number of products to display on desktop, tablet and mobile devices.
    2929*   Auto images resize and crop option.
    3030*   Image upscaling enable/disable.
     
    3434*   Navigation arrows.
    3535*   Pagination.
    36 *   Display/hide Product Title, Pirce, Star Ratings and Cart button.
     36*   Display/hide Product Title, Price, Star Ratings and Cart button.
    3737*   Navigational arrow color and background color change options.
    3838*   Product title font size, color, hover color change options.
    39 *   Pirce font size and color change options.
     39*   Price font size and color change options.
    4040*   Product Star Ratings size and color change options.
    4141*   Cart button background color, font size, font color change options.
     
    6464*   Scroll by per item or page
    6565*   Specify the scrolling direction
    66 *   Control number of products to display on desktop, tablet and mobile devices.
    6766*   And many more…
    6867
     
    8685
    8786== Changelog ==
     87= 3.1.0 =
     88* Added the feature of controlling number of products to display on desktop, tablet and mobile devices.
    8889= 3.0.2 =
    8990* Fixed auto play issue
  • product-carousel-slider-for-woocommerce/trunk/wpcs-custom-post.php

    r1781776 r1903940  
    434434                            <div class="cmb-row cmb-type-text-medium">
    435435                                <div class="cmb-th">
    436                                     <label for="wpcs_items"><?php esc_html_e('Items', WPCS_TEXTDOMAIN); ?></label>
     436                                    <label for="wpcs_items"><?php esc_html_e('Products to display on Desktop', WPCS_TEXTDOMAIN); ?></label>
    437437                                </div>
    438438                                <div class="cmb-td">
    439439                                    <input type="text" class="cmb2-text-small" name="wpcs[items]" id="wpcs_items" value="<?php if(!empty($items)) { echo $items; } else { echo 4; } ?>">
    440                                     <p class="cmb2-metabox-description"><?php esc_html_e('Maximum amount of items to display at a time with the widest browser width.', WPCS_TEXTDOMAIN); ?></p>
     440                                    <p class="cmb2-metabox-description"><?php esc_html_e('Maximum number of products to display at a time with the widest browser width. eg on screen size > 1198px', WPCS_TEXTDOMAIN); ?></p>
     441                                </div>
     442                            </div>
     443
     444                            <div class="cmb-row cmb-type-text-medium">
     445                                <div class="cmb-th">
     446                                    <label for="wpcsp_laptop_items"><?php esc_html_e('Products to display on Laptop', WPCS_TEXTDOMAIN); ?></label>
     447                                </div>
     448                                <div class="cmb-td">
     449                                    <input type="text" class="cmb2-text-small" name="wpcs[laptop_items]" id="wpcsp_laptop_items" value="<?php echo !empty($laptop_items)? intval($laptop_items): 4;  ?>">
     450                                    <p class="cmb2-metabox-description"><?php esc_html_e('Maximum number of products to display at a time on a laptop screen. Eg. Screen size > 978 px.', WPCS_TEXTDOMAIN); ?></p>
     451                                </div>
     452                            </div>
     453
     454
     455                            <div class="cmb-row cmb-type-text-medium">
     456                                <div class="cmb-th">
     457                                    <label for="wpcsp_tablet_items"><?php esc_html_e('Products to Display on Tablet', WPCS_TEXTDOMAIN); ?></label>
     458                                </div>
     459                                <div class="cmb-td">
     460                                    <input type="text" class="cmb2-text-small" name="wpcs[tablet_items]" id="wpcsp_tablet_items" value="<?php echo !empty($tablet_items)? intval($tablet_items): 2; ?>">
     461                                    <p class="cmb2-metabox-description"><?php esc_html_e('Maximum number of products to display at a time on Tablet devices. Eg. screen size > 768px', WPCS_TEXTDOMAIN); ?></p>
     462                                </div>
     463                            </div>
     464
     465                            <div class="cmb-row cmb-type-text-medium">
     466                                <div class="cmb-th">
     467                                    <label for="wpcsp_mobile_items"><?php esc_html_e('Products to Display on Mobile', WPCS_TEXTDOMAIN); ?></label>
     468                                </div>
     469                                <div class="cmb-td">
     470                                    <input type="text" class="cmb2-text-small" name="wpcs[mobile_items]" id="wpcsp_mobile_items" value="<?php echo !empty($mobile_items)? intval($mobile_items): 1; ?>">
     471                                    <p class="cmb2-metabox-description"><?php esc_html_e('Maximum number of products to display at a time on Mobile. eg. screen size from 0px - 480px', WPCS_TEXTDOMAIN); ?></p>
    441472                                </div>
    442473                            </div>
  • product-carousel-slider-for-woocommerce/trunk/wpcs-main.php

    r1782140 r1903940  
    22/*
    33Plugin Name: WooCommerce Product Carousel Slider
    4 Plugin URI:  https://adlplugins.com/plugin/woocommerce-product-carousel-slider
     4Plugin URI:  https://adlplugins.com/plugin/woocommerce-product-carousel-slider-pro
    55Description: This plugin allows you to easily create WooCommerce product carousel slider. It is fully responsive and mobile friendly carousel slider which comes with lots of features.
    6 Version:     3.0.2
     6Version:     3.1.0
    77Author:      ADL Plugins
    88Author URI:  http://adlplugins.com
  • product-carousel-slider-for-woocommerce/trunk/wpcs-shortcodes.php

    r1781776 r1903940  
    285285                        },
    286286                        350: {
    287                             items:<?= (!empty( $stop_mobile )) ? absint( $stop_mobile ):1; ?>
     287                            items:<?= (!empty( $mobile_items )) ? absint( $mobile_items ):2; ?>
    288288                        },
    289289                        480: {
    290                             items:<?= (!empty( $stop_mobile )) ? (absint( $stop_mobile )+1):2; ?>
     290                            items:<?= (!empty( $mobile_items )) ? (absint( $mobile_items )+1):3; ?>
    291291                        },
    292292                        600 : {
    293                             items:<?= (!empty( $items_tablet)) ? (absint( $items_tablet) - 1):3; ?>
     293                            items:<?= (!empty( $tablet_items)) ? (absint( $tablet_items) - 1):3; ?>
    294294                        },
    295295                        768:{
    296                             items:<?= (!empty( $items_tablet)) ? absint( $items_tablet):4; ?>
     296                            items:<?= (!empty( $tablet_items)) ? absint( $tablet_items):4; ?>
    297297                        },
    298298                        978:{
    299                             items:<?= (!empty( $items )) ? absint( $items ) -1:4; ?>                          },
     299                            items:<?= (!empty( $laptop_items)) ? absint( $laptop_items):4; ?>
     300                        },
    300301                        1198:{
    301                             items:<?= (!empty( $items )) ? absint( $items ):5; ?>
     302                            items:<?= (!empty( $items)) ? absint( $items):5; ?>
    302303                        }
    303304                    }
  • product-carousel-slider-for-woocommerce/trunk/wpcs-support.php

    r1781270 r1903940  
    5151                <li>Scroll by per item or page</li>
    5252                <li>Specify the scrolling direction</li>
    53                 <li>Control number of products to display on desktop, tablet and mobile devices.</li>
    5453                <li>Fully responsive</li>
    5554                <li>Translation ready</li>
Note: See TracChangeset for help on using the changeset viewer.