Plugin Directory

Changeset 2632073


Ignore:
Timestamp:
11/18/2021 12:42:35 PM (4 years ago)
Author:
grandplugin
Message:

Fixing limited carousel.

Location:
product-slider-carousel/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • product-slider-carousel/trunk/README.txt

    r2622419 r2632073  
    102102== Changelog ==
    103103
    104 = 1.0 =
     104= 1.0.0 =
    105105* Fix: Conflict with Twenty Twenty - WordPress theme.
    106106
    107 == Upgrade Notice ==
    108 
    109 = 1.0 =
    110 First Release
     107= 1.2.0 =
     108* Fix: Limit carousel.
  • product-slider-carousel/trunk/admin/css/gpsc-product-slider-carousel-admin.css

    r2388341 r2632073  
    110110/* SHortcode Side Context */
    111111.wpgp--shortcode-field .wpgp--shortcode-field-wrap {
    112     padding: 30px 10px;
     112    padding: 30px 0px;
    113113    background: #96588a;
    114114    color: #fff;
     
    118118
    119119.wpgp--shortcode-field .wpgp--shortcode-field-wrap code {
    120     font-size: 15px;
     120    font-size: 14px;
    121121    font-weight: bold;
    122122    -webkit-touch-callout: all;
     
    329329******************************************/
    330330
     331/* Others */
    331332.postbox-header .handle-actions {
    332333    display: none;
    333334}
     335/* Spinner Field */
     336.wpgp--metabox-options#_wpgp_page_options .wpgp-field-spinner .ui-button {
     337    cursor: pointer;
     338       display: flex;
     339    flex-direction: column;
     340    justify-content: center;
     341    text-align: center;
     342    min-width: 15px;
     343    padding: 0 4px;
     344    color: #555;
     345    background-color: #f5f5f5;
     346}
     347.wpgp--metabox-options#_wpgp_page_options .wpgp-field-spinner .ui-spinner-up {
     348    border-top: 1px solid #7e8993;
     349    border-right: 1px solid #7e8993;
     350    border-bottom: 1px solid #7e8993;
     351}
     352.wpgp--metabox-options#_wpgp_page_options .wpgp-field-spinner .ui-spinner-down {
     353    border-top: 1px solid #7e8993;
     354    border-left: 1px solid #7e8993;
     355    border-bottom: 1px solid #7e8993;
     356}
  • product-slider-carousel/trunk/gpsc-product-slider-carousel.php

    r2619603 r2632073  
    1717 * Plugin URI:        https://wpqode.com/plugins/product-slider-carousel/
    1818 * Description:       This is a short description of what the plugin does. It's displayed in the WordPress admin area.
    19  * Version:           1.0.0
     19 * Version:           1.2.0
    2020 * Author:            wpqode
    2121 * Author URI:        https://www.wpqode.com
  • product-slider-carousel/trunk/public/class-gpsc-product-slider-carousel-shortcode.php

    r2409086 r2632073  
    191191        $args     = array(
    192192            'include' => $wpgpsc_specific_product_selected,
     193            'limit'   => -1,
    193194        );
    194195        $products = wc_get_products( $args );
Note: See TracChangeset for help on using the changeset viewer.