Changeset 252038
- Timestamp:
- 12/12/2024 09:19:50 AM (12 months ago)
- Location:
- tour-travel-agent/0.5.1
- Files:
-
- 9 added
- 14 edited
- 1 copied
-
. (copied) (copied from tour-travel-agent/0.5)
-
css/customize-controls.css (modified) (1 diff)
-
footer.php (modified) (1 diff)
-
header.php (modified) (1 diff)
-
images/popular-tour1.png (added)
-
images/popular-tour2.png (added)
-
images/popular-tour3.png (added)
-
images/popular-tour4.png (added)
-
images/tour-category1.png (added)
-
images/tour-category2.png (added)
-
images/tour-category3.png (added)
-
images/tour-category4.png (added)
-
inc/customizer.php (modified) (6 diffs)
-
inc/dashboard/demo-importer.php (added)
-
inc/dashboard/getstart.css (modified) (3 diffs)
-
inc/dashboard/getstart.php (modified) (2 diffs)
-
languages/tour-travel-agent.pot (modified) (25 diffs)
-
page-template/custom-frontpage.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
style.css (modified) (3 diffs)
-
tc-style.php (modified) (2 diffs)
-
woocommerce/archive-product.php (modified) (1 diff)
-
woocommerce/checkout/form-checkout.php (modified) (4 diffs)
-
woocommerce/single-product.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tour-travel-agent/0.5.1/css/customize-controls.css
r242462 r252038 245 245 #customize-control-tour_travel_agent_tour_settings_premium_features li, 246 246 #customize-control-tour_travel_agent_post_settings_premium_features li{ 247 list-style-type: disc; 248 margin-left: 20px; 249 } 247 list-style-type: disc; 248 margin-left: 20px; 249 } 250 .accordion-section-title button.accordion-trigger{ 251 height: unset !important; 252 } 253 #accordion-section-tour_travel_agent_example_1 .accordion-section-title:after{ 254 display: none; 255 } -
tour-travel-agent/0.5.1/footer.php
r236564 r252038 25 25 <div class="container"> 26 26 <div class="row"> 27 <?php if ( is_active_sidebar( 'footer-1' ) ) : ?> 28 <div class="sidebar-column <?php echo esc_attr( $cols ); ?>"> 29 <?php dynamic_sidebar( 'footer-1'); ?> 30 </div> 31 <?php endif; ?> 32 <?php if ( is_active_sidebar( 'footer-2' ) ) : ?> 33 <div class="sidebar-column <?php echo esc_attr( $cols ); ?>"> 34 <?php dynamic_sidebar( 'footer-2'); ?> 35 </div> 36 <?php endif; ?> 37 <?php if ( is_active_sidebar( 'footer-3' ) ) : ?> 38 <div class="sidebar-column <?php echo esc_attr( $cols ); ?>"> 39 <?php dynamic_sidebar( 'footer-3'); ?> 40 </div> 41 <?php endif; ?> 42 <?php if ( is_active_sidebar( 'footer-4' ) ) : ?> 43 <div class="sidebar-column <?php echo esc_attr( $cols ); ?>"> 44 <?php dynamic_sidebar( 'footer-4'); ?> 45 </div> 27 <!-- Footer 1 --> 28 <div class="<?php echo is_active_sidebar('footer-1') ? 'col-lg-3 col-md-6 col-12' : 'col-lg-3 col-md-6 col-12'; ?> footer-block"> 29 <?php if (is_active_sidebar('footer-1')) : ?> 30 <?php dynamic_sidebar('footer-1'); ?> 31 <?php else : ?> 32 <aside id="calendar" class="widget py-3" role="complementary" aria-label="<?php esc_attr_e('footer1', 'tour-travel-agent'); ?>"> 33 <h3 class="widget-title"><?php esc_html_e('Calendar', 'tour-travel-agent'); ?></h3> 34 <?php the_widget('WP_Widget_Calendar'); ?> 35 </aside> 46 36 <?php endif; ?> 37 </div> 38 39 <!-- Footer 2 --> 40 <div class="<?php echo is_active_sidebar('footer-2') ? 'col-lg-3 col-md-6 col-12' : 'col-lg-3 col-md-6 col-12'; ?> footer-block"> 41 <?php if (is_active_sidebar('footer-2')) : ?> 42 <?php dynamic_sidebar('footer-2'); ?> 43 <?php else : ?> 44 <aside id="meta" class="widget py-3" role="complementary" aria-label="<?php esc_attr_e('footer2', 'tour-travel-agent'); ?>"> 45 <h3 class="widget-title"><?php esc_html_e('Meta', 'tour-travel-agent'); ?></h3> 46 <ul> 47 <?php wp_register(); ?> 48 <li><?php wp_loginout(); ?></li> 49 <?php wp_meta(); ?> 50 </ul> 51 </aside> 52 <?php endif; ?> 53 </div> 54 55 <!-- Footer 3 --> 56 <div class="<?php echo is_active_sidebar('footer-3') ? 'col-lg-3 col-md-6 col-12' : 'col-lg-3 col-md-6 col-12'; ?> footer-block"> 57 <?php if (is_active_sidebar('footer-3')) : ?> 58 <?php dynamic_sidebar('footer-3'); ?> 59 <?php else : ?> 60 <aside id="categories" class="widget py-3" role="complementary" aria-label="<?php esc_attr_e('footer3', 'tour-travel-agent'); ?>"> 61 <h3 class="widget-title"><?php esc_html_e('Categories', 'tour-travel-agent'); ?></h3> 62 <ul> 63 <?php wp_list_categories('title_li='); ?> 64 </ul> 65 </aside> 66 <?php endif; ?> 67 </div> 68 69 <!-- Footer 4 --> 70 <div class="<?php echo is_active_sidebar('footer-4') ? 'col-lg-3 col-md-6 col-12' : 'col-lg-3 col-md-6 col-12'; ?> footer-block"> 71 <?php if (is_active_sidebar('footer-4')) : ?> 72 <?php dynamic_sidebar('footer-4'); ?> 73 <?php else : ?> 74 <aside id="search-widget" class="widget py-3" role="complementary" aria-label="<?php esc_attr_e('footer4', 'tour-travel-agent'); ?>"> 75 <h3 class="widget-title"><?php esc_html_e('Search', 'tour-travel-agent'); ?></h3> 76 <?php the_widget('WP_Widget_Search'); ?> 77 </aside> 78 <?php endif; ?> 79 </div> 47 80 </div> 48 81 </div> -
tour-travel-agent/0.5.1/header.php
r236564 r252038 47 47 <a class="screen-reader-text skip-link" href="#main"><?php esc_html_e( 'Skip to content', 'tour-travel-agent' ); ?><span class="screen-reader-text"><?php esc_html_e( 'Skip to content', 'tour-travel-agent' );?></span></a> 48 48 <div id="header"> 49 <?php if(get_theme_mod('tour_travel_agent_show_topbar', false) == true || get_theme_mod('tour_travel_agent_hide_topbar_responsive',false) == true) {?>49 <?php if(get_theme_mod('tour_travel_agent_show_topbar',true) == true || get_theme_mod('tour_travel_agent_hide_topbar_responsive',false) == true) {?> 50 50 <div class="topbar"> 51 51 <div class="container"> -
tour-travel-agent/0.5.1/inc/customizer.php
r248480 r252038 897 897 898 898 $wp_customize->add_setting( 'tour_travel_agent_show_topbar',array( 899 'default' => false,899 'default' => true, 900 900 'sanitize_callback' => 'tour_travel_agent_sanitize_checkbox' 901 901 ) ); … … 1143 1143 '900' => __('900','tour-travel-agent'), 1144 1144 ), 1145 ) ); 1145 )); 1146 1147 $wp_customize->add_setting('tour_travel_agent_menus_item_style',array( 1148 'default' => '', 1149 'sanitize_callback' => 'tour_travel_agent_sanitize_choices' 1150 )); 1151 $wp_customize->add_control('tour_travel_agent_menus_item_style',array( 1152 'type' => 'select', 1153 'label' => __('Menu Item Hover Style','tour-travel-agent'), 1154 'section' => 'tour_travel_agent_header', 1155 'choices' => array( 1156 'None' => __('None','tour-travel-agent'), 1157 'Zoom In' => __('Zoom In','tour-travel-agent'), 1158 ), 1159 )); 1146 1160 1147 1161 $wp_customize->add_setting('tour_travel_agent_menu_color', array( … … 1219 1233 1220 1234 $wp_customize->add_setting('tour_travel_agent_slider_hide_show',array( 1221 'default' => false,1235 'default' => true, 1222 1236 'sanitize_callback' => 'tour_travel_agent_sanitize_checkbox' 1223 1237 )); … … 2898 2912 2899 2913 $wp_customize->add_setting('tour_travel_agent_shop_sidebar',array( 2900 'default' => true,2914 'default' => false, 2901 2915 'sanitize_callback' => 'tour_travel_agent_sanitize_checkbox' 2902 2916 )); … … 2923 2937 2924 2938 $wp_customize->add_setting( 'tour_travel_agent_wocommerce_single_page_sidebar',array( 2925 'default' => true,2939 'default' => false, 2926 2940 'sanitize_callback' => 'tour_travel_agent_sanitize_checkbox' 2927 2941 ) ); … … 3240 3254 'title' => esc_html__( 'Travel Pro Theme', 'tour-travel-agent' ), 3241 3255 'pro_text' => esc_html__( 'Get Pro','tour-travel-agent' ), 3242 'pro_url' => esc_url( 'https://themescaliber.com/ themes/travel-agent-wordpress-theme/' ),3256 'pro_url' => esc_url( 'https://themescaliber.com/products/travel-agent-wordpress-theme/' ), 3243 3257 ) 3244 3258 ) -
tour-travel-agent/0.5.1/inc/dashboard/getstart.css
r168600 r252038 108 108 .col-tc-6 p { 109 109 color: #000; 110 font-size: 1 2px;110 font-size: 14px; 111 111 margin-top: 0; 112 112 text-align: justify; … … 175 175 .info-link-support p { 176 176 color: #000; 177 font-size: 1 3px;177 font-size: 14px; 178 178 margin-bottom: 25px; 179 179 } … … 189 189 width: 100%; 190 190 } 191 192 /* demo import css */ 193 .run-import{ 194 background: #efbe44; 195 padding: 15px 30px; 196 color: #000; 197 font-size: 16px; 198 font-weight: 500; 199 text-align: center; 200 border: none; 201 margin-top: 30px; 202 cursor: pointer; 203 } 204 .run-import a{ 205 text-decoration: none; 206 } 207 .run-import:hover{ 208 color: #fff; 209 background: #000; 210 } 211 #tc_demo{ 212 width: 50%; 213 } 214 #tc_demo h4{ 215 font-size: 18px; 216 color: #000; 217 line-height: 1.2; 218 } 219 .theme-import .notice-text{ 220 color: #28a745; 221 font-size: 18px; 222 font-weight: 500; 223 } 224 .view-site, .run-import{ 225 text-decoration: none; 226 margin: 30px 0px; 227 } 228 .demo{ 229 min-height: 200px !important; 230 text-align: left; 231 } 232 .demo .note{ 233 font-size: 14px; 234 margin-top: 2em; 235 } 236 .demo .notice-text{ 237 margin-bottom: 1.5em; 238 } 239 #tc_pro, 240 #tc_create, 241 #tc_index { 242 display: none; 243 } -
tour-travel-agent/0.5.1/inc/dashboard/getstart.php
r242462 r252038 3 3 add_action( 'admin_menu', 'tour_travel_agent_gettingstarted' ); 4 4 function tour_travel_agent_gettingstarted() { 5 add_theme_page( esc_html__(' Get Started', 'tour-travel-agent'), esc_html__('Get Started', 'tour-travel-agent'), 'edit_theme_options', 'tour_travel_agent_guide', 'tour_travel_agent_mostrar_guide');5 add_theme_page( esc_html__('Theme Demo Content', 'tour-travel-agent'), esc_html__('Theme Demo Content', 'tour-travel-agent'), 'edit_theme_options', 'tour_travel_agent_guide', 'tour_travel_agent_mostrar_guide'); 6 6 } 7 7 … … 26 26 <img role="img" src="<?php echo esc_url(get_template_directory_uri()); ?>/inc/dashboard/images/logo.png" alt="" /> 27 27 </div> 28 <button role="tab" class="tablinks home" onclick="tour_travel_agent_openCity(event, 'tc_index')"><?php esc_html_e( 'Free Theme Information', 'tour-travel-agent' ); ?></button> 28 <button role="tab" class="tablinks home" onclick="tour_travel_agent_openCity(event, 'tc_demo')"><?php esc_html_e( 'Theme Demo Content', 'tour-travel-agent' ); ?></button> 29 <button role="tab" class="tablinks" onclick="tour_travel_agent_openCity(event, 'tc_index')"><?php esc_html_e( 'Free Theme Information', 'tour-travel-agent' ); ?></button> 29 30 <button role="tab" class="tablinks" onclick="tour_travel_agent_openCity(event, 'tc_pro')"><?php esc_html_e( 'Premium Theme Information', 'tour-travel-agent' ); ?></button> 30 31 <button role="tab" class="tablinks" onclick="tour_travel_agent_openCity(event, 'tc_create')"><?php esc_html_e( 'Theme Support', 'tour-travel-agent' ); ?></button> 31 32 </div> 33 34 <div id="tc_demo" class="tabcontent"> 35 <h2><?php esc_html_e( 'Welcome to Tour Travel Agent', 'tour-travel-agent' ); ?> <span class="version">Version: <?php echo esc_html($theme['Version']);?></span></h2> 36 <hr> 37 <div class="demo"> 38 <h4><?php esc_html_e( 'Click the "Run Importer" button below to load demo content for Tour Travel Agent', 'tour-travel-agent' ); ?></h4> 39 <?php 40 /* Get Started. */ 41 require get_parent_theme_file_path( '/inc/dashboard/demo-importer.php' ); 42 ?> 43 </div> 44 </div> 32 45 33 46 <div id="tc_index" class="tabcontent"> -
tour-travel-agent/0.5.1/languages/tour-travel-agent.pot
r248480 r252038 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Tour Travel Agent 0.5 \n"5 "Project-Id-Version: Tour Travel Agent 0.5.1\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/tour-travel-agent\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2024-1 1-08T14:26:44+05:30\n"12 "POT-Creation-Date: 2024-12-03T16:36:51+05:30\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.11.0\n" … … 71 71 72 72 #: comments.php:64 73 #: inc/customizer.php:20 5973 #: inc/customizer.php:2073 74 74 msgid "Leave a Reply" 75 75 msgstr "" 76 76 77 77 #: comments.php:65 78 #: inc/customizer.php:20 6978 #: inc/customizer.php:2083 79 79 msgid "Post Comment" 80 80 msgstr "" … … 103 103 #: footer.php:81 104 104 #: footer.php:83 105 #: inc/customizer.php:23 05105 #: inc/customizer.php:2319 106 106 msgid "Back to Top" 107 107 msgstr "" … … 211 211 212 212 #: header.php:122 213 #: inc/customizer.php:27 56213 #: inc/customizer.php:2770 214 214 msgid "Open Menu" 215 215 msgstr "" … … 220 220 221 221 #: header.php:135 222 #: inc/customizer.php:2 787222 #: inc/customizer.php:2801 223 223 msgid "Close Menu" 224 224 msgstr "" … … 287 287 #: inc/customizer.php:706 288 288 #: inc/customizer.php:1135 289 #: inc/customizer.php:15 24290 #: inc/customizer.php:24 45289 #: inc/customizer.php:1538 290 #: inc/customizer.php:2459 291 291 msgid "100" 292 292 msgstr "" … … 301 301 #: inc/customizer.php:707 302 302 #: inc/customizer.php:1136 303 #: inc/customizer.php:15 25304 #: inc/customizer.php:24 46303 #: inc/customizer.php:1539 304 #: inc/customizer.php:2460 305 305 msgid "200" 306 306 msgstr "" … … 315 315 #: inc/customizer.php:708 316 316 #: inc/customizer.php:1137 317 #: inc/customizer.php:15 26318 #: inc/customizer.php:24 47317 #: inc/customizer.php:1540 318 #: inc/customizer.php:2461 319 319 msgid "300" 320 320 msgstr "" … … 329 329 #: inc/customizer.php:709 330 330 #: inc/customizer.php:1138 331 #: inc/customizer.php:15 27332 #: inc/customizer.php:24 48331 #: inc/customizer.php:1541 332 #: inc/customizer.php:2462 333 333 msgid "400" 334 334 msgstr "" … … 343 343 #: inc/customizer.php:710 344 344 #: inc/customizer.php:1139 345 #: inc/customizer.php:15 28346 #: inc/customizer.php:24 49345 #: inc/customizer.php:1542 346 #: inc/customizer.php:2463 347 347 msgid "500" 348 348 msgstr "" … … 357 357 #: inc/customizer.php:711 358 358 #: inc/customizer.php:1140 359 #: inc/customizer.php:15 29360 #: inc/customizer.php:24 50359 #: inc/customizer.php:1543 360 #: inc/customizer.php:2464 361 361 msgid "600" 362 362 msgstr "" … … 371 371 #: inc/customizer.php:712 372 372 #: inc/customizer.php:1141 373 #: inc/customizer.php:15 30374 #: inc/customizer.php:24 51373 #: inc/customizer.php:1544 374 #: inc/customizer.php:2465 375 375 msgid "700" 376 376 msgstr "" … … 385 385 #: inc/customizer.php:713 386 386 #: inc/customizer.php:1142 387 #: inc/customizer.php:15 31388 #: inc/customizer.php:24 52387 #: inc/customizer.php:1545 388 #: inc/customizer.php:2466 389 389 msgid "800" 390 390 msgstr "" … … 399 399 #: inc/customizer.php:714 400 400 #: inc/customizer.php:1143 401 #: inc/customizer.php:15 32402 #: inc/customizer.php:24 53401 #: inc/customizer.php:1546 402 #: inc/customizer.php:2467 403 403 msgid "900" 404 404 msgstr "" … … 563 563 #: inc/customizer.php:769 564 564 #: inc/customizer.php:784 565 #: inc/customizer.php:29 19566 #: inc/customizer.php:29 44565 #: inc/customizer.php:2933 566 #: inc/customizer.php:2958 567 567 msgid "Left Sidebar" 568 568 msgstr "" … … 571 571 #: inc/customizer.php:770 572 572 #: inc/customizer.php:785 573 #: inc/customizer.php:29 20574 #: inc/customizer.php:29 45573 #: inc/customizer.php:2934 574 #: inc/customizer.php:2959 575 575 msgid "Right Sidebar" 576 576 msgstr "" … … 607 607 608 608 #: inc/customizer.php:807 609 #: inc/customizer.php:28 42609 #: inc/customizer.php:2856 610 610 msgid "Show / Hide Preloader" 611 611 msgstr "" … … 668 668 669 669 #: inc/customizer.php:954 670 #: inc/customizer.php:26 19670 #: inc/customizer.php:2633 671 671 msgid "Add Facebook Icon" 672 672 msgstr "" … … 677 677 678 678 #: inc/customizer.php:977 679 #: inc/customizer.php:26 43679 #: inc/customizer.php:2657 680 680 msgid "Add Twitter Icon" 681 681 msgstr "" 682 682 683 683 #: inc/customizer.php:989 684 #: inc/customizer.php:26 55684 #: inc/customizer.php:2669 685 685 msgid "Add Linkedin URL" 686 686 msgstr "" 687 687 688 688 #: inc/customizer.php:1000 689 #: inc/customizer.php:26 66689 #: inc/customizer.php:2680 690 690 msgid "Add Linkedin Icon" 691 691 msgstr "" … … 696 696 697 697 #: inc/customizer.php:1023 698 #: inc/customizer.php:2 690698 #: inc/customizer.php:2704 699 699 msgid "Add Instagram Icon" 700 700 msgstr "" 701 701 702 702 #: inc/customizer.php:1035 703 #: inc/customizer.php:27 02703 #: inc/customizer.php:2716 704 704 msgid "Icon Font Size" 705 705 msgstr "" … … 730 730 731 731 #: inc/customizer.php:1106 732 #: inc/customizer.php:14 63733 #: inc/customizer.php:24 20732 #: inc/customizer.php:1477 733 #: inc/customizer.php:2434 734 734 msgid "Uppercase" 735 735 msgstr "" 736 736 737 737 #: inc/customizer.php:1107 738 #: inc/customizer.php:14 64739 #: inc/customizer.php:24 21738 #: inc/customizer.php:1478 739 #: inc/customizer.php:2435 740 740 msgid "Capitalize" 741 741 msgstr "" … … 749 749 msgstr "" 750 750 751 #: inc/customizer.php:1152 751 #: inc/customizer.php:1153 752 msgid "Menu Item Hover Style" 753 msgstr "" 754 755 #: inc/customizer.php:1156 756 msgid "None" 757 msgstr "" 758 759 #: inc/customizer.php:1157 760 msgid "Zoom In" 761 msgstr "" 762 763 #: inc/customizer.php:1166 752 764 msgid "Menu Color" 753 765 msgstr "" 754 766 755 #: inc/customizer.php:11 62767 #: inc/customizer.php:1176 756 768 msgid "Menu Hover Color" 757 769 msgstr "" 758 770 759 #: inc/customizer.php:11 72771 #: inc/customizer.php:1186 760 772 msgid "Submenu Color" 761 773 msgstr "" 762 774 763 #: inc/customizer.php:11 82775 #: inc/customizer.php:1196 764 776 msgid "Submenu Hover Color" 765 777 msgstr "" 766 778 767 #: inc/customizer.php:12 07779 #: inc/customizer.php:1221 768 780 msgid "Slider Settings" 769 781 msgstr "" 770 782 771 #: inc/customizer.php:12 26783 #: inc/customizer.php:1240 772 784 msgid "Show / Hide slider" 773 785 msgstr "" 774 786 775 #: inc/customizer.php:12 38787 #: inc/customizer.php:1252 776 788 msgid "Show / Hide Slider Title" 777 789 msgstr "" 778 790 779 #: inc/customizer.php:12 50791 #: inc/customizer.php:1264 780 792 msgid "Show / Hide Slider Text" 781 793 msgstr "" 782 794 783 #: inc/customizer.php:12 59795 #: inc/customizer.php:1273 784 796 msgid "Slider Title" 785 797 msgstr "" 786 798 787 #: inc/customizer.php:12 69799 #: inc/customizer.php:1283 788 800 msgid "Slider Text" 789 801 msgstr "" 790 802 791 #: inc/customizer.php:12 79803 #: inc/customizer.php:1293 792 804 msgid "Slider Background Image" 793 805 msgstr "" 794 806 795 #: inc/customizer.php:12 80807 #: inc/customizer.php:1294 796 808 msgid "Image Size 1200px x 550px" 797 809 msgstr "" 798 810 799 #: inc/customizer.php:1 289811 #: inc/customizer.php:1303 800 812 msgid "Location Title" 801 813 msgstr "" 802 814 803 #: inc/customizer.php:13 13815 #: inc/customizer.php:1327 804 816 msgid "Select Location Category" 805 817 msgstr "" 806 818 807 #: inc/customizer.php:13 23819 #: inc/customizer.php:1337 808 820 msgid "Show / Hide Slider Image Overlay" 809 821 msgstr "" 810 822 811 #: inc/customizer.php:13 32823 #: inc/customizer.php:1346 812 824 msgid "Slider Overlay Color" 813 825 msgstr "" 814 826 815 #: inc/customizer.php:13 40827 #: inc/customizer.php:1354 816 828 msgid "Slider Image Opacity" 817 829 msgstr "" 818 830 819 #: inc/customizer.php:13 59831 #: inc/customizer.php:1373 820 832 msgid "Popular Tour Section" 821 833 msgstr "" 822 834 823 #: inc/customizer.php:13 68835 #: inc/customizer.php:1382 824 836 msgid "Section Title" 825 837 msgstr "" 826 838 827 #: inc/customizer.php:13 78839 #: inc/customizer.php:1392 828 840 msgid "Section Background Title" 829 841 msgstr "" 830 842 831 #: inc/customizer.php:14 02843 #: inc/customizer.php:1416 832 844 msgid "Select Popular Tour Category" 833 845 msgstr "" 834 846 835 #: inc/customizer.php:14 24847 #: inc/customizer.php:1438 836 848 msgid "Button Settings" 837 849 msgstr "" 838 850 839 #: inc/customizer.php:14 29851 #: inc/customizer.php:1443 840 852 #: template-parts/content.php:52 841 853 #: template-parts/grid-layout.php:28 … … 844 856 msgstr "" 845 857 846 #: inc/customizer.php:14 33858 #: inc/customizer.php:1447 847 859 msgid "Post Button Text" 848 860 msgstr "" 849 861 850 #: inc/customizer.php:14 44862 #: inc/customizer.php:1458 851 863 msgid "Button Font Size" 852 864 msgstr "" 853 865 854 #: inc/customizer.php:14 61866 #: inc/customizer.php:1475 855 867 msgid "Button Text Transform" 856 868 msgstr "" 857 869 858 #: inc/customizer.php:14 65859 #: inc/customizer.php:24 22870 #: inc/customizer.php:1479 871 #: inc/customizer.php:2436 860 872 msgid "Lowercase" 861 873 msgstr "" 862 874 863 #: inc/customizer.php:14 75875 #: inc/customizer.php:1489 864 876 msgid "Top Bottom Button Padding" 865 877 msgstr "" 866 878 867 #: inc/customizer.php:1 490879 #: inc/customizer.php:1504 868 880 msgid "Left Right Button Padding" 869 881 msgstr "" 870 882 871 #: inc/customizer.php:15 05872 #: inc/customizer.php:30 04883 #: inc/customizer.php:1519 884 #: inc/customizer.php:3018 873 885 msgid "Button Border Radius" 874 886 msgstr "" 875 887 876 #: inc/customizer.php:15 20888 #: inc/customizer.php:1534 877 889 msgid "Button Font Weight" 878 890 msgstr "" 879 891 880 #: inc/customizer.php:15 42892 #: inc/customizer.php:1556 881 893 msgid "Button Letter Spacing" 882 894 msgstr "" 883 895 884 #: inc/customizer.php:15 54896 #: inc/customizer.php:1568 885 897 msgid "Post Settings" 886 898 msgstr "" 887 899 888 #: inc/customizer.php:15 64900 #: inc/customizer.php:1578 889 901 msgid "Blog Post Alignment" 890 902 msgstr "" 891 903 892 #: inc/customizer.php:15 67904 #: inc/customizer.php:1581 893 905 msgid "Left Align" 894 906 msgstr "" 895 907 896 #: inc/customizer.php:15 68908 #: inc/customizer.php:1582 897 909 msgid "Right Align" 898 910 msgstr "" 899 911 900 #: inc/customizer.php:15 69912 #: inc/customizer.php:1583 901 913 msgid "Center Align" 902 914 msgstr "" 903 915 904 #: inc/customizer.php:15 79916 #: inc/customizer.php:1593 905 917 msgid "Enable / Disable Post Date" 906 918 msgstr "" 907 919 908 #: inc/customizer.php:1 589920 #: inc/customizer.php:1603 909 921 msgid "Add Post Date Icon" 910 922 msgstr "" 911 923 912 #: inc/customizer.php:16 02924 #: inc/customizer.php:1616 913 925 msgid "Enable / Disable Post Author" 914 926 msgstr "" 915 927 916 #: inc/customizer.php:16 12928 #: inc/customizer.php:1626 917 929 msgid "Add Post Author Icon" 918 930 msgstr "" 919 931 920 #: inc/customizer.php:16 25932 #: inc/customizer.php:1639 921 933 msgid "Enable / Disable Post Comments" 922 934 msgstr "" 923 935 924 #: inc/customizer.php:16 35936 #: inc/customizer.php:1649 925 937 msgid "Add Post Comment Icon" 926 938 msgstr "" 927 939 928 #: inc/customizer.php:16 48940 #: inc/customizer.php:1662 929 941 msgid "Enable / Disable Post Time" 930 942 msgstr "" 931 943 932 #: inc/customizer.php:16 58944 #: inc/customizer.php:1672 933 945 msgid "Add Post Time Icon" 934 946 msgstr "" 935 947 936 #: inc/customizer.php:16 71948 #: inc/customizer.php:1685 937 949 msgid "Enable / Disable post category" 938 950 msgstr "" 939 951 940 #: inc/customizer.php:16 81952 #: inc/customizer.php:1695 941 953 msgid "Enable / Disable Featured Image" 942 954 msgstr "" 943 955 944 #: inc/customizer.php:1 690956 #: inc/customizer.php:1704 945 957 msgid "Featured image border radius" 946 958 msgstr "" 947 959 948 #: inc/customizer.php:17 05960 #: inc/customizer.php:1719 949 961 msgid "Featured image box shadow" 950 962 msgstr "" 951 963 952 #: inc/customizer.php:17 21953 #: inc/customizer.php: 1989964 #: inc/customizer.php:1735 965 #: inc/customizer.php:2003 954 966 msgid "Metabox Seperator" 955 967 msgstr "" 956 968 957 #: inc/customizer.php:17 22958 #: inc/customizer.php: 1990969 #: inc/customizer.php:1736 970 #: inc/customizer.php:2004 959 971 msgid "Ex: \"/\", \"|\", \"-\", ..." 960 972 msgstr "" 961 973 962 #: inc/customizer.php:17 32974 #: inc/customizer.php:1746 963 975 msgid "Post Content Type" 964 976 msgstr "" 965 977 966 #: inc/customizer.php:17 35978 #: inc/customizer.php:1749 967 979 msgid "No Content" 968 980 msgstr "" 969 981 970 #: inc/customizer.php:17 36982 #: inc/customizer.php:1750 971 983 msgid "Full Content" 972 984 msgstr "" 973 985 974 #: inc/customizer.php:17 37986 #: inc/customizer.php:1751 975 987 msgid "Excerpt Content" 976 988 msgstr "" 977 989 978 #: inc/customizer.php:17 46990 #: inc/customizer.php:1760 979 991 msgid "Post Excerpt Length" 980 992 msgstr "" 981 993 982 #: inc/customizer.php:17 58994 #: inc/customizer.php:1772 983 995 msgid "[...]" 984 996 msgstr "" 985 997 986 #: inc/customizer.php:17 62998 #: inc/customizer.php:1776 987 999 msgid "Excerpt Suffix" 988 1000 msgstr "" 989 1001 990 #: inc/customizer.php:17 751002 #: inc/customizer.php:1789 991 1003 msgid "Post blocks" 992 1004 msgstr "" 993 1005 994 #: inc/customizer.php:17 771006 #: inc/customizer.php:1791 995 1007 msgid "Within box" 996 1008 msgstr "" 997 1009 998 #: inc/customizer.php:17 781010 #: inc/customizer.php:1792 999 1011 msgid "Without box" 1000 1012 msgstr "" 1001 1013 1002 #: inc/customizer.php:1 7871014 #: inc/customizer.php:1801 1003 1015 msgid "Enable / Disable Post Navigation" 1004 1016 msgstr "" 1005 1017 1006 #: inc/customizer.php:1 7981018 #: inc/customizer.php:1812 1007 1019 msgid "Post Navigation Type" 1008 1020 msgstr "" 1009 1021 1010 #: inc/customizer.php:18 001022 #: inc/customizer.php:1814 1011 1023 msgid "Number" 1012 1024 msgstr "" 1013 1025 1014 #: inc/customizer.php:18 011026 #: inc/customizer.php:1815 1015 1027 msgid "Next/Prev Button" 1016 1028 msgstr "" 1017 1029 1018 #: inc/customizer.php:18 111030 #: inc/customizer.php:1825 1019 1031 msgid "Post Navigation Position" 1020 1032 msgstr "" 1021 1033 1022 #: inc/customizer.php:18 131023 #: inc/customizer.php:23 681034 #: inc/customizer.php:1827 1035 #: inc/customizer.php:2382 1024 1036 msgid "Top" 1025 1037 msgstr "" 1026 1038 1027 #: inc/customizer.php:18 141028 #: inc/customizer.php:23 741039 #: inc/customizer.php:1828 1040 #: inc/customizer.php:2388 1029 1041 msgid "Bottom" 1030 1042 msgstr "" 1031 1043 1032 #: inc/customizer.php:18 151044 #: inc/customizer.php:1829 1033 1045 msgid "Both" 1034 1046 msgstr "" 1035 1047 1036 #: inc/customizer.php:18 361048 #: inc/customizer.php:1850 1037 1049 msgid "Single Post Settings" 1038 1050 msgstr "" 1039 1051 1040 #: inc/customizer.php:18 471052 #: inc/customizer.php:1861 1041 1053 msgid "Show / Hide Single Post Breadcrumb" 1042 1054 msgstr "" 1043 1055 1044 #: inc/customizer.php:18 571056 #: inc/customizer.php:1871 1045 1057 msgid "Show / Hide Single Post Date" 1046 1058 msgstr "" 1047 1059 1048 #: inc/customizer.php:18 671060 #: inc/customizer.php:1881 1049 1061 msgid "Add Sigle Post Date Icon" 1050 1062 msgstr "" 1051 1063 1052 #: inc/customizer.php:18 801064 #: inc/customizer.php:1894 1053 1065 msgid "Show / Hide Single Post Author" 1054 1066 msgstr "" 1055 1067 1056 #: inc/customizer.php:1 8901068 #: inc/customizer.php:1904 1057 1069 msgid "Add Sigle Post Author Icon" 1058 1070 msgstr "" 1059 1071 1060 #: inc/customizer.php:19 031072 #: inc/customizer.php:1917 1061 1073 msgid "Show / Hide Single Post Comment Number" 1062 1074 msgstr "" 1063 1075 1064 #: inc/customizer.php:19 131076 #: inc/customizer.php:1927 1065 1077 msgid "Add Sigle Post Comment Icon" 1066 1078 msgstr "" 1067 1079 1068 #: inc/customizer.php:19 261080 #: inc/customizer.php:1940 1069 1081 msgid "Show / Hide Single Post Time" 1070 1082 msgstr "" 1071 1083 1072 #: inc/customizer.php:19 361084 #: inc/customizer.php:1950 1073 1085 msgid "Add Sigle Post Time Icon" 1074 1086 msgstr "" 1075 1087 1076 #: inc/customizer.php:19 491088 #: inc/customizer.php:1963 1077 1089 msgid "Show / Hide Single Post Feature Image" 1078 1090 msgstr "" 1079 1091 1080 #: inc/customizer.php:19 581092 #: inc/customizer.php:1972 1081 1093 msgid "Single Post Image Border Radius" 1082 1094 msgstr "" 1083 1095 1084 #: inc/customizer.php:19 731096 #: inc/customizer.php:1987 1085 1097 msgid "Single Post Image Shadow" 1086 1098 msgstr "" 1087 1099 1088 #: inc/customizer.php:20 001100 #: inc/customizer.php:2014 1089 1101 msgid "Show / Hide Single Post Categories" 1090 1102 msgstr "" 1091 1103 1092 #: inc/customizer.php:20 091104 #: inc/customizer.php:2023 1093 1105 msgid "Category Color" 1094 1106 msgstr "" 1095 1107 1096 #: inc/customizer.php:20 181108 #: inc/customizer.php:2032 1097 1109 msgid "Category Background Color" 1098 1110 msgstr "" 1099 1111 1100 #: inc/customizer.php:20 281112 #: inc/customizer.php:2042 1101 1113 msgid "Show / Hide Single Post Tags" 1102 1114 msgstr "" 1103 1115 1104 #: inc/customizer.php:20 381116 #: inc/customizer.php:2052 1105 1117 msgid "Show / Hide Single Post Comment" 1106 1118 msgstr "" 1107 1119 1108 #: inc/customizer.php:20 471120 #: inc/customizer.php:2061 1109 1121 msgid "Comment Textarea Width" 1110 1122 msgstr "" 1111 1123 1112 #: inc/customizer.php:20 641124 #: inc/customizer.php:2078 1113 1125 msgid "Comment form Title" 1114 1126 msgstr "" 1115 1127 1116 #: inc/customizer.php:20 741128 #: inc/customizer.php:2088 1117 1129 msgid "Comment Button Text" 1118 1130 msgstr "" 1119 1131 1120 #: inc/customizer.php:20 841132 #: inc/customizer.php:2098 1121 1133 msgid "Enable / Disable Nav Links" 1122 1134 msgstr "" 1123 1135 1124 #: inc/customizer.php:2 0941136 #: inc/customizer.php:2108 1125 1137 msgid "Previous Navigation Text" 1126 1138 msgstr "" 1127 1139 1128 #: inc/customizer.php:21 041140 #: inc/customizer.php:2118 1129 1141 msgid "Next Navigation Text" 1130 1142 msgstr "" 1131 1143 1132 #: inc/customizer.php:21 141144 #: inc/customizer.php:2128 1133 1145 msgid "Enable / Disable Related Posts" 1134 1146 msgstr "" 1135 1147 1136 #: inc/customizer.php:21 241148 #: inc/customizer.php:2138 1137 1149 msgid "Related Posts Title" 1138 1150 msgstr "" 1139 1151 1140 #: inc/customizer.php:21 331152 #: inc/customizer.php:2147 1141 1153 msgid "Related Posts Count" 1142 1154 msgstr "" 1143 1155 1144 #: inc/customizer.php:21 511156 #: inc/customizer.php:2165 1145 1157 msgid "Related Posts Order By" 1146 1158 msgstr "" 1147 1159 1148 #: inc/customizer.php:21 531160 #: inc/customizer.php:2167 1149 1161 msgid "Categories" 1150 1162 msgstr "" 1151 1163 1152 #: inc/customizer.php:21 541164 #: inc/customizer.php:2168 1153 1165 msgid "Tags" 1154 1166 msgstr "" 1155 1167 1156 #: inc/customizer.php:21 621168 #: inc/customizer.php:2176 1157 1169 msgid "Related Posts Content Limit" 1158 1170 msgstr "" 1159 1171 1160 #: inc/customizer.php:21 751172 #: inc/customizer.php:2189 1161 1173 msgid "404 & No Result Page Settings" 1162 1174 msgstr "" 1163 1175 1164 #: inc/customizer.php:2 1861176 #: inc/customizer.php:2200 1165 1177 msgid "404 Page Title" 1166 1178 msgstr "" 1167 1179 1168 #: inc/customizer.php:2 1961180 #: inc/customizer.php:2210 1169 1181 msgid "404 Page Text" 1170 1182 msgstr "" 1171 1183 1172 #: inc/customizer.php:22 061184 #: inc/customizer.php:2220 1173 1185 msgid "404 Page Button Text" 1174 1186 msgstr "" 1175 1187 1176 #: inc/customizer.php:22 161188 #: inc/customizer.php:2230 1177 1189 msgid "No Result Page Title" 1178 1190 msgstr "" 1179 1191 1180 #: inc/customizer.php:22 261192 #: inc/customizer.php:2240 1181 1193 msgid "No Result Page Text" 1182 1194 msgstr "" 1183 1195 1184 #: inc/customizer.php:22 361196 #: inc/customizer.php:2250 1185 1197 msgid "Show/Hide Search Form" 1186 1198 msgstr "" 1187 1199 1188 #: inc/customizer.php:22 421200 #: inc/customizer.php:2256 1189 1201 msgid "Footer Section" 1190 1202 msgstr "" 1191 1203 1192 #: inc/customizer.php:22 611204 #: inc/customizer.php:2275 1193 1205 msgid "Show/Hide Back to Top Button" 1194 1206 msgstr "" 1195 1207 1196 #: inc/customizer.php:22 711208 #: inc/customizer.php:2285 1197 1209 msgid "Back to Top Icon" 1198 1210 msgstr "" 1199 1211 1200 #: inc/customizer.php:22 811212 #: inc/customizer.php:2295 1201 1213 msgid "Back To Top Font Size" 1202 1214 msgstr "" 1203 1215 1204 #: inc/customizer.php:2 2911216 #: inc/customizer.php:2305 1205 1217 msgid "Back To Top Icon Color" 1206 1218 msgstr "" 1207 1219 1208 #: inc/customizer.php:23 001220 #: inc/customizer.php:2314 1209 1221 msgid "Back To Top Icon Hover Color" 1210 1222 msgstr "" 1211 1223 1212 #: inc/customizer.php:23 091224 #: inc/customizer.php:2323 1213 1225 msgid "Back to Top Button Text" 1214 1226 msgstr "" 1215 1227 1216 #: inc/customizer.php:23 201228 #: inc/customizer.php:2334 1217 1229 msgid "Back to Top Button Alignment" 1218 1230 msgstr "" 1219 1231 1220 #: inc/customizer.php:2323 1221 #: inc/customizer.php:2370 1222 #: inc/customizer.php:2467 1232 #: inc/customizer.php:2337 1233 #: inc/customizer.php:2384 1234 #: inc/customizer.php:2481 1235 #: inc/customizer.php:2497 1236 #: inc/customizer.php:2522 1237 #: inc/customizer.php:2735 1238 #: inc/customizer.php:3107 1239 msgid "Left" 1240 msgstr "" 1241 1242 #: inc/customizer.php:2338 1243 #: inc/customizer.php:2386 1223 1244 #: inc/customizer.php:2483 1224 #: inc/customizer.php:2508 1225 #: inc/customizer.php:2721 1226 #: inc/customizer.php:3093 1227 msgid "Left" 1228 msgstr "" 1229 1230 #: inc/customizer.php:2324 1231 #: inc/customizer.php:2372 1232 #: inc/customizer.php:2469 1233 #: inc/customizer.php:2485 1245 #: inc/customizer.php:2499 1246 #: inc/customizer.php:2523 1247 #: inc/customizer.php:2736 1248 #: inc/customizer.php:3108 1249 msgid "Right" 1250 msgstr "" 1251 1252 #: inc/customizer.php:2339 1253 #: inc/customizer.php:2385 1254 #: inc/customizer.php:2482 1255 #: inc/customizer.php:2498 1256 #: inc/customizer.php:2524 1257 #: inc/customizer.php:2737 1258 msgid "Center" 1259 msgstr "" 1260 1261 #: inc/customizer.php:2349 1262 msgid "Show / Hide Footer" 1263 msgstr "" 1264 1265 #: inc/customizer.php:2358 1266 msgid "Footer Background Color" 1267 msgstr "" 1268 1269 #: inc/customizer.php:2367 1270 msgid "Footer Background Image" 1271 msgstr "" 1272 1273 #: inc/customizer.php:2378 1274 msgid "Footer Image Position" 1275 msgstr "" 1276 1277 #: inc/customizer.php:2381 1278 msgid "Top Left" 1279 msgstr "" 1280 1281 #: inc/customizer.php:2383 1282 msgid "Top Right" 1283 msgstr "" 1284 1285 #: inc/customizer.php:2387 1286 msgid "Bottom Left" 1287 msgstr "" 1288 1289 #: inc/customizer.php:2389 1290 msgid "Bottom Right" 1291 msgstr "" 1292 1293 #: inc/customizer.php:2399 1294 msgid "Footer Background Attatchment" 1295 msgstr "" 1296 1297 #: inc/customizer.php:2401 1298 msgid "fixed" 1299 msgstr "" 1300 1301 #: inc/customizer.php:2402 1302 msgid "scroll" 1303 msgstr "" 1304 1305 #: inc/customizer.php:2413 1306 msgid "Footer widget layout" 1307 msgstr "" 1308 1309 #: inc/customizer.php:2415 1310 msgid "Select the number of widget areas you want in the footer. After that, go to Appearance > Widgets and add your widgets." 1311 msgstr "" 1312 1313 #: inc/customizer.php:2417 1314 msgid "One" 1315 msgstr "" 1316 1317 #: inc/customizer.php:2418 1318 msgid "Two" 1319 msgstr "" 1320 1321 #: inc/customizer.php:2419 1322 msgid "Three" 1323 msgstr "" 1324 1325 #: inc/customizer.php:2420 1326 msgid "Four" 1327 msgstr "" 1328 1329 #: inc/customizer.php:2431 1330 msgid "Heading Text Transform" 1331 msgstr "" 1332 1333 #: inc/customizer.php:2445 1334 msgid "Footer Widgets Heading Font Size" 1335 msgstr "" 1336 1337 #: inc/customizer.php:2456 1338 msgid "Footer Widgets Heading Font Weight" 1339 msgstr "" 1340 1341 #: inc/customizer.php:2478 1342 msgid "Footer Widget Heading Alignment" 1343 msgstr "" 1344 1345 #: inc/customizer.php:2494 1346 msgid "Footer Widget Content Alignment" 1347 msgstr "" 1348 1234 1349 #: inc/customizer.php:2509 1235 #: inc/customizer.php:27221236 #: inc/customizer.php:30941237 msgid "Right"1238 msgstr ""1239 1240 #: inc/customizer.php:23251241 #: inc/customizer.php:23711242 #: inc/customizer.php:24681243 #: inc/customizer.php:24841244 #: inc/customizer.php:25101245 #: inc/customizer.php:27231246 msgid "Center"1247 msgstr ""1248 1249 #: inc/customizer.php:23351250 msgid "Show / Hide Footer"1251 msgstr ""1252 1253 #: inc/customizer.php:23441254 msgid "Footer Background Color"1255 msgstr ""1256 1257 #: inc/customizer.php:23531258 msgid "Footer Background Image"1259 msgstr ""1260 1261 #: inc/customizer.php:23641262 msgid "Footer Image Position"1263 msgstr ""1264 1265 #: inc/customizer.php:23671266 msgid "Top Left"1267 msgstr ""1268 1269 #: inc/customizer.php:23691270 msgid "Top Right"1271 msgstr ""1272 1273 #: inc/customizer.php:23731274 msgid "Bottom Left"1275 msgstr ""1276 1277 #: inc/customizer.php:23751278 msgid "Bottom Right"1279 msgstr ""1280 1281 #: inc/customizer.php:23851282 msgid "Footer Background Attatchment"1283 msgstr ""1284 1285 #: inc/customizer.php:23871286 msgid "fixed"1287 msgstr ""1288 1289 #: inc/customizer.php:23881290 msgid "scroll"1291 msgstr ""1292 1293 #: inc/customizer.php:23991294 msgid "Footer widget layout"1295 msgstr ""1296 1297 #: inc/customizer.php:24011298 msgid "Select the number of widget areas you want in the footer. After that, go to Appearance > Widgets and add your widgets."1299 msgstr ""1300 1301 #: inc/customizer.php:24031302 msgid "One"1303 msgstr ""1304 1305 #: inc/customizer.php:24041306 msgid "Two"1307 msgstr ""1308 1309 #: inc/customizer.php:24051310 msgid "Three"1311 msgstr ""1312 1313 #: inc/customizer.php:24061314 msgid "Four"1315 msgstr ""1316 1317 #: inc/customizer.php:24171318 msgid "Heading Text Transform"1319 msgstr ""1320 1321 #: inc/customizer.php:24311322 msgid "Footer Widgets Heading Font Size"1323 msgstr ""1324 1325 #: inc/customizer.php:24421326 msgid "Footer Widgets Heading Font Weight"1327 msgstr ""1328 1329 #: inc/customizer.php:24641330 msgid "Footer Widget Heading Alignment"1331 msgstr ""1332 1333 #: inc/customizer.php:24801334 msgid "Footer Widget Content Alignment"1335 msgstr ""1336 1337 #: inc/customizer.php:24951338 1350 msgid "Show / Hide Copyright" 1339 1351 msgstr "" 1340 1352 1341 #: inc/customizer.php:25 051353 #: inc/customizer.php:2519 1342 1354 msgid "Copyright Alignment" 1343 1355 msgstr "" 1344 1356 1345 #: inc/customizer.php:25 191357 #: inc/customizer.php:2533 1346 1358 msgid "Copyright Color" 1347 1359 msgstr "" 1348 1360 1349 #: inc/customizer.php:25 281361 #: inc/customizer.php:2542 1350 1362 msgid "Copyright Hover Color" 1351 1363 msgstr "" 1352 1364 1353 #: inc/customizer.php:25 371365 #: inc/customizer.php:2551 1354 1366 msgid "Copyright Font Size" 1355 1367 msgstr "" 1356 1368 1357 #: inc/customizer.php:25 471369 #: inc/customizer.php:2561 1358 1370 msgid "Copyright Top Bottom Padding" 1359 1371 msgstr "" 1360 1372 1361 #: inc/customizer.php:25 651373 #: inc/customizer.php:2579 1362 1374 msgid "Copyright Text" 1363 1375 msgstr "" 1364 1376 1365 #: inc/customizer.php:25 751377 #: inc/customizer.php:2589 1366 1378 msgid "Copyright Background Color" 1367 1379 msgstr "" 1368 1380 1369 #: inc/customizer.php:25 811381 #: inc/customizer.php:2595 1370 1382 msgid "Footer Social Icons" 1371 1383 msgstr "" 1372 1384 1373 #: inc/customizer.php:2 5981385 #: inc/customizer.php:2612 1374 1386 msgid "Show/Hide Social Icons" 1375 1387 msgstr "" 1376 1388 1377 #: inc/customizer.php:26 071389 #: inc/customizer.php:2621 1378 1390 msgid "Add Facebook link" 1379 1391 msgstr "" 1380 1392 1381 #: inc/customizer.php:26 311393 #: inc/customizer.php:2645 1382 1394 msgid "Add Twitter link" 1383 1395 msgstr "" 1384 1396 1385 #: inc/customizer.php:26 781397 #: inc/customizer.php:2692 1386 1398 msgid "Add Instagram link" 1387 1399 msgstr "" 1388 1400 1389 #: inc/customizer.php:27 181401 #: inc/customizer.php:2732 1390 1402 msgid "Icon Alignment" 1391 1403 msgstr "" 1392 1404 1393 #: inc/customizer.php:27 321405 #: inc/customizer.php:2746 1394 1406 msgid "Icon Color" 1395 1407 msgstr "" 1396 1408 1397 #: inc/customizer.php:27 391409 #: inc/customizer.php:2753 1398 1410 msgid "Mobile Media Options" 1399 1411 msgstr "" 1400 1412 1401 #: inc/customizer.php:27 501413 #: inc/customizer.php:2764 1402 1414 msgid "Open Menu Icon" 1403 1415 msgstr "" 1404 1416 1405 #: inc/customizer.php:27 611417 #: inc/customizer.php:2775 1406 1418 msgid "Open Menu Label" 1407 1419 msgstr "" 1408 1420 1409 #: inc/customizer.php:27 701421 #: inc/customizer.php:2784 1410 1422 msgid "Menu Icon Color Option" 1411 1423 msgstr "" 1412 1424 1413 #: inc/customizer.php:27 811425 #: inc/customizer.php:2795 1414 1426 msgid "Close Menu Icon" 1415 1427 msgstr "" 1416 1428 1417 #: inc/customizer.php:2 7921429 #: inc/customizer.php:2806 1418 1430 msgid "Close Menu Label" 1419 1431 msgstr "" 1420 1432 1421 #: inc/customizer.php:28 021433 #: inc/customizer.php:2816 1422 1434 msgid "Show / Hide Topbar" 1423 1435 msgstr "" 1424 1436 1425 #: inc/customizer.php:28 121437 #: inc/customizer.php:2826 1426 1438 msgid "Show / Hide Slider" 1427 1439 msgstr "" 1428 1440 1429 #: inc/customizer.php:28 221441 #: inc/customizer.php:2836 1430 1442 msgid "Show / Hide Sticky Header" 1431 1443 msgstr "" 1432 1444 1433 #: inc/customizer.php:28 321445 #: inc/customizer.php:2846 1434 1446 msgid "Show / Hide Back to Top Button" 1435 1447 msgstr "" 1436 1448 1437 #: inc/customizer.php:28 521449 #: inc/customizer.php:2866 1438 1450 msgid "Enable Sidebar" 1439 1451 msgstr "" 1440 1452 1441 #: inc/customizer.php:28 611453 #: inc/customizer.php:2875 1442 1454 msgid "Toggle Button Bg Color" 1443 1455 msgstr "" 1444 1456 1445 #: inc/customizer.php:28 671457 #: inc/customizer.php:2881 1446 1458 msgid "Additional WooCommerce Options" 1447 1459 msgstr "" 1448 1460 1449 #: inc/customizer.php:28 791461 #: inc/customizer.php:2893 1450 1462 msgid "Product per row" 1451 1463 msgstr "" 1452 1464 1453 #: inc/customizer.php:2 8941465 #: inc/customizer.php:2908 1454 1466 msgid "Product per page" 1455 1467 msgstr "" 1456 1468 1457 #: inc/customizer.php:29 051469 #: inc/customizer.php:2919 1458 1470 msgid "Enable / Disable Shop page sidebar" 1459 1471 msgstr "" 1460 1472 1461 #: inc/customizer.php:29 161473 #: inc/customizer.php:2930 1462 1474 msgid "Shop Page layout" 1463 1475 msgstr "" 1464 1476 1465 #: inc/customizer.php:29 301477 #: inc/customizer.php:2944 1466 1478 msgid "Enable / Disable Single Product Page Sidebar" 1467 1479 msgstr "" 1468 1480 1469 #: inc/customizer.php:29 411481 #: inc/customizer.php:2955 1470 1482 msgid "Single product Page layout" 1471 1483 msgstr "" 1472 1484 1473 #: inc/customizer.php:29 551485 #: inc/customizer.php:2969 1474 1486 msgid "Enable / Disable Shop page pagination" 1475 1487 msgstr "" 1476 1488 1477 #: inc/customizer.php:29 651489 #: inc/customizer.php:2979 1478 1490 msgid "Enable / Disable Related product" 1479 1491 msgstr "" 1480 1492 1481 #: inc/customizer.php:29 741493 #: inc/customizer.php:2988 1482 1494 msgid "Button Top Bottom Padding" 1483 1495 msgstr "" 1484 1496 1485 #: inc/customizer.php: 29891497 #: inc/customizer.php:3003 1486 1498 msgid "Button Right Left Padding" 1487 1499 msgstr "" 1488 1500 1489 #: inc/customizer.php:30 201501 #: inc/customizer.php:3034 1490 1502 msgid "Enable / Disable product border" 1491 1503 msgstr "" 1492 1504 1493 #: inc/customizer.php:30 291505 #: inc/customizer.php:3043 1494 1506 msgid "Product Top Bottom Padding" 1495 1507 msgstr "" 1496 1508 1497 #: inc/customizer.php:30 441509 #: inc/customizer.php:3058 1498 1510 msgid "Product Right Left Padding" 1499 1511 msgstr "" 1500 1512 1501 #: inc/customizer.php:30 591513 #: inc/customizer.php:3073 1502 1514 msgid "Product Border Radius" 1503 1515 msgstr "" 1504 1516 1505 #: inc/customizer.php:30 741517 #: inc/customizer.php:3088 1506 1518 msgid "Product Box Shadow" 1507 1519 msgstr "" 1508 1520 1509 #: inc/customizer.php:3 0901521 #: inc/customizer.php:3104 1510 1522 msgid "Sale badge Position" 1511 1523 msgstr "" 1512 1524 1513 #: inc/customizer.php:31 031525 #: inc/customizer.php:3117 1514 1526 msgid "Sale Top Bottom Padding" 1515 1527 msgstr "" 1516 1528 1517 #: inc/customizer.php:31 181529 #: inc/customizer.php:3132 1518 1530 msgid "Sale Right Left Padding" 1519 1531 msgstr "" 1520 1532 1521 #: inc/customizer.php:31 331533 #: inc/customizer.php:3147 1522 1534 msgid "Sale Border Radius" 1523 1535 msgstr "" 1524 1536 1525 #: inc/customizer.php:31 481537 #: inc/customizer.php:3162 1526 1538 msgid "Sale Font Size" 1527 1539 msgstr "" 1528 1540 1529 #: inc/customizer.php:32 401541 #: inc/customizer.php:3254 1530 1542 msgid "Travel Pro Theme" 1531 1543 msgstr "" 1532 1544 1533 #: inc/customizer.php:32 411545 #: inc/customizer.php:3255 1534 1546 #: inc/dashboard/getstart.php:39 1535 1547 msgid "Get Pro" 1536 1548 msgstr "" 1537 1549 1538 #: inc/customizer.php:32 541550 #: inc/customizer.php:3268 1539 1551 msgid "Search Tour Section" 1540 1552 msgstr "" 1541 1553 1542 #: inc/customizer.php:32 551554 #: inc/customizer.php:3269 1543 1555 msgid "About Section" 1544 1556 msgstr "" 1545 1557 1546 #: inc/customizer.php:32 561558 #: inc/customizer.php:3270 1547 1559 msgid "Perfection Section" 1548 1560 msgstr "" 1549 1561 1550 #: inc/customizer.php:32 571562 #: inc/customizer.php:3271 1551 1563 msgid "Most Popular Section" 1552 1564 msgstr "" 1553 1565 1554 #: inc/customizer.php:32 581566 #: inc/customizer.php:3272 1555 1567 msgid "Top Destination Section" 1556 1568 msgstr "" 1557 1569 1558 #: inc/customizer.php:32 591570 #: inc/customizer.php:3273 1559 1571 msgid "Tour Place Section" 1560 1572 msgstr "" 1561 1573 1562 #: inc/customizer.php:32 601574 #: inc/customizer.php:3274 1563 1575 msgid "Exclusive Offer Section" 1564 1576 msgstr "" 1565 1577 1566 #: inc/customizer.php:32 611578 #: inc/customizer.php:3275 1567 1579 msgid "Testimonials Section" 1568 1580 msgstr "" 1569 1581 1570 #: inc/customizer.php:32 621582 #: inc/customizer.php:3276 1571 1583 msgid "Blog Section" 1572 1584 msgstr "" 1573 1585 1574 #: inc/customizer.php:32 631586 #: inc/customizer.php:3277 1575 1587 msgid "Our Newsletter Section" 1576 1588 msgstr "" 1577 1589 1578 #: inc/customizer.php:32 661590 #: inc/customizer.php:3280 1579 1591 msgid "View PRO version" 1580 1592 msgstr "" … … 2366 2378 msgstr "" 2367 2379 2368 #: woocommerce/checkout/form-checkout.php:53 2380 #: woocommerce/checkout/form-checkout.php:32 2381 msgid "Checkout" 2382 msgstr "" 2383 2384 #: woocommerce/checkout/form-checkout.php:54 2369 2385 msgid "Your order" 2370 2386 msgstr "" -
tour-travel-agent/0.5.1/page-template/custom-frontpage.php
r239268 r252038 11 11 <main id="main" role="main"> 12 12 13 <?php if( get_theme_mod( 'tour_travel_agent_slider_hide_show' ) != '' || get_theme_mod('tour_travel_agent_slider_responsive') != ''){?>13 <?php if( get_theme_mod( 'tour_travel_agent_slider_hide_show', true ) != '' || get_theme_mod( 'tour_travel_agent_slider_responsive', false ) != '' ) {?> 14 14 <section id="slider"> 15 15 <div class="slider-bgimage"> -
tour-travel-agent/0.5.1/readme.txt
r248480 r252038 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, rtl-language-support, threaded-comments, blog, portfolio, photography 4 4 Requires at least: 5.0 5 Tested up to: 6. 65 Tested up to: 6.7 6 6 Requires PHP: 7.2 7 Stable tag: 0.5 7 Stable tag: 0.5.1 8 8 License: GNU General Public License v3.0 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 284 284 * Update POT file. 285 285 286 = 0.5.1 = 287 * Added demo import. 288 * Added menu item hover style option in customizer. 289 * Resolved css error in currency switcher. 290 * Resolved css error in shop page and single product page. 291 * Resolved css error in customizer. 292 * Tested upto WP v6.7 293 * Update woocommerce. 294 * Update POT file. 295 286 296 == Resources == 287 297 -
tour-travel-agent/0.5.1/style.css
r248480 r252038 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. 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.5 7 Version: 0.5.1 8 8 Requires at least: 5.0 9 Tested up to: 6. 69 Tested up to: 6.7 10 10 Requires PHP: 7.2 11 11 License: GNU General Public License v3.0 … … 656 656 width: 100%; 657 657 border-radius: 10px 10px 0 0; 658 height: 270px; 658 659 } 659 660 #tour-section .tour-content { … … 1941 1942 background-color: #0ca6ee !important; 1942 1943 } 1944 .posted_in a{ 1945 color: #0ca6ee; 1946 } 1947 .woocommerce div.product p.price ins, .woocommerce ul.products li.product .price ins{ 1948 text-decoration: none !important; 1949 } 1950 .woocommerce div.product form.cart { 1951 margin-bottom: 1em !important; 1952 } 1943 1953 /* Media */ 1944 1954 @media screen and (max-width: 720px) { -
tour-travel-agent/0.5.1/tc-style.php
r248480 r252038 454 454 455 455 // responsive slider 456 if (get_theme_mod('tour_travel_agent_slider_responsive',true) == true && get_theme_mod('tour_travel_agent_slider_hide_show', false) == false) {456 if (get_theme_mod('tour_travel_agent_slider_responsive',true) == true && get_theme_mod('tour_travel_agent_slider_hide_show',true) == false) { 457 457 $tour_travel_agent_custom_css .='@media screen and (min-width: 575px){ 458 458 #slider{'; … … 534 534 $tour_travel_agent_custom_css .='.primary-navigation ul li a{'; 535 535 $tour_travel_agent_custom_css .='font-weight: 900;'; 536 $tour_travel_agent_custom_css .='}'; 537 } 538 539 // Menu Item Hover Style 540 $tour_travel_agent_menus_item = get_theme_mod( 'tour_travel_agent_menus_item_style','None'); 541 if($tour_travel_agent_menus_item == 'None'){ 542 $tour_travel_agent_custom_css .='.primary-navigation ul li a{'; 543 $tour_travel_agent_custom_css .=''; 544 $tour_travel_agent_custom_css .='}'; 545 }else if($tour_travel_agent_menus_item == 'Zoom In'){ 546 $tour_travel_agent_custom_css .='.primary-navigation ul li a:hover{'; 547 $tour_travel_agent_custom_css .='transition: all 0.3s ease-in-out !important; transform: scale(1.2) !important;'; 536 548 $tour_travel_agent_custom_css .='}'; 537 549 } -
tour-travel-agent/0.5.1/woocommerce/archive-product.php
r227521 r252038 21 21 22 22 <?php 23 $tour_travel_agent_shop_sidebar = get_theme_mod( 'tour_travel_agent_shop_sidebar', true );23 $tour_travel_agent_shop_sidebar = get_theme_mod( 'tour_travel_agent_shop_sidebar',false ); 24 24 if ( false == $tour_travel_agent_shop_sidebar ) { 25 25 $colmd = 'col-lg-12 col-md-12'; -
tour-travel-agent/0.5.1/woocommerce/checkout/form-checkout.php
r166464 r252038 11 11 * the readme will list any important changes. 12 12 * 13 * @see https:// docs.woocommerce.com/document/template-structure/14 * @package WooCommerce /Templates15 * @version 3.5.013 * @see https://woocommerce.com/document/template-structure/ 14 * @package WooCommerce\Templates 15 * @version 9.4.0 16 16 */ 17 17 … … 30 30 ?> 31 31 32 <form role="form" name="checkout" method="post" class="checkout woocommerce-checkout" action="<?php echo esc_url( wc_get_checkout_url() ); ?>" enctype="multipart/form-data">32 <form name="checkout" method="post" class="checkout woocommerce-checkout" action="<?php echo esc_url( wc_get_checkout_url() ); ?>" enctype="multipart/form-data" aria-label="<?php echo esc_attr__( 'Checkout', 'tour-travel-agent' ); ?>"> 33 33 34 34 <?php if ( $checkout->get_checkout_fields() ) : ?> … … 37 37 38 38 <div class="col2-set" id="customer_details"> 39 <div class="row"> 40 <div class="col-lg-7 col-md-6"> 41 <?php do_action( 'woocommerce_checkout_billing' ); ?> 42 </div> 43 <div class="col-lg-5 col-md-6"> 44 <?php do_action( 'woocommerce_checkout_shipping' ); ?> 45 </div> 39 <div class="col-1"> 40 <?php do_action( 'woocommerce_checkout_billing' ); ?> 41 </div> 42 43 <div class="col-2"> 44 <?php do_action( 'woocommerce_checkout_shipping' ); ?> 46 45 </div> 47 46 </div> … … 50 49 51 50 <?php endif; ?> 52 51 52 <?php do_action( 'woocommerce_checkout_before_order_review_heading' ); ?> 53 53 54 <h3 id="order_review_heading"><?php esc_html_e( 'Your order', 'tour-travel-agent' ); ?></h3> 54 55 55 56 <?php do_action( 'woocommerce_checkout_before_order_review' ); ?> 56 57 -
tour-travel-agent/0.5.1/woocommerce/single-product.php
r200025 r252038 24 24 25 25 <?php 26 $tour_travel_agent_wocommerce_single_page_sidebar = get_theme_mod( 'tour_travel_agent_wocommerce_single_page_sidebar', true );26 $tour_travel_agent_wocommerce_single_page_sidebar = get_theme_mod( 'tour_travel_agent_wocommerce_single_page_sidebar',false ); 27 27 if ( false == $tour_travel_agent_wocommerce_single_page_sidebar ) { 28 28 $colmd = 'col-lg-12 col-md-12';
Note: See TracChangeset
for help on using the changeset viewer.