Plugin Directory

Changeset 2713583


Ignore:
Timestamp:
04/23/2022 06:50:14 AM (4 years ago)
Author:
shapedplugin
Message:

Version 3.4.8 release.

Location:
logo-carousel-free
Files:
264 added
5 edited

Legend:

Unmodified
Added
Removed
  • logo-carousel-free/trunk/admin/views/sp-framework/classes/setup.class.php

    r2643829 r2713583  
    315315         */
    316316        public static function include_plugin_url( $file ) {
    317             return esc_url( self::$url ) . '/' . ltrim( $file, '/' );
     317            return esc_url( SP_LC_URL . '/admin/views/sp-framework' ) . '/' . ltrim( $file, '/' );
    318318        }
    319319
  • logo-carousel-free/trunk/admin/views/sp-framework/config/metabox.config.php

    r2631314 r2713583  
    709709                'id'       => 'lcp_rows',
    710710                'type'     => 'column',
    711                 'title'    => __( 'Row', 'logo-carousel-pro' ),
     711                'title'    => __( 'Row', 'logo-carousel-free' ),
    712712                'subtitle' => __( 'Set number of row on devices.', 'logo-carousel-free' ),
    713713                'default'  => array(
  • logo-carousel-free/trunk/admin/views/sp-framework/fields/column/column.php

    r2589139 r2713583  
    5454                    'mobile_icon'                  => '<i class="fa fa-mobile"></i>',
    5555                    'all_icon'                     => '<i class="fa fa-arrows"></i>',
    56                     'lg_desktop_placeholder'       => esc_html__( 'Large Desktop', 'logo-carousel-pro' ),
    57                     'desktop_placeholder'          => esc_html__( 'Desktop', 'logo-carousel-pro' ),
    58                     'tablet_placeholder'           => esc_html__( 'Tablet', 'logo-carousel-pro' ),
    59                     'mobile_landscape_placeholder' => esc_html__( 'Mobile Landscape', 'logo-carousel-pro' ),
    60                     'mobile_placeholder'           => esc_html__( 'Mobile', 'logo-carousel-pro' ),
    61                     'all_placeholder'              => esc_html__( 'all', 'logo-carousel-pro' ),
     56                    'lg_desktop_placeholder'       => esc_html__( 'Large Desktop', 'logo-carousel-free' ),
     57                    'desktop_placeholder'          => esc_html__( 'Desktop', 'logo-carousel-free' ),
     58                    'tablet_placeholder'           => esc_html__( 'Tablet', 'logo-carousel-free' ),
     59                    'mobile_landscape_placeholder' => esc_html__( 'Mobile Landscape', 'logo-carousel-free' ),
     60                    'mobile_placeholder'           => esc_html__( 'Mobile', 'logo-carousel-free' ),
     61                    'all_placeholder'              => esc_html__( 'all', 'logo-carousel-free' ),
    6262                    'lg_desktop'                   => true,
    6363                    'desktop'                      => true,
  • logo-carousel-free/trunk/main.php

    r2691412 r2713583  
    44 * Plugin URI:        https://shapedplugin.com/plugin/logo-carousel-pro/?ref=1
    55 * Description:       Display and highlight your clients, partners, supporters, and sponsors logos on your WordPress site in a nice logo carousel. Easy Shortcode Generator | Highly Customizable | No Coding Knowledge Required!
    6  * Version:           3.4.7
     6 * Version:           3.4.8
    77 * Author:            ShapedPlugin
    88 * Author URI:        https://shapedplugin.com
     
    4949         * @var string
    5050         */
    51         public $version = '3.4.7';
     51        public $version = '3.4.8';
    5252
    5353        /**
     
    162162                new Logo_Carousel_Free_Gutenberg_Block();
    163163            }
     164
     165            // Elementor Addons.
     166            require_once SP_LC_PATH . 'admin/Logo_Carousel_Free_Element_Shortcode_Block.php';
     167            new Logo_Carousel_Free_Element_Shortcode_Block();
    164168        }
    165169
     
    170174         */
    171175        public function define_constants() {
    172             $this->define( 'SP_LC_ITEM_SLUG', $this->plugin_name );
    173             $this->define( 'SP_LC_VERSION', $this->version );
    174             $this->define( 'SP_LC_PATH', plugin_dir_path( __FILE__ ) );
    175             $this->define( 'SP_LC_URL', plugin_dir_url( __FILE__ ) );
    176             $this->define( 'SP_LC_BASENAME', plugin_basename( __FILE__ ) );
    177         }
    178 
    179         /**
    180          * Define constant if not already set
    181          *
    182          * @since 3.0
    183          *
    184          * @param string      $name name.
    185          * @param string|bool $value value.
    186          */
    187         public function define( $name, $value ) {
    188             if ( ! defined( $name ) ) {
    189                 define( $name, $value );
    190             }
     176            define( 'SP_LC_ITEM_SLUG', $this->plugin_name );
     177            define( 'SP_LC_VERSION', $this->version );
     178            define( 'SP_LC_PATH', plugin_dir_path( __FILE__ ) );
     179            define( 'SP_LC_URL', plugin_dir_url( __FILE__ ) );
     180            define( 'SP_LC_BASENAME', plugin_basename( __FILE__ ) );
    191181        }
    192182
  • logo-carousel-free/trunk/readme.txt

    r2691412 r2713583  
    44Tags: logo carousel, logo slider, carousel slider, carousel, logo showcase, logo gallery, clients logo gallery, best WordPress logo showcase, carousel, responsive logo carousel, clients logo carousel, logo carousel slider, logo slide show, vertical logo carousel, logo grid showcase, logo list, brands logo carousel, partners, supporters, sponsors, affiliates
    55Requires at least: 4.3
    6 Tested up to: 5.9
    7 Stable tag: 3.4.7
     6Tested up to: 5.9.3
     7Stable tag: 3.4.8
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    216216== Changelog ==
    217217
     218= 3.4.8 Apr 23, 2022 =
     219* New: Elementor Addon.
     220* Fix: Some assets of the Logo Carousel admin panel are not loaded properly in a few websites as that hosting directory is different.
     221
     222
    218223= 3.4.7 Mar 09, 2022 =
    219224* New: Gutenberg Block for Logo Carousel shortcode.
Note: See TracChangeset for help on using the changeset viewer.