Make WordPress Themes

Changeset 208923


Ignore:
Timestamp:
11/21/2023 07:10:23 AM (2 years ago)
Author:
themedropbox
Message:

New version of Tour Travel Agent - 0.3.2

Location:
tour-travel-agent/0.3.2
Files:
3 added
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • tour-travel-agent/0.3.2/functions.php

    r206230 r208923  
    515515/* Webfonts */
    516516require get_template_directory() . '/wptt-webfont-loader.php';
     517
     518/* TGM Plugin Activation */
     519require get_template_directory() . '/inc/tgm/tgm.php';
  • tour-travel-agent/0.3.2/inc/customizer.php

    r207602 r208923  
    10681068    ));
    10691069
     1070    $wp_customize->add_setting('tour_travel_agent_blog_post_alignment',array(
     1071        'default' => 'left',
     1072        'sanitize_callback' => 'tour_travel_agent_sanitize_choices'
     1073    ));
     1074    $wp_customize->add_control('tour_travel_agent_blog_post_alignment', array(
     1075        'type' => 'select',
     1076        'label' => __( 'Blog Post Alignment', 'tour-travel-agent' ),
     1077        'section' => 'tour_travel_agent_blog_post',
     1078        'choices' => array(
     1079            'left' => __('Left Align','tour-travel-agent'),
     1080            'right' => __('Right Align','tour-travel-agent'),
     1081            'center' => __('Center Align','tour-travel-agent')
     1082        ),
     1083    ));
     1084
    10701085    $wp_customize->add_setting('tour_travel_agent_date_hide',array(
    10711086       'default' => true,
  • tour-travel-agent/0.3.2/languages/tour-travel-agent.pot

    r206230 r208923  
    576576msgstr ""
    577577
     578#: customizer.php:937
     579msgid "Blog Post Alignment"
     580msgstr ""
     581
    578582#: customizer.php:894
    579583msgid "Enable / Disable Post Date"
  • tour-travel-agent/0.3.2/readme.txt

    r207602 r208923  
    33Tags: left-sidebar, right-sidebar, one-column, two-columns, three-columns, four-columns, grid-layout, block-styles, wide-blocks, custom-background, custom-logo, custom-menu, custom-header, editor-style, featured-images, footer-widgets, flexible-header, sticky-post, full-width-template, theme-options, threaded-comments, blog, portfolio, photography
    44Requires at least: 5.0
    5 Tested up to: 6.3
     5Tested up to: 6.4
    66Requires PHP: 7.2
    7 Stable tag: 0.3.1
     7Stable tag: 0.3.2
    88License: GNU General Public License v3.0
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    168168* Update POT file.
    169169
     170= 0.3.2 =
     171* Added blog post alignment option.
     172* Added tgm file.
     173* Tested upto WP v6.4
     174* Update POT file.
     175
    170176== Resources ==
    171177
     
    208214    -- License: https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
    209215
     216- TGMPA
     217    -- GaryJones Copyright (C) 1989, 1991
     218    -- https://github.com/TGMPA/TGM-Plugin-Activation/blob/develop/LICENSE.md
     219    -- License: GNU General Public License v2.0
     220
    210221- Pxhere Images
    211222    License: CC0 1.0 Universal (CC0 1.0)
  • tour-travel-agent/0.3.2/style.css

    r207602 r208923  
    55Author URI: https://www.themescaliber.com/
    66Description: Tour Travel Agent is a stunning WordPress theme for representing visa passport support, travel package arrangers, immigration support, visa and passport services, reservations as well as hotel bookings, yacht bookings, travel destinations explorer and tour companies, travel guides and also suits any travel and tourism blog. It is a multipurpose theme with a clean and user-friendly interface giving an easy-to-use layout for beginners as well as novices for sure. Professionals have crafted this theme with some well-written and highly optimized codes in order to get a lightweight design that loads without any delay and delivers faster page load times. With its responsive design supporting multiple devices, your website is going to look absolutely phenomenal. Retina-ready display along with nicely crafted content spaces for publishing the details look absolutely great. Call to Action Button (CTA) are useful for guiding the audience and making the whole website interactive. CSS animations add more style and life to the existing design and with social media icons, you can extend your reach to the audience far and wide. With SEO friendly theme, getting to the top ranks in the SERP is no more a tough task. This theme is Bootstrap-based and makes personalization options available for you. Demo: https://www.themescaliber.com/tour-travel-agent-pro/
    7 Version: 0.3.1
     7Version: 0.3.2
    88Requires at least: 5.0
    9 Tested up to: 6.3
     9Tested up to: 6.4
    1010Requires PHP: 7.2
    1111License: GNU General Public License v3.0
  • tour-travel-agent/0.3.2/tc-style.php

    r207602 r208923  
    581581
    582582    $tour_travel_agent_show_hide_post_categories = get_theme_mod('tour_travel_agent_show_hide_post_categories',true);
    583 
    584583    if($tour_travel_agent_show_hide_post_categories == false){
    585584        $tour_travel_agent_custom_css .='.tc-category{';
     
    587586        $tour_travel_agent_custom_css .='}';
    588587    }
     588
     589    /*-------- Blog Post Alignment ------*/
     590    $tour_travel_agent_post_alignment = get_theme_mod('tour_travel_agent_blog_post_alignment', 'left');
     591    if($tour_travel_agent_post_alignment == 'center' ){
     592        $tour_travel_agent_custom_css .='.services-box,.services-box h2,.services-box .read-btn{';
     593            $tour_travel_agent_custom_css .=' text-align: '. $tour_travel_agent_post_alignment .'!important;';
     594        $tour_travel_agent_custom_css .='}';
     595    }elseif($tour_travel_agent_post_alignment == 'right' ){
     596        $tour_travel_agent_custom_css .='.services-box,.services-box h2,.services-box .read-btn{';
     597            $tour_travel_agent_custom_css .='text-align: '. $tour_travel_agent_post_alignment .'!important;';
     598        $tour_travel_agent_custom_css .='}';
     599    }
Note: See TracChangeset for help on using the changeset viewer.