Plugin Directory

Changeset 2518162


Ignore:
Timestamp:
04/20/2021 09:04:16 AM (5 years ago)
Author:
unibirdtech
Message:

Fixed info section customizer issue.

Location:
pluglab/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • pluglab/trunk/includes/theme/shapro/class-pl-theme-shapro-customizer.php

    r2471430 r2518162  
    433433        $wp_customize->add_setting('callout1_title',
    434434                array(
    435                     'default' => $this->defaults['callout_title'],
     435                    'default' => $this->defaults['callout1_title'],
    436436                    'transport' => 'postMessage',
    437437                    'sanitize_callback' => 'wp_filter_nohtml_kses'
     
    453453        $wp_customize->add_setting('callout1_desc',
    454454                array(
    455                     'default' => $this->defaults['callout_description'],
     455                    'default' => $this->defaults['callout1_description'],
    456456                    'transport' => 'postMessage',
    457457                    'sanitize_callback' => 'wp_filter_nohtml_kses'
     
    488488        $wp_customize->add_setting('callout2_title',
    489489                array(
    490                     'default' => $this->defaults['callout_title'],
     490                    'default' => $this->defaults['callout2_title'],
    491491                    'transport' => 'postMessage',
    492492                    'sanitize_callback' => 'wp_filter_nohtml_kses'
     
    508508        $wp_customize->add_setting('callout2_desc',
    509509                array(
    510                     'default' => $this->defaults['callout_description'],
     510                    'default' => $this->defaults['callout2_description'],
    511511                    'transport' => 'postMessage',
    512512                    'sanitize_callback' => 'wp_filter_nohtml_kses'
     
    543543        $wp_customize->add_setting('callout3_title',
    544544                array(
    545                     'default' => $this->defaults['callout_title'],
     545                    'default' => $this->defaults['callout3_title'],
    546546                    'transport' => 'postMessage',
    547547                    'sanitize_callback' => 'wp_filter_nohtml_kses'
     
    563563        $wp_customize->add_setting('callout3_desc',
    564564                array(
    565                     'default' => $this->defaults['callout_description'],
     565                    'default' => $this->defaults['callout3_description'],
    566566                    'transport' => 'postMessage',
    567567                    'sanitize_callback' => 'wp_filter_nohtml_kses'
     
    10521052            'callout_display' => 1,
    10531053            'callout_icon' => 'fa-bullseye',
    1054             'callout_title' => 'heading...',
    1055             'callout_description' => 'brief...',
     1054            'callout1_title' => 'Avantage Services',
     1055            'callout2_title' => 'Our Approach',
     1056            'callout3_title' => 'Business Management',
     1057            'callout1_description' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.',
     1058            'callout2_description' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.',
     1059            'callout3_description' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.',
    10561060            'slider_display' => 1,
    10571061            'social_newtab' => 1,
  • pluglab/trunk/pluglab.php

    r2471430 r2518162  
    55  Plugin URI:
    66  Description: Pluglab contain all features which are required to create a complete website. Main motive behind this plugin is to boost up functionality of Unibird themes.
    7   Version: 0.0.3
     7  Version: 0.0.4
    88  Author: UnibirdTech
    99  Text Domain: pluglab
  • pluglab/trunk/readme.txt

    r2471430 r2518162  
    44Tags: customizer, logo,header, Testimonial, callout, service
    55Tested up to: 5.6
    6 Stable tag: 0.0.3
     6Stable tag: 0.0.4
    77License: GPLv3 License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
    88
     
    3838= 0.0.2 =
    3939Initial release
     40
    4041= 0.0.3 =
    4142* Added Autoloader classes
    4243* Changed file name
    4344* Minor issues fix
     45
     46= 0.0.4 =
     47* Fixes info section customizer issue.
Note: See TracChangeset for help on using the changeset viewer.