Make WordPress Themes

Changeset 278348


Ignore:
Timestamp:
07/08/2025 07:04:50 AM (5 months ago)
Author:
themedropbox
Message:

New version of Tour Travel Agent - 0.6.3

Location:
tour-travel-agent/0.6.3
Files:
2 added
7 edited
1 copied

Legend:

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

    r276887 r278348  
    338338    wp_enqueue_style( 'owl.carousel-style', get_template_directory_uri().'/css/owl.carousel.css' );
    339339    wp_enqueue_style( 'tour-travel-agent-block-style', get_template_directory_uri().'/css/block-style.css' );
     340    wp_enqueue_script( 'wow-jquery', get_template_directory_uri() . '/js/wow.js', array('jquery'),'' ,true );
     341    wp_enqueue_style( 'animate-style', get_template_directory_uri().'/css/animate.css' );
    340342
    341343    // Body
  • tour-travel-agent/0.6.3/inc/customizer.php

    r276887 r278348  
    14811481    ));
    14821482
     1483    $wp_customize->add_setting('tour_travel_agent_initial_caps_enable',
     1484    array(
     1485        'default' => false,
     1486        'sanitize_callback' => 'tour_travel_agent_sanitize_checkbox',
     1487    ));
     1488    $wp_customize->add_control( 'tour_travel_agent_initial_caps_enable',
     1489    array(
     1490        'label' => esc_html__('Initial Letter Capital', 'tour-travel-agent'),
     1491        'type' => 'checkbox',
     1492        'section' => 'tour_travel_agent_blog_post',
     1493    ));
     1494
    14831495    $wp_customize->add_setting('tour_travel_agent_date_hide',array(
    14841496       'default' => true,
     
    22942306        'panel' => 'tour_travel_agent_panel_id',
    22952307    ));
     2308
     2309    $wp_customize->add_setting('tour_travel_agent_grid_columns', array(
     2310        'default'           => '3',
     2311        'sanitize_callback' => 'tour_travel_agent_sanitize_choices',
     2312        'transport'         => 'refresh',
     2313    ));
     2314    $wp_customize->add_control('tour_travel_agent_grid_columns', array(
     2315        'label'    => __('Grid Columns', 'tour-travel-agent'),
     2316        'section'  => 'tour_travel_agent_grid_post',
     2317        'type'     => 'select',
     2318        'choices'  => array(
     2319            '3' => __('3 Columns', 'tour-travel-agent'),
     2320            '4' => __('4 Columns', 'tour-travel-agent'),
     2321        ),
     2322    ));
    22962323
    22972324    $wp_customize->add_setting('tour_travel_agent_grid_post_date_hide',array(
  • tour-travel-agent/0.6.3/readme.txt

    r276887 r278348  
    55Tested up to: 6.8
    66Requires PHP: 7.2
    7 Stable tag: 0.6.2
     7Stable tag: 0.6.3
    88License: GNU General Public License v3.0
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    364364* Added css for active tab in get started.
    365365
     366= 0.6.3 =
     367* Added columns selection option in grid post.
     368* Added wow.js effect in blog post.
     369* Added initial letter capital setting in blog post.
     370* Resolved error for footer widget text alignment in tablet media.
     371
    366372== Resources ==
    367373
     
    439445    License: CC0 1.0 Universal (CC0 1.0)
    440446    Source: https://pxhere.com/en/photo/919514
     447
     448- WOW JS
     449    Matthieu Aussaguel
     450    Copyright 2016, Matthieu Aussaguel
     451    https://github.com/matthieua/WOW
     452    License: GPLv3
     453    https://github.com/matthieua/WOW/blob/master/README.md
     454
     455- Animate CSS
     456    Daniel Eden
     457    Copyright 2021 Daniel Eden
     458    https://github.com/animate-css/animate.css
     459    License: 2.1
     460    https://github.com/animate-css/animate.css/blob/main/LICENSE
  • tour-travel-agent/0.6.3/style.css

    r276887 r278348  
    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. The theme is best for Travel Agency, Tour Operator, Adventure Travel, Luxury Tours, Holiday Packages, Destination Management, Group Tours, Eco Tours, Cultural Tours, Travel Consultant, Travel Planner, Cruise Travel, Safari Tours, Guided Tours, Vacation Packages. 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://preview.themescaliber.com/tour-travel-agent-pro/
    7 Version: 0.6.2
     7Version: 0.6.3
    88Requires at least: 5.0
    99Tested up to: 6.8
     
    21982198  }
    21992199}
     2200@media screen and (max-width: 767px) {
     2201    .footertown .footer-block p,.footertown .footer-block ul li,.footertown .footer-block h3{
     2202      text-align: center !important;
     2203    }
     2204}
    22002205@media only screen and (max-width: 767px) and (min-width: 426px) {
    22012206  #slider .slider-content {
  • tour-travel-agent/0.6.3/tc-style.php

    r271612 r278348  
    947947        $tour_travel_agent_custom_css .='}';
    948948    }
     949
     950    //Initial Cap
     951    $tour_travel_agent_initial_caps_enable = get_theme_mod('tour_travel_agent_initial_caps_enable', 'false');
     952    if($tour_travel_agent_initial_caps_enable == 'true' ){
     953        $tour_travel_agent_custom_css .='.post-box p:nth-of-type(1)::first-letter{';
     954            $tour_travel_agent_custom_css .=' font-size: 60px!important; font-weight: 800!important;';
     955        $tour_travel_agent_custom_css .=' margin-right: 10px!important;';
     956            $tour_travel_agent_custom_css .=' font-family: "Vollkorn", serif!important;';
     957            $tour_travel_agent_custom_css .=' line-height: 1!important;';
     958        $tour_travel_agent_custom_css .='}';
     959    }elseif($tour_travel_agent_initial_caps_enable == 'false' ){
     960        $tour_travel_agent_custom_css .='.post-box p:nth-of-type(1)::first-letter{';
     961            $tour_travel_agent_custom_css .='display: none!important;';
     962        $tour_travel_agent_custom_css .='}';
     963    }
  • tour-travel-agent/0.6.3/template-parts/content.php

    r262448 r278348  
    88 */
    99?>
    10 <article id="post-<?php the_ID(); ?>" <?php post_class('inner-service'); ?>>
    11   <div class="services-box p-3">   
     10<article id="post-<?php the_ID(); ?>" <?php post_class('inner-service');?>>
     11  <div class="services-box wow zoomInLeft delay-2000 p-3">   
    1212    <div class="post-box">
    1313      <div class="tc-category">
     
    2222        </div>
    2323      <?php }?>
    24      
    2524      <h2 class="pt-1"><a href="<?php echo esc_url( get_permalink() ); ?>"><?php the_title(); ?><span class="screen-reader-text"><?php the_title(); ?></span></a></h2>
    2625      <div class="lower-box">
  • tour-travel-agent/0.6.3/template-parts/grid-layout.php

    r271612 r278348  
    88 */
    99?>
    10 <div class="col-lg-4 col-md-4">
     10<?php
     11  $tour_travel_agent_grid_columns = get_theme_mod('tour_travel_agent_grid_columns', '3');
     12  if ($tour_travel_agent_grid_columns == '3') {
     13    $tour_travel_agent_column_class = 'col-lg-4 col-md-4';
     14  } elseif ($tour_travel_agent_grid_columns == '4') {
     15    $tour_travel_agent_column_class = 'col-lg-3 col-md-6';
     16  }
     17?>
     18<div class="<?php echo esc_attr($tour_travel_agent_column_class); ?>">
    1119  <article id="post-<?php the_ID(); ?>" <?php post_class('inner-service'); ?>>
    1220    <div class="services-box p-3">
Note: See TracChangeset for help on using the changeset viewer.