Changeset 2707910
- Timestamp:
- 04/11/2022 09:12:36 AM (4 years ago)
- Location:
- pluglab/trunk
- Files:
-
- 9 edited
-
includes/theme/corposet/class-pl-theme-corposet-customizer.php (modified) (5 diffs)
-
includes/theme/corposet/class-pl-theme-corposet-layout.php (modified) (6 diffs)
-
includes/theme/corposet/class-pl-theme-corposet-load.php (modified) (1 diff)
-
includes/theme/corposet/class-pl-theme-corposet-portfolio-section.php (modified) (1 diff)
-
includes/theme/corposet/class-pl-theme-corposet-service-section.php (modified) (1 diff)
-
includes/theme/corposet/class-pl-theme-corposet-slider.php (modified) (1 diff)
-
includes/theme/corposet/pl-default-functions.php (modified) (3 diffs)
-
pluglab.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pluglab/trunk/includes/theme/corposet/class-pl-theme-corposet-customizer.php
r2706791 r2707910 32 32 'homepage_template_settings', 33 33 array( 34 'title' => __( 'Homepage Sections Setting' ),34 'title' => __( 'Homepage Template' ), 35 35 'description' => 'Template sections setting to manage like hide/show, etc.', // Include html tags such as <p>. 36 36 // 'priority' => 1, // Mixed with top-level-section hierarchy. … … 40 40 'corposet_template_settings', 41 41 array( 42 'title' => __( ' Template Settings', 'corposet' ),42 'title' => __( 'Other Templates', 'corposet' ), 43 43 // 'description' => 'Template sections setting to manage like hide/show, etc.', // Include html tags such as <p>. 44 44 // 'priority' => 50, … … 78 78 79 79 $wp_customize->add_section( 80 'service_section', 81 array( 82 'title' => __( 'Service', 'pluglab' ), 83 'description' => esc_html__( 'Manage service section', 'pluglab' ), 84 'panel' => 'homepage_template_settings', 85 ) 86 ); 87 88 $wp_customize->add_section( 80 89 'portfolio_section', 81 90 array( … … 87 96 88 97 $wp_customize->add_section( 89 'service_section',90 array(91 'title' => __( 'Service', 'pluglab' ),92 'description' => esc_html__( 'Manage service section', 'pluglab' ),93 'panel' => 'homepage_template_settings',94 )95 );96 97 98 99 $wp_customize->add_section(100 98 'cta_section', 101 99 array( … … 259 257 'top_phone_icon', 260 258 array( 261 'default' => 'fa- send-o',259 'default' => 'fa-phone', 262 260 'sanitize_callback' => 'sanitize_text_field', 263 261 'capability' => 'edit_theme_options', -
pluglab/trunk/includes/theme/corposet/class-pl-theme-corposet-layout.php
r2706791 r2707910 8 8 } 9 9 10 public function top_header( ) {10 public function top_header($width='container') { 11 11 if ( 12 12 (bool) get_theme_mod( 'hide_show_top_details', '1' ) … … 16 16 17 17 <div class="topbar"> 18 <div class="container">18 <div class="<?php echo (!$width) ? 'container' : $width; ?>"> 19 19 <div class="row align-items-center"> 20 20 <div class="col-md-6"> … … 81 81 $slider_content = json_decode( $slider_content_raw ); 82 82 ?> 83 <div class="sliderhome owl-carousel owl-theme" >83 <div class="sliderhome owl-carousel owl-theme" id="slider-section"> 84 84 <?php 85 85 foreach ( $slider_content as $item ) { … … 154 154 ?> 155 155 156 <div class="container section features tp-80 mb-40" >156 <div class="container section features tp-80 mb-40" id="callout-section"> 157 157 <div class="row align-items-center"> 158 158 <div class="col-lg-4 col-md-6 col-sm-6 "> … … 225 225 ?> 226 226 227 <section class="section testimonials" >227 <section class="section testimonials" id="testimonial-section"> 228 228 <div class="container"> 229 229 <div class="section-heading text-center"> … … 287 287 ?> 288 288 <!--section blog--> 289 <div class="section bg-grey blog-home" >289 <div class="section bg-grey blog-home" id="blog-section"> 290 290 <div class="container"> 291 291 <div class="section-heading text-center"> -
pluglab/trunk/includes/theme/corposet/class-pl-theme-corposet-load.php
r2650753 r2707910 46 46 * LayOut 47 47 */ 48 add_action( 'corposet_header_layouts', array( $this, 'top_header' ), 1 );48 add_action( 'corposet_header_layouts', array( $this, 'top_header' ), 1 , 1 ); 49 49 add_action( 'corposet_hometemplate_layouts', array( $this, 'slider' ), 2 ); 50 50 add_action('corposet_hometemplate_layouts', [$this, 'callout'], 3); -
pluglab/trunk/includes/theme/corposet/class-pl-theme-corposet-portfolio-section.php
r2648171 r2707910 54 54 ?> 55 55 56 <div class="section bg-grey project-section" >56 <div class="section bg-grey project-section" id="portfolio-section"> 57 57 <div class='container'> 58 58 <?php -
pluglab/trunk/includes/theme/corposet/class-pl-theme-corposet-service-section.php
r2648171 r2707910 46 46 ?> 47 47 48 <section class="section services bg-size-cover" style="background-image: url(<?php echo $service_bg; ?>);" >48 <section class="section services bg-size-cover" style="background-image: url(<?php echo $service_bg; ?>);" id="service-section"> 49 49 <div class="container"> 50 50 <div class="section-heading text-center"> -
pluglab/trunk/includes/theme/corposet/class-pl-theme-corposet-slider.php
r2648171 r2707910 24 24 $slider_content_raw = get_theme_mod( 'slider_repeater', slider_default_json() ); 25 25 $slider_content = json_decode( $slider_content_raw ); 26 ?><div class="sliderhome owl-carousel owl-theme wow fadeInUpBig" data-wow-delay="0ms" data-wow-duration="1500ms" >26 ?><div class="sliderhome owl-carousel owl-theme wow fadeInUpBig" data-wow-delay="0ms" data-wow-duration="1500ms" id="slider-section"> 27 27 <?php 28 28 foreach ( $slider_content as $item ) { -
pluglab/trunk/includes/theme/corposet/pl-default-functions.php
r2648171 r2707910 8 8 array( 9 9 'image_url' => PL_PLUGIN_URL . 'assets/images/corposet/slide1.jpg', 10 'title' => __( ' Exceeding Your Expectations', 'pluglab' ),11 'subtitle' => __( ' Business we operate in is like an intricate game of strategy and chess, where every move counts and you keep score with money', 'pluglab' ),10 'title' => __( 'Lorem Ipsum', 'pluglab' ), 11 'subtitle' => __( 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer aliquet venenatis sagittis.', 'pluglab' ), 12 12 'text' => 'Curabitur', 13 13 'text2' => 'Phasellus', … … 19 19 array( 20 20 'image_url' => PL_PLUGIN_URL . 'assets/images/corposet/slide2.jpg', 21 'title' => __( ' Future Is Bright In Corporet', 'pluglab' ),21 'title' => __( 'Lorem Ipsum Lorem Ipsum', 'pluglab' ), 22 22 'subtitle' => __( 'Business we operate in is like an intricate game of strategy and chess, where every move counts and you keep score with money.', 'pluglab' ), 23 23 'text' => 'Curabitur', … … 30 30 array( 31 31 'image_url' => PL_PLUGIN_URL . 'assets/images/corposet/slide3.jpg', 32 'title' => __( ' A collection of textile samples', 'pluglab' ),33 'subtitle' => __( ' He lay on his armour-like back, and if he lifted his head a little he could see his brown belly.', 'pluglab' ),32 'title' => __( 'Lorem Ipsum', 'pluglab' ), 33 'subtitle' => __( 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer aliquet venenatis sagittis.', 'pluglab' ), 34 34 'text' => 'Curabitur', 35 35 'text2' => 'Phasellus', -
pluglab/trunk/pluglab.php
r2706791 r2707910 5 5 Plugin URI: 6 6 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.2. 07 Version: 0.2.1 8 8 Author: UnibirdTech 9 9 Text Domain: pluglab … … 13 13 14 14 if ( ! defined( 'PL_PLUGIN_VERSION' ) ) { 15 define( 'PL_PLUGIN_VERSION', '0.2. 0' );15 define( 'PL_PLUGIN_VERSION', '0.2.1' ); 16 16 } 17 17 -
pluglab/trunk/readme.txt
r2706791 r2707910 4 4 Tags: customizer, logo,header, Testimonial, callout, service 5 5 Tested up to: 5.8.1 6 Stable tag: 0.2. 06 Stable tag: 0.2.1 7 7 License: GPLv3 License URI: https://www.gnu.org/licenses/gpl-3.0.en.html 8 8 … … 85 85 * Added Bizstrait layouts 86 86 * Other fixes 87 88 = 0.2.1 = 89 * Updates & Fixes (corposet)
Note: See TracChangeset
for help on using the changeset viewer.