Changeset 208923
- Timestamp:
- 11/21/2023 07:10:23 AM (2 years ago)
- Location:
- tour-travel-agent/0.3.2
- Files:
-
- 3 added
- 6 edited
- 1 copied
-
. (copied) (copied from tour-travel-agent/0.3.1)
-
functions.php (modified) (1 diff)
-
inc/customizer.php (modified) (1 diff)
-
inc/tgm (added)
-
inc/tgm/class-tgm-plugin-activation.php (added)
-
inc/tgm/tgm.php (added)
-
languages/tour-travel-agent.pot (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
style.css (modified) (1 diff)
-
tc-style.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tour-travel-agent/0.3.2/functions.php
r206230 r208923 515 515 /* Webfonts */ 516 516 require get_template_directory() . '/wptt-webfont-loader.php'; 517 518 /* TGM Plugin Activation */ 519 require get_template_directory() . '/inc/tgm/tgm.php'; -
tour-travel-agent/0.3.2/inc/customizer.php
r207602 r208923 1068 1068 )); 1069 1069 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 1070 1085 $wp_customize->add_setting('tour_travel_agent_date_hide',array( 1071 1086 'default' => true, -
tour-travel-agent/0.3.2/languages/tour-travel-agent.pot
r206230 r208923 576 576 msgstr "" 577 577 578 #: customizer.php:937 579 msgid "Blog Post Alignment" 580 msgstr "" 581 578 582 #: customizer.php:894 579 583 msgid "Enable / Disable Post Date" -
tour-travel-agent/0.3.2/readme.txt
r207602 r208923 3 3 Tags: 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 4 4 Requires at least: 5.0 5 Tested up to: 6. 35 Tested up to: 6.4 6 6 Requires PHP: 7.2 7 Stable tag: 0.3. 17 Stable tag: 0.3.2 8 8 License: GNU General Public License v3.0 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 168 168 * Update POT file. 169 169 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 170 176 == Resources == 171 177 … … 208 214 -- License: https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE 209 215 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 210 221 - Pxhere Images 211 222 License: CC0 1.0 Universal (CC0 1.0) -
tour-travel-agent/0.3.2/style.css
r207602 r208923 5 5 Author URI: https://www.themescaliber.com/ 6 6 Description: 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. 17 Version: 0.3.2 8 8 Requires at least: 5.0 9 Tested up to: 6. 39 Tested up to: 6.4 10 10 Requires PHP: 7.2 11 11 License: GNU General Public License v3.0 -
tour-travel-agent/0.3.2/tc-style.php
r207602 r208923 581 581 582 582 $tour_travel_agent_show_hide_post_categories = get_theme_mod('tour_travel_agent_show_hide_post_categories',true); 583 584 583 if($tour_travel_agent_show_hide_post_categories == false){ 585 584 $tour_travel_agent_custom_css .='.tc-category{'; … … 587 586 $tour_travel_agent_custom_css .='}'; 588 587 } 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.