Make WordPress Themes

Changeset 252038


Ignore:
Timestamp:
12/12/2024 09:19:50 AM (12 months ago)
Author:
themedropbox
Message:

New version of Tour Travel Agent - 0.5.1

Location:
tour-travel-agent/0.5.1
Files:
9 added
14 edited
1 copied

Legend:

Unmodified
Added
Removed
  • tour-travel-agent/0.5.1/css/customize-controls.css

    r242462 r252038  
    245245#customize-control-tour_travel_agent_tour_settings_premium_features li,
    246246#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  
    2525                <div class="container">
    2626                    <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>
    4636                        <?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>     
    4780                    </div>
    4881                </div>
  • tour-travel-agent/0.5.1/header.php

    r236564 r252038  
    4747        <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>
    4848        <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) {?>
    5050            <div class="topbar">
    5151                <div class="container">
  • tour-travel-agent/0.5.1/inc/customizer.php

    r248480 r252038  
    897897
    898898    $wp_customize->add_setting( 'tour_travel_agent_show_topbar',array(
    899         'default' => false,
     899        'default' => true,
    900900        'sanitize_callback' => 'tour_travel_agent_sanitize_checkbox'
    901901    ) );
     
    11431143            '900' => __('900','tour-travel-agent'),
    11441144        ),
    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    ));
    11461160
    11471161    $wp_customize->add_setting('tour_travel_agent_menu_color', array(
     
    12191233
    12201234    $wp_customize->add_setting('tour_travel_agent_slider_hide_show',array(
    1221        'default' => false,
     1235       'default' => true,
    12221236       'sanitize_callback'  => 'tour_travel_agent_sanitize_checkbox'
    12231237    ));
     
    28982912
    28992913    $wp_customize->add_setting('tour_travel_agent_shop_sidebar',array(
    2900        'default' => true,
     2914       'default' => false,
    29012915       'sanitize_callback'  => 'tour_travel_agent_sanitize_checkbox'
    29022916    ));
     
    29232937
    29242938    $wp_customize->add_setting( 'tour_travel_agent_wocommerce_single_page_sidebar',array(
    2925         'default' => true,
     2939        'default' => false,
    29262940        'sanitize_callback' => 'tour_travel_agent_sanitize_checkbox'
    29272941    ) );
     
    32403254                    'title'    => esc_html__( 'Travel Pro Theme', 'tour-travel-agent' ),
    32413255                    '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/' ),
    32433257                )
    32443258            )
  • tour-travel-agent/0.5.1/inc/dashboard/getstart.css

    r168600 r252038  
    108108.col-tc-6 p {
    109109    color: #000;
    110     font-size: 12px;
     110    font-size: 14px;
    111111    margin-top: 0;
    112112    text-align: justify;
     
    175175.info-link-support p {
    176176    color: #000;
    177     font-size: 13px;
     177    font-size: 14px;
    178178    margin-bottom: 25px;
    179179}
     
    189189    width: 100%;
    190190}
     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  
    33add_action( 'admin_menu', 'tour_travel_agent_gettingstarted' );
    44function 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');   
    66}
    77
     
    2626                <img role="img" src="<?php echo esc_url(get_template_directory_uri()); ?>/inc/dashboard/images/logo.png" alt="" />
    2727            </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>
    2930            <button role="tab" class="tablinks" onclick="tour_travel_agent_openCity(event, 'tc_pro')"><?php esc_html_e( 'Premium Theme Information', 'tour-travel-agent' ); ?></button>
    3031            <button role="tab" class="tablinks" onclick="tour_travel_agent_openCity(event, 'tc_create')"><?php esc_html_e( 'Theme Support', 'tour-travel-agent' ); ?></button>             
    3132        </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>
    3245
    3346        <div  id="tc_index" class="tabcontent">
  • tour-travel-agent/0.5.1/languages/tour-travel-agent.pot

    r248480 r252038  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Tour Travel Agent 0.5\n"
     5"Project-Id-Version: Tour Travel Agent 0.5.1\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/theme/tour-travel-agent\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2024-11-08T14:26:44+05:30\n"
     12"POT-Creation-Date: 2024-12-03T16:36:51+05:30\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.11.0\n"
     
    7171
    7272#: comments.php:64
    73 #: inc/customizer.php:2059
     73#: inc/customizer.php:2073
    7474msgid "Leave a Reply"
    7575msgstr ""
    7676
    7777#: comments.php:65
    78 #: inc/customizer.php:2069
     78#: inc/customizer.php:2083
    7979msgid "Post Comment"
    8080msgstr ""
     
    103103#: footer.php:81
    104104#: footer.php:83
    105 #: inc/customizer.php:2305
     105#: inc/customizer.php:2319
    106106msgid "Back to Top"
    107107msgstr ""
     
    211211
    212212#: header.php:122
    213 #: inc/customizer.php:2756
     213#: inc/customizer.php:2770
    214214msgid "Open Menu"
    215215msgstr ""
     
    220220
    221221#: header.php:135
    222 #: inc/customizer.php:2787
     222#: inc/customizer.php:2801
    223223msgid "Close Menu"
    224224msgstr ""
     
    287287#: inc/customizer.php:706
    288288#: inc/customizer.php:1135
    289 #: inc/customizer.php:1524
    290 #: inc/customizer.php:2445
     289#: inc/customizer.php:1538
     290#: inc/customizer.php:2459
    291291msgid "100"
    292292msgstr ""
     
    301301#: inc/customizer.php:707
    302302#: inc/customizer.php:1136
    303 #: inc/customizer.php:1525
    304 #: inc/customizer.php:2446
     303#: inc/customizer.php:1539
     304#: inc/customizer.php:2460
    305305msgid "200"
    306306msgstr ""
     
    315315#: inc/customizer.php:708
    316316#: inc/customizer.php:1137
    317 #: inc/customizer.php:1526
    318 #: inc/customizer.php:2447
     317#: inc/customizer.php:1540
     318#: inc/customizer.php:2461
    319319msgid "300"
    320320msgstr ""
     
    329329#: inc/customizer.php:709
    330330#: inc/customizer.php:1138
    331 #: inc/customizer.php:1527
    332 #: inc/customizer.php:2448
     331#: inc/customizer.php:1541
     332#: inc/customizer.php:2462
    333333msgid "400"
    334334msgstr ""
     
    343343#: inc/customizer.php:710
    344344#: inc/customizer.php:1139
    345 #: inc/customizer.php:1528
    346 #: inc/customizer.php:2449
     345#: inc/customizer.php:1542
     346#: inc/customizer.php:2463
    347347msgid "500"
    348348msgstr ""
     
    357357#: inc/customizer.php:711
    358358#: inc/customizer.php:1140
    359 #: inc/customizer.php:1529
    360 #: inc/customizer.php:2450
     359#: inc/customizer.php:1543
     360#: inc/customizer.php:2464
    361361msgid "600"
    362362msgstr ""
     
    371371#: inc/customizer.php:712
    372372#: inc/customizer.php:1141
    373 #: inc/customizer.php:1530
    374 #: inc/customizer.php:2451
     373#: inc/customizer.php:1544
     374#: inc/customizer.php:2465
    375375msgid "700"
    376376msgstr ""
     
    385385#: inc/customizer.php:713
    386386#: inc/customizer.php:1142
    387 #: inc/customizer.php:1531
    388 #: inc/customizer.php:2452
     387#: inc/customizer.php:1545
     388#: inc/customizer.php:2466
    389389msgid "800"
    390390msgstr ""
     
    399399#: inc/customizer.php:714
    400400#: inc/customizer.php:1143
    401 #: inc/customizer.php:1532
    402 #: inc/customizer.php:2453
     401#: inc/customizer.php:1546
     402#: inc/customizer.php:2467
    403403msgid "900"
    404404msgstr ""
     
    563563#: inc/customizer.php:769
    564564#: inc/customizer.php:784
    565 #: inc/customizer.php:2919
    566 #: inc/customizer.php:2944
     565#: inc/customizer.php:2933
     566#: inc/customizer.php:2958
    567567msgid "Left Sidebar"
    568568msgstr ""
     
    571571#: inc/customizer.php:770
    572572#: inc/customizer.php:785
    573 #: inc/customizer.php:2920
    574 #: inc/customizer.php:2945
     573#: inc/customizer.php:2934
     574#: inc/customizer.php:2959
    575575msgid "Right Sidebar"
    576576msgstr ""
     
    607607
    608608#: inc/customizer.php:807
    609 #: inc/customizer.php:2842
     609#: inc/customizer.php:2856
    610610msgid "Show / Hide Preloader"
    611611msgstr ""
     
    668668
    669669#: inc/customizer.php:954
    670 #: inc/customizer.php:2619
     670#: inc/customizer.php:2633
    671671msgid "Add Facebook Icon"
    672672msgstr ""
     
    677677
    678678#: inc/customizer.php:977
    679 #: inc/customizer.php:2643
     679#: inc/customizer.php:2657
    680680msgid "Add Twitter Icon"
    681681msgstr ""
    682682
    683683#: inc/customizer.php:989
    684 #: inc/customizer.php:2655
     684#: inc/customizer.php:2669
    685685msgid "Add Linkedin URL"
    686686msgstr ""
    687687
    688688#: inc/customizer.php:1000
    689 #: inc/customizer.php:2666
     689#: inc/customizer.php:2680
    690690msgid "Add Linkedin Icon"
    691691msgstr ""
     
    696696
    697697#: inc/customizer.php:1023
    698 #: inc/customizer.php:2690
     698#: inc/customizer.php:2704
    699699msgid "Add Instagram Icon"
    700700msgstr ""
    701701
    702702#: inc/customizer.php:1035
    703 #: inc/customizer.php:2702
     703#: inc/customizer.php:2716
    704704msgid "Icon Font Size"
    705705msgstr ""
     
    730730
    731731#: inc/customizer.php:1106
    732 #: inc/customizer.php:1463
    733 #: inc/customizer.php:2420
     732#: inc/customizer.php:1477
     733#: inc/customizer.php:2434
    734734msgid "Uppercase"
    735735msgstr ""
    736736
    737737#: inc/customizer.php:1107
    738 #: inc/customizer.php:1464
    739 #: inc/customizer.php:2421
     738#: inc/customizer.php:1478
     739#: inc/customizer.php:2435
    740740msgid "Capitalize"
    741741msgstr ""
     
    749749msgstr ""
    750750
    751 #: inc/customizer.php:1152
     751#: inc/customizer.php:1153
     752msgid "Menu Item Hover Style"
     753msgstr ""
     754
     755#: inc/customizer.php:1156
     756msgid "None"
     757msgstr ""
     758
     759#: inc/customizer.php:1157
     760msgid "Zoom In"
     761msgstr ""
     762
     763#: inc/customizer.php:1166
    752764msgid "Menu Color"
    753765msgstr ""
    754766
    755 #: inc/customizer.php:1162
     767#: inc/customizer.php:1176
    756768msgid "Menu Hover Color"
    757769msgstr ""
    758770
    759 #: inc/customizer.php:1172
     771#: inc/customizer.php:1186
    760772msgid "Submenu Color"
    761773msgstr ""
    762774
    763 #: inc/customizer.php:1182
     775#: inc/customizer.php:1196
    764776msgid "Submenu Hover Color"
    765777msgstr ""
    766778
    767 #: inc/customizer.php:1207
     779#: inc/customizer.php:1221
    768780msgid "Slider Settings"
    769781msgstr ""
    770782
    771 #: inc/customizer.php:1226
     783#: inc/customizer.php:1240
    772784msgid "Show / Hide slider"
    773785msgstr ""
    774786
    775 #: inc/customizer.php:1238
     787#: inc/customizer.php:1252
    776788msgid "Show / Hide Slider Title"
    777789msgstr ""
    778790
    779 #: inc/customizer.php:1250
     791#: inc/customizer.php:1264
    780792msgid "Show / Hide Slider Text"
    781793msgstr ""
    782794
    783 #: inc/customizer.php:1259
     795#: inc/customizer.php:1273
    784796msgid "Slider Title"
    785797msgstr ""
    786798
    787 #: inc/customizer.php:1269
     799#: inc/customizer.php:1283
    788800msgid "Slider Text"
    789801msgstr ""
    790802
    791 #: inc/customizer.php:1279
     803#: inc/customizer.php:1293
    792804msgid "Slider Background Image"
    793805msgstr ""
    794806
    795 #: inc/customizer.php:1280
     807#: inc/customizer.php:1294
    796808msgid "Image Size 1200px x 550px"
    797809msgstr ""
    798810
    799 #: inc/customizer.php:1289
     811#: inc/customizer.php:1303
    800812msgid "Location Title"
    801813msgstr ""
    802814
    803 #: inc/customizer.php:1313
     815#: inc/customizer.php:1327
    804816msgid "Select Location Category"
    805817msgstr ""
    806818
    807 #: inc/customizer.php:1323
     819#: inc/customizer.php:1337
    808820msgid "Show / Hide Slider Image Overlay"
    809821msgstr ""
    810822
    811 #: inc/customizer.php:1332
     823#: inc/customizer.php:1346
    812824msgid "Slider Overlay Color"
    813825msgstr ""
    814826
    815 #: inc/customizer.php:1340
     827#: inc/customizer.php:1354
    816828msgid "Slider Image Opacity"
    817829msgstr ""
    818830
    819 #: inc/customizer.php:1359
     831#: inc/customizer.php:1373
    820832msgid "Popular Tour Section"
    821833msgstr ""
    822834
    823 #: inc/customizer.php:1368
     835#: inc/customizer.php:1382
    824836msgid "Section Title"
    825837msgstr ""
    826838
    827 #: inc/customizer.php:1378
     839#: inc/customizer.php:1392
    828840msgid "Section Background Title"
    829841msgstr ""
    830842
    831 #: inc/customizer.php:1402
     843#: inc/customizer.php:1416
    832844msgid "Select Popular Tour Category"
    833845msgstr ""
    834846
    835 #: inc/customizer.php:1424
     847#: inc/customizer.php:1438
    836848msgid "Button Settings"
    837849msgstr ""
    838850
    839 #: inc/customizer.php:1429
     851#: inc/customizer.php:1443
    840852#: template-parts/content.php:52
    841853#: template-parts/grid-layout.php:28
     
    844856msgstr ""
    845857
    846 #: inc/customizer.php:1433
     858#: inc/customizer.php:1447
    847859msgid "Post Button Text"
    848860msgstr ""
    849861
    850 #: inc/customizer.php:1444
     862#: inc/customizer.php:1458
    851863msgid "Button Font Size"
    852864msgstr ""
    853865
    854 #: inc/customizer.php:1461
     866#: inc/customizer.php:1475
    855867msgid "Button Text Transform"
    856868msgstr ""
    857869
    858 #: inc/customizer.php:1465
    859 #: inc/customizer.php:2422
     870#: inc/customizer.php:1479
     871#: inc/customizer.php:2436
    860872msgid "Lowercase"
    861873msgstr ""
    862874
    863 #: inc/customizer.php:1475
     875#: inc/customizer.php:1489
    864876msgid "Top Bottom Button Padding"
    865877msgstr ""
    866878
    867 #: inc/customizer.php:1490
     879#: inc/customizer.php:1504
    868880msgid "Left Right Button Padding"
    869881msgstr ""
    870882
    871 #: inc/customizer.php:1505
    872 #: inc/customizer.php:3004
     883#: inc/customizer.php:1519
     884#: inc/customizer.php:3018
    873885msgid "Button Border Radius"
    874886msgstr ""
    875887
    876 #: inc/customizer.php:1520
     888#: inc/customizer.php:1534
    877889msgid "Button Font Weight"
    878890msgstr ""
    879891
    880 #: inc/customizer.php:1542
     892#: inc/customizer.php:1556
    881893msgid "Button Letter Spacing"
    882894msgstr ""
    883895
    884 #: inc/customizer.php:1554
     896#: inc/customizer.php:1568
    885897msgid "Post Settings"
    886898msgstr ""
    887899
    888 #: inc/customizer.php:1564
     900#: inc/customizer.php:1578
    889901msgid "Blog Post Alignment"
    890902msgstr ""
    891903
    892 #: inc/customizer.php:1567
     904#: inc/customizer.php:1581
    893905msgid "Left Align"
    894906msgstr ""
    895907
    896 #: inc/customizer.php:1568
     908#: inc/customizer.php:1582
    897909msgid "Right Align"
    898910msgstr ""
    899911
    900 #: inc/customizer.php:1569
     912#: inc/customizer.php:1583
    901913msgid "Center Align"
    902914msgstr ""
    903915
    904 #: inc/customizer.php:1579
     916#: inc/customizer.php:1593
    905917msgid "Enable / Disable Post Date"
    906918msgstr ""
    907919
    908 #: inc/customizer.php:1589
     920#: inc/customizer.php:1603
    909921msgid "Add Post Date Icon"
    910922msgstr ""
    911923
    912 #: inc/customizer.php:1602
     924#: inc/customizer.php:1616
    913925msgid "Enable / Disable Post Author"
    914926msgstr ""
    915927
    916 #: inc/customizer.php:1612
     928#: inc/customizer.php:1626
    917929msgid "Add Post Author Icon"
    918930msgstr ""
    919931
    920 #: inc/customizer.php:1625
     932#: inc/customizer.php:1639
    921933msgid "Enable / Disable Post Comments"
    922934msgstr ""
    923935
    924 #: inc/customizer.php:1635
     936#: inc/customizer.php:1649
    925937msgid "Add Post Comment Icon"
    926938msgstr ""
    927939
    928 #: inc/customizer.php:1648
     940#: inc/customizer.php:1662
    929941msgid "Enable / Disable Post Time"
    930942msgstr ""
    931943
    932 #: inc/customizer.php:1658
     944#: inc/customizer.php:1672
    933945msgid "Add Post Time Icon"
    934946msgstr ""
    935947
    936 #: inc/customizer.php:1671
     948#: inc/customizer.php:1685
    937949msgid "Enable / Disable post category"
    938950msgstr ""
    939951
    940 #: inc/customizer.php:1681
     952#: inc/customizer.php:1695
    941953msgid "Enable / Disable Featured Image"
    942954msgstr ""
    943955
    944 #: inc/customizer.php:1690
     956#: inc/customizer.php:1704
    945957msgid "Featured image border radius"
    946958msgstr ""
    947959
    948 #: inc/customizer.php:1705
     960#: inc/customizer.php:1719
    949961msgid "Featured image box shadow"
    950962msgstr ""
    951963
    952 #: inc/customizer.php:1721
    953 #: inc/customizer.php:1989
     964#: inc/customizer.php:1735
     965#: inc/customizer.php:2003
    954966msgid "Metabox Seperator"
    955967msgstr ""
    956968
    957 #: inc/customizer.php:1722
    958 #: inc/customizer.php:1990
     969#: inc/customizer.php:1736
     970#: inc/customizer.php:2004
    959971msgid "Ex: \"/\", \"|\", \"-\", ..."
    960972msgstr ""
    961973
    962 #: inc/customizer.php:1732
     974#: inc/customizer.php:1746
    963975msgid "Post Content Type"
    964976msgstr ""
    965977
    966 #: inc/customizer.php:1735
     978#: inc/customizer.php:1749
    967979msgid "No Content"
    968980msgstr ""
    969981
    970 #: inc/customizer.php:1736
     982#: inc/customizer.php:1750
    971983msgid "Full Content"
    972984msgstr ""
    973985
    974 #: inc/customizer.php:1737
     986#: inc/customizer.php:1751
    975987msgid "Excerpt Content"
    976988msgstr ""
    977989
    978 #: inc/customizer.php:1746
     990#: inc/customizer.php:1760
    979991msgid "Post Excerpt Length"
    980992msgstr ""
    981993
    982 #: inc/customizer.php:1758
     994#: inc/customizer.php:1772
    983995msgid "[...]"
    984996msgstr ""
    985997
    986 #: inc/customizer.php:1762
     998#: inc/customizer.php:1776
    987999msgid "Excerpt Suffix"
    9881000msgstr ""
    9891001
    990 #: inc/customizer.php:1775
     1002#: inc/customizer.php:1789
    9911003msgid "Post blocks"
    9921004msgstr ""
    9931005
    994 #: inc/customizer.php:1777
     1006#: inc/customizer.php:1791
    9951007msgid "Within box"
    9961008msgstr ""
    9971009
    998 #: inc/customizer.php:1778
     1010#: inc/customizer.php:1792
    9991011msgid "Without box"
    10001012msgstr ""
    10011013
    1002 #: inc/customizer.php:1787
     1014#: inc/customizer.php:1801
    10031015msgid "Enable / Disable Post Navigation"
    10041016msgstr ""
    10051017
    1006 #: inc/customizer.php:1798
     1018#: inc/customizer.php:1812
    10071019msgid "Post Navigation Type"
    10081020msgstr ""
    10091021
    1010 #: inc/customizer.php:1800
     1022#: inc/customizer.php:1814
    10111023msgid "Number"
    10121024msgstr ""
    10131025
    1014 #: inc/customizer.php:1801
     1026#: inc/customizer.php:1815
    10151027msgid "Next/Prev Button"
    10161028msgstr ""
    10171029
    1018 #: inc/customizer.php:1811
     1030#: inc/customizer.php:1825
    10191031msgid "Post Navigation Position"
    10201032msgstr ""
    10211033
    1022 #: inc/customizer.php:1813
    1023 #: inc/customizer.php:2368
     1034#: inc/customizer.php:1827
     1035#: inc/customizer.php:2382
    10241036msgid "Top"
    10251037msgstr ""
    10261038
    1027 #: inc/customizer.php:1814
    1028 #: inc/customizer.php:2374
     1039#: inc/customizer.php:1828
     1040#: inc/customizer.php:2388
    10291041msgid "Bottom"
    10301042msgstr ""
    10311043
    1032 #: inc/customizer.php:1815
     1044#: inc/customizer.php:1829
    10331045msgid "Both"
    10341046msgstr ""
    10351047
    1036 #: inc/customizer.php:1836
     1048#: inc/customizer.php:1850
    10371049msgid "Single Post Settings"
    10381050msgstr ""
    10391051
    1040 #: inc/customizer.php:1847
     1052#: inc/customizer.php:1861
    10411053msgid "Show / Hide Single Post Breadcrumb"
    10421054msgstr ""
    10431055
    1044 #: inc/customizer.php:1857
     1056#: inc/customizer.php:1871
    10451057msgid "Show / Hide Single Post Date"
    10461058msgstr ""
    10471059
    1048 #: inc/customizer.php:1867
     1060#: inc/customizer.php:1881
    10491061msgid "Add Sigle Post Date Icon"
    10501062msgstr ""
    10511063
    1052 #: inc/customizer.php:1880
     1064#: inc/customizer.php:1894
    10531065msgid "Show / Hide Single Post Author"
    10541066msgstr ""
    10551067
    1056 #: inc/customizer.php:1890
     1068#: inc/customizer.php:1904
    10571069msgid "Add Sigle Post Author Icon"
    10581070msgstr ""
    10591071
    1060 #: inc/customizer.php:1903
     1072#: inc/customizer.php:1917
    10611073msgid "Show / Hide Single Post Comment Number"
    10621074msgstr ""
    10631075
    1064 #: inc/customizer.php:1913
     1076#: inc/customizer.php:1927
    10651077msgid "Add Sigle Post Comment Icon"
    10661078msgstr ""
    10671079
    1068 #: inc/customizer.php:1926
     1080#: inc/customizer.php:1940
    10691081msgid "Show / Hide Single Post Time"
    10701082msgstr ""
    10711083
    1072 #: inc/customizer.php:1936
     1084#: inc/customizer.php:1950
    10731085msgid "Add Sigle Post Time Icon"
    10741086msgstr ""
    10751087
    1076 #: inc/customizer.php:1949
     1088#: inc/customizer.php:1963
    10771089msgid "Show / Hide Single Post Feature Image"
    10781090msgstr ""
    10791091
    1080 #: inc/customizer.php:1958
     1092#: inc/customizer.php:1972
    10811093msgid "Single Post Image Border Radius"
    10821094msgstr ""
    10831095
    1084 #: inc/customizer.php:1973
     1096#: inc/customizer.php:1987
    10851097msgid "Single Post Image Shadow"
    10861098msgstr ""
    10871099
    1088 #: inc/customizer.php:2000
     1100#: inc/customizer.php:2014
    10891101msgid "Show / Hide Single Post Categories"
    10901102msgstr ""
    10911103
    1092 #: inc/customizer.php:2009
     1104#: inc/customizer.php:2023
    10931105msgid "Category Color"
    10941106msgstr ""
    10951107
    1096 #: inc/customizer.php:2018
     1108#: inc/customizer.php:2032
    10971109msgid "Category Background Color"
    10981110msgstr ""
    10991111
    1100 #: inc/customizer.php:2028
     1112#: inc/customizer.php:2042
    11011113msgid "Show / Hide Single Post Tags"
    11021114msgstr ""
    11031115
    1104 #: inc/customizer.php:2038
     1116#: inc/customizer.php:2052
    11051117msgid "Show / Hide Single Post Comment"
    11061118msgstr ""
    11071119
    1108 #: inc/customizer.php:2047
     1120#: inc/customizer.php:2061
    11091121msgid "Comment Textarea Width"
    11101122msgstr ""
    11111123
    1112 #: inc/customizer.php:2064
     1124#: inc/customizer.php:2078
    11131125msgid "Comment form Title"
    11141126msgstr ""
    11151127
    1116 #: inc/customizer.php:2074
     1128#: inc/customizer.php:2088
    11171129msgid "Comment Button Text"
    11181130msgstr ""
    11191131
    1120 #: inc/customizer.php:2084
     1132#: inc/customizer.php:2098
    11211133msgid "Enable / Disable Nav Links"
    11221134msgstr ""
    11231135
    1124 #: inc/customizer.php:2094
     1136#: inc/customizer.php:2108
    11251137msgid "Previous Navigation Text"
    11261138msgstr ""
    11271139
    1128 #: inc/customizer.php:2104
     1140#: inc/customizer.php:2118
    11291141msgid "Next Navigation Text"
    11301142msgstr ""
    11311143
    1132 #: inc/customizer.php:2114
     1144#: inc/customizer.php:2128
    11331145msgid "Enable / Disable Related Posts"
    11341146msgstr ""
    11351147
    1136 #: inc/customizer.php:2124
     1148#: inc/customizer.php:2138
    11371149msgid "Related Posts Title"
    11381150msgstr ""
    11391151
    1140 #: inc/customizer.php:2133
     1152#: inc/customizer.php:2147
    11411153msgid "Related Posts Count"
    11421154msgstr ""
    11431155
    1144 #: inc/customizer.php:2151
     1156#: inc/customizer.php:2165
    11451157msgid "Related Posts Order By"
    11461158msgstr ""
    11471159
    1148 #: inc/customizer.php:2153
     1160#: inc/customizer.php:2167
    11491161msgid "Categories"
    11501162msgstr ""
    11511163
    1152 #: inc/customizer.php:2154
     1164#: inc/customizer.php:2168
    11531165msgid "Tags"
    11541166msgstr ""
    11551167
    1156 #: inc/customizer.php:2162
     1168#: inc/customizer.php:2176
    11571169msgid "Related Posts Content Limit"
    11581170msgstr ""
    11591171
    1160 #: inc/customizer.php:2175
     1172#: inc/customizer.php:2189
    11611173msgid "404 & No Result Page Settings"
    11621174msgstr ""
    11631175
    1164 #: inc/customizer.php:2186
     1176#: inc/customizer.php:2200
    11651177msgid "404 Page Title"
    11661178msgstr ""
    11671179
    1168 #: inc/customizer.php:2196
     1180#: inc/customizer.php:2210
    11691181msgid "404 Page Text"
    11701182msgstr ""
    11711183
    1172 #: inc/customizer.php:2206
     1184#: inc/customizer.php:2220
    11731185msgid "404 Page Button Text"
    11741186msgstr ""
    11751187
    1176 #: inc/customizer.php:2216
     1188#: inc/customizer.php:2230
    11771189msgid "No Result Page Title"
    11781190msgstr ""
    11791191
    1180 #: inc/customizer.php:2226
     1192#: inc/customizer.php:2240
    11811193msgid "No Result Page Text"
    11821194msgstr ""
    11831195
    1184 #: inc/customizer.php:2236
     1196#: inc/customizer.php:2250
    11851197msgid "Show/Hide Search Form"
    11861198msgstr ""
    11871199
    1188 #: inc/customizer.php:2242
     1200#: inc/customizer.php:2256
    11891201msgid "Footer Section"
    11901202msgstr ""
    11911203
    1192 #: inc/customizer.php:2261
     1204#: inc/customizer.php:2275
    11931205msgid "Show/Hide Back to Top Button"
    11941206msgstr ""
    11951207
    1196 #: inc/customizer.php:2271
     1208#: inc/customizer.php:2285
    11971209msgid "Back to Top Icon"
    11981210msgstr ""
    11991211
    1200 #: inc/customizer.php:2281
     1212#: inc/customizer.php:2295
    12011213msgid "Back To Top Font Size"
    12021214msgstr ""
    12031215
    1204 #: inc/customizer.php:2291
     1216#: inc/customizer.php:2305
    12051217msgid "Back To Top Icon Color"
    12061218msgstr ""
    12071219
    1208 #: inc/customizer.php:2300
     1220#: inc/customizer.php:2314
    12091221msgid "Back To Top Icon Hover Color"
    12101222msgstr ""
    12111223
    1212 #: inc/customizer.php:2309
     1224#: inc/customizer.php:2323
    12131225msgid "Back to Top Button Text"
    12141226msgstr ""
    12151227
    1216 #: inc/customizer.php:2320
     1228#: inc/customizer.php:2334
    12171229msgid "Back to Top Button Alignment"
    12181230msgstr ""
    12191231
    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
     1239msgid "Left"
     1240msgstr ""
     1241
     1242#: inc/customizer.php:2338
     1243#: inc/customizer.php:2386
    12231244#: 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
     1249msgid "Right"
     1250msgstr ""
     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
     1258msgid "Center"
     1259msgstr ""
     1260
     1261#: inc/customizer.php:2349
     1262msgid "Show / Hide Footer"
     1263msgstr ""
     1264
     1265#: inc/customizer.php:2358
     1266msgid "Footer Background Color"
     1267msgstr ""
     1268
     1269#: inc/customizer.php:2367
     1270msgid "Footer Background Image"
     1271msgstr ""
     1272
     1273#: inc/customizer.php:2378
     1274msgid "Footer Image Position"
     1275msgstr ""
     1276
     1277#: inc/customizer.php:2381
     1278msgid "Top Left"
     1279msgstr ""
     1280
     1281#: inc/customizer.php:2383
     1282msgid "Top Right"
     1283msgstr ""
     1284
     1285#: inc/customizer.php:2387
     1286msgid "Bottom Left"
     1287msgstr ""
     1288
     1289#: inc/customizer.php:2389
     1290msgid "Bottom Right"
     1291msgstr ""
     1292
     1293#: inc/customizer.php:2399
     1294msgid "Footer Background Attatchment"
     1295msgstr ""
     1296
     1297#: inc/customizer.php:2401
     1298msgid "fixed"
     1299msgstr ""
     1300
     1301#: inc/customizer.php:2402
     1302msgid "scroll"
     1303msgstr ""
     1304
     1305#: inc/customizer.php:2413
     1306msgid "Footer widget layout"
     1307msgstr ""
     1308
     1309#: inc/customizer.php:2415
     1310msgid "Select the number of widget areas you want in the footer. After that, go to Appearance > Widgets and add your widgets."
     1311msgstr ""
     1312
     1313#: inc/customizer.php:2417
     1314msgid "One"
     1315msgstr ""
     1316
     1317#: inc/customizer.php:2418
     1318msgid "Two"
     1319msgstr ""
     1320
     1321#: inc/customizer.php:2419
     1322msgid "Three"
     1323msgstr ""
     1324
     1325#: inc/customizer.php:2420
     1326msgid "Four"
     1327msgstr ""
     1328
     1329#: inc/customizer.php:2431
     1330msgid "Heading Text Transform"
     1331msgstr ""
     1332
     1333#: inc/customizer.php:2445
     1334msgid "Footer Widgets Heading Font Size"
     1335msgstr ""
     1336
     1337#: inc/customizer.php:2456
     1338msgid "Footer Widgets Heading Font Weight"
     1339msgstr ""
     1340
     1341#: inc/customizer.php:2478
     1342msgid "Footer Widget Heading Alignment"
     1343msgstr ""
     1344
     1345#: inc/customizer.php:2494
     1346msgid "Footer Widget Content Alignment"
     1347msgstr ""
     1348
    12341349#: inc/customizer.php:2509
    1235 #: inc/customizer.php:2722
    1236 #: inc/customizer.php:3094
    1237 msgid "Right"
    1238 msgstr ""
    1239 
    1240 #: inc/customizer.php:2325
    1241 #: inc/customizer.php:2371
    1242 #: inc/customizer.php:2468
    1243 #: inc/customizer.php:2484
    1244 #: inc/customizer.php:2510
    1245 #: inc/customizer.php:2723
    1246 msgid "Center"
    1247 msgstr ""
    1248 
    1249 #: inc/customizer.php:2335
    1250 msgid "Show / Hide Footer"
    1251 msgstr ""
    1252 
    1253 #: inc/customizer.php:2344
    1254 msgid "Footer Background Color"
    1255 msgstr ""
    1256 
    1257 #: inc/customizer.php:2353
    1258 msgid "Footer Background Image"
    1259 msgstr ""
    1260 
    1261 #: inc/customizer.php:2364
    1262 msgid "Footer Image Position"
    1263 msgstr ""
    1264 
    1265 #: inc/customizer.php:2367
    1266 msgid "Top Left"
    1267 msgstr ""
    1268 
    1269 #: inc/customizer.php:2369
    1270 msgid "Top Right"
    1271 msgstr ""
    1272 
    1273 #: inc/customizer.php:2373
    1274 msgid "Bottom Left"
    1275 msgstr ""
    1276 
    1277 #: inc/customizer.php:2375
    1278 msgid "Bottom Right"
    1279 msgstr ""
    1280 
    1281 #: inc/customizer.php:2385
    1282 msgid "Footer Background Attatchment"
    1283 msgstr ""
    1284 
    1285 #: inc/customizer.php:2387
    1286 msgid "fixed"
    1287 msgstr ""
    1288 
    1289 #: inc/customizer.php:2388
    1290 msgid "scroll"
    1291 msgstr ""
    1292 
    1293 #: inc/customizer.php:2399
    1294 msgid "Footer widget layout"
    1295 msgstr ""
    1296 
    1297 #: inc/customizer.php:2401
    1298 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:2403
    1302 msgid "One"
    1303 msgstr ""
    1304 
    1305 #: inc/customizer.php:2404
    1306 msgid "Two"
    1307 msgstr ""
    1308 
    1309 #: inc/customizer.php:2405
    1310 msgid "Three"
    1311 msgstr ""
    1312 
    1313 #: inc/customizer.php:2406
    1314 msgid "Four"
    1315 msgstr ""
    1316 
    1317 #: inc/customizer.php:2417
    1318 msgid "Heading Text Transform"
    1319 msgstr ""
    1320 
    1321 #: inc/customizer.php:2431
    1322 msgid "Footer Widgets Heading Font Size"
    1323 msgstr ""
    1324 
    1325 #: inc/customizer.php:2442
    1326 msgid "Footer Widgets Heading Font Weight"
    1327 msgstr ""
    1328 
    1329 #: inc/customizer.php:2464
    1330 msgid "Footer Widget Heading Alignment"
    1331 msgstr ""
    1332 
    1333 #: inc/customizer.php:2480
    1334 msgid "Footer Widget Content Alignment"
    1335 msgstr ""
    1336 
    1337 #: inc/customizer.php:2495
    13381350msgid "Show / Hide Copyright"
    13391351msgstr ""
    13401352
    1341 #: inc/customizer.php:2505
     1353#: inc/customizer.php:2519
    13421354msgid "Copyright Alignment"
    13431355msgstr ""
    13441356
    1345 #: inc/customizer.php:2519
     1357#: inc/customizer.php:2533
    13461358msgid "Copyright Color"
    13471359msgstr ""
    13481360
    1349 #: inc/customizer.php:2528
     1361#: inc/customizer.php:2542
    13501362msgid "Copyright Hover Color"
    13511363msgstr ""
    13521364
    1353 #: inc/customizer.php:2537
     1365#: inc/customizer.php:2551
    13541366msgid "Copyright Font Size"
    13551367msgstr ""
    13561368
    1357 #: inc/customizer.php:2547
     1369#: inc/customizer.php:2561
    13581370msgid "Copyright Top Bottom Padding"
    13591371msgstr ""
    13601372
    1361 #: inc/customizer.php:2565
     1373#: inc/customizer.php:2579
    13621374msgid "Copyright Text"
    13631375msgstr ""
    13641376
    1365 #: inc/customizer.php:2575
     1377#: inc/customizer.php:2589
    13661378msgid "Copyright Background Color"
    13671379msgstr ""
    13681380
    1369 #: inc/customizer.php:2581
     1381#: inc/customizer.php:2595
    13701382msgid "Footer Social Icons"
    13711383msgstr ""
    13721384
    1373 #: inc/customizer.php:2598
     1385#: inc/customizer.php:2612
    13741386msgid "Show/Hide Social Icons"
    13751387msgstr ""
    13761388
    1377 #: inc/customizer.php:2607
     1389#: inc/customizer.php:2621
    13781390msgid "Add Facebook link"
    13791391msgstr ""
    13801392
    1381 #: inc/customizer.php:2631
     1393#: inc/customizer.php:2645
    13821394msgid "Add Twitter link"
    13831395msgstr ""
    13841396
    1385 #: inc/customizer.php:2678
     1397#: inc/customizer.php:2692
    13861398msgid "Add Instagram link"
    13871399msgstr ""
    13881400
    1389 #: inc/customizer.php:2718
     1401#: inc/customizer.php:2732
    13901402msgid "Icon Alignment"
    13911403msgstr ""
    13921404
    1393 #: inc/customizer.php:2732
     1405#: inc/customizer.php:2746
    13941406msgid "Icon Color"
    13951407msgstr ""
    13961408
    1397 #: inc/customizer.php:2739
     1409#: inc/customizer.php:2753
    13981410msgid "Mobile Media Options"
    13991411msgstr ""
    14001412
    1401 #: inc/customizer.php:2750
     1413#: inc/customizer.php:2764
    14021414msgid "Open Menu Icon"
    14031415msgstr ""
    14041416
    1405 #: inc/customizer.php:2761
     1417#: inc/customizer.php:2775
    14061418msgid "Open Menu Label"
    14071419msgstr ""
    14081420
    1409 #: inc/customizer.php:2770
     1421#: inc/customizer.php:2784
    14101422msgid "Menu Icon Color Option"
    14111423msgstr ""
    14121424
    1413 #: inc/customizer.php:2781
     1425#: inc/customizer.php:2795
    14141426msgid "Close Menu Icon"
    14151427msgstr ""
    14161428
    1417 #: inc/customizer.php:2792
     1429#: inc/customizer.php:2806
    14181430msgid "Close Menu Label"
    14191431msgstr ""
    14201432
    1421 #: inc/customizer.php:2802
     1433#: inc/customizer.php:2816
    14221434msgid "Show / Hide Topbar"
    14231435msgstr ""
    14241436
    1425 #: inc/customizer.php:2812
     1437#: inc/customizer.php:2826
    14261438msgid "Show / Hide Slider"
    14271439msgstr ""
    14281440
    1429 #: inc/customizer.php:2822
     1441#: inc/customizer.php:2836
    14301442msgid "Show / Hide Sticky Header"
    14311443msgstr ""
    14321444
    1433 #: inc/customizer.php:2832
     1445#: inc/customizer.php:2846
    14341446msgid "Show / Hide Back to Top Button"
    14351447msgstr ""
    14361448
    1437 #: inc/customizer.php:2852
     1449#: inc/customizer.php:2866
    14381450msgid "Enable Sidebar"
    14391451msgstr ""
    14401452
    1441 #: inc/customizer.php:2861
     1453#: inc/customizer.php:2875
    14421454msgid "Toggle Button Bg Color"
    14431455msgstr ""
    14441456
    1445 #: inc/customizer.php:2867
     1457#: inc/customizer.php:2881
    14461458msgid "Additional WooCommerce Options"
    14471459msgstr ""
    14481460
    1449 #: inc/customizer.php:2879
     1461#: inc/customizer.php:2893
    14501462msgid "Product per row"
    14511463msgstr ""
    14521464
    1453 #: inc/customizer.php:2894
     1465#: inc/customizer.php:2908
    14541466msgid "Product per page"
    14551467msgstr ""
    14561468
    1457 #: inc/customizer.php:2905
     1469#: inc/customizer.php:2919
    14581470msgid "Enable / Disable Shop page sidebar"
    14591471msgstr ""
    14601472
    1461 #: inc/customizer.php:2916
     1473#: inc/customizer.php:2930
    14621474msgid "Shop Page layout"
    14631475msgstr ""
    14641476
    1465 #: inc/customizer.php:2930
     1477#: inc/customizer.php:2944
    14661478msgid "Enable / Disable Single Product Page Sidebar"
    14671479msgstr ""
    14681480
    1469 #: inc/customizer.php:2941
     1481#: inc/customizer.php:2955
    14701482msgid "Single product Page layout"
    14711483msgstr ""
    14721484
    1473 #: inc/customizer.php:2955
     1485#: inc/customizer.php:2969
    14741486msgid "Enable / Disable Shop page pagination"
    14751487msgstr ""
    14761488
    1477 #: inc/customizer.php:2965
     1489#: inc/customizer.php:2979
    14781490msgid "Enable / Disable Related product"
    14791491msgstr ""
    14801492
    1481 #: inc/customizer.php:2974
     1493#: inc/customizer.php:2988
    14821494msgid "Button Top Bottom Padding"
    14831495msgstr ""
    14841496
    1485 #: inc/customizer.php:2989
     1497#: inc/customizer.php:3003
    14861498msgid "Button Right Left Padding"
    14871499msgstr ""
    14881500
    1489 #: inc/customizer.php:3020
     1501#: inc/customizer.php:3034
    14901502msgid "Enable / Disable product border"
    14911503msgstr ""
    14921504
    1493 #: inc/customizer.php:3029
     1505#: inc/customizer.php:3043
    14941506msgid "Product Top Bottom Padding"
    14951507msgstr ""
    14961508
    1497 #: inc/customizer.php:3044
     1509#: inc/customizer.php:3058
    14981510msgid "Product Right Left Padding"
    14991511msgstr ""
    15001512
    1501 #: inc/customizer.php:3059
     1513#: inc/customizer.php:3073
    15021514msgid "Product Border Radius"
    15031515msgstr ""
    15041516
    1505 #: inc/customizer.php:3074
     1517#: inc/customizer.php:3088
    15061518msgid "Product Box Shadow"
    15071519msgstr ""
    15081520
    1509 #: inc/customizer.php:3090
     1521#: inc/customizer.php:3104
    15101522msgid "Sale badge Position"
    15111523msgstr ""
    15121524
    1513 #: inc/customizer.php:3103
     1525#: inc/customizer.php:3117
    15141526msgid "Sale Top Bottom Padding"
    15151527msgstr ""
    15161528
    1517 #: inc/customizer.php:3118
     1529#: inc/customizer.php:3132
    15181530msgid "Sale Right Left Padding"
    15191531msgstr ""
    15201532
    1521 #: inc/customizer.php:3133
     1533#: inc/customizer.php:3147
    15221534msgid "Sale Border Radius"
    15231535msgstr ""
    15241536
    1525 #: inc/customizer.php:3148
     1537#: inc/customizer.php:3162
    15261538msgid "Sale Font Size"
    15271539msgstr ""
    15281540
    1529 #: inc/customizer.php:3240
     1541#: inc/customizer.php:3254
    15301542msgid "Travel Pro Theme"
    15311543msgstr ""
    15321544
    1533 #: inc/customizer.php:3241
     1545#: inc/customizer.php:3255
    15341546#: inc/dashboard/getstart.php:39
    15351547msgid "Get Pro"
    15361548msgstr ""
    15371549
    1538 #: inc/customizer.php:3254
     1550#: inc/customizer.php:3268
    15391551msgid "Search Tour Section"
    15401552msgstr ""
    15411553
    1542 #: inc/customizer.php:3255
     1554#: inc/customizer.php:3269
    15431555msgid "About Section"
    15441556msgstr ""
    15451557
    1546 #: inc/customizer.php:3256
     1558#: inc/customizer.php:3270
    15471559msgid "Perfection Section"
    15481560msgstr ""
    15491561
    1550 #: inc/customizer.php:3257
     1562#: inc/customizer.php:3271
    15511563msgid "Most Popular Section"
    15521564msgstr ""
    15531565
    1554 #: inc/customizer.php:3258
     1566#: inc/customizer.php:3272
    15551567msgid "Top Destination Section"
    15561568msgstr ""
    15571569
    1558 #: inc/customizer.php:3259
     1570#: inc/customizer.php:3273
    15591571msgid "Tour Place Section"
    15601572msgstr ""
    15611573
    1562 #: inc/customizer.php:3260
     1574#: inc/customizer.php:3274
    15631575msgid "Exclusive Offer Section"
    15641576msgstr ""
    15651577
    1566 #: inc/customizer.php:3261
     1578#: inc/customizer.php:3275
    15671579msgid "Testimonials Section"
    15681580msgstr ""
    15691581
    1570 #: inc/customizer.php:3262
     1582#: inc/customizer.php:3276
    15711583msgid "Blog Section"
    15721584msgstr ""
    15731585
    1574 #: inc/customizer.php:3263
     1586#: inc/customizer.php:3277
    15751587msgid "Our Newsletter Section"
    15761588msgstr ""
    15771589
    1578 #: inc/customizer.php:3266
     1590#: inc/customizer.php:3280
    15791591msgid "View PRO version"
    15801592msgstr ""
     
    23662378msgstr ""
    23672379
    2368 #: woocommerce/checkout/form-checkout.php:53
     2380#: woocommerce/checkout/form-checkout.php:32
     2381msgid "Checkout"
     2382msgstr ""
     2383
     2384#: woocommerce/checkout/form-checkout.php:54
    23692385msgid "Your order"
    23702386msgstr ""
  • tour-travel-agent/0.5.1/page-template/custom-frontpage.php

    r239268 r252038  
    1111<main id="main" role="main">
    1212 
    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 ) != '' ) {?>
    1414    <section id="slider">
    1515      <div class="slider-bgimage">
  • tour-travel-agent/0.5.1/readme.txt

    r248480 r252038  
    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, rtl-language-support, threaded-comments, blog, portfolio, photography
    44Requires at least: 5.0
    5 Tested up to: 6.6
     5Tested up to: 6.7
    66Requires PHP: 7.2
    7 Stable tag: 0.5
     7Stable tag: 0.5.1
    88License: GNU General Public License v3.0
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    284284* Update POT file.
    285285
     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
    286296== Resources ==
    287297
  • tour-travel-agent/0.5.1/style.css

    r248480 r252038  
    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.5
     7Version: 0.5.1
    88Requires at least: 5.0
    9 Tested up to: 6.6
     9Tested up to: 6.7
    1010Requires PHP: 7.2
    1111License: GNU General Public License v3.0
     
    656656  width: 100%;
    657657  border-radius: 10px 10px 0 0;
     658  height: 270px;
    658659}
    659660#tour-section .tour-content {
     
    19411942  background-color: #0ca6ee !important;
    19421943}
     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}
    19431953/* Media */
    19441954@media screen and (max-width: 720px) {
  • tour-travel-agent/0.5.1/tc-style.php

    r248480 r252038  
    454454
    455455    // 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) {
    457457        $tour_travel_agent_custom_css .='@media screen and (min-width: 575px){
    458458            #slider{';
     
    534534        $tour_travel_agent_custom_css .='.primary-navigation ul li a{';
    535535            $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;';
    536548        $tour_travel_agent_custom_css .='}';
    537549    }
  • tour-travel-agent/0.5.1/woocommerce/archive-product.php

    r227521 r252038  
    2121
    2222<?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 );
    2424 if ( false == $tour_travel_agent_shop_sidebar ) {
    2525   $colmd = 'col-lg-12 col-md-12';
  • tour-travel-agent/0.5.1/woocommerce/checkout/form-checkout.php

    r166464 r252038  
    1111 * the readme will list any important changes.
    1212 *
    13  * @see https://docs.woocommerce.com/document/template-structure/
    14  * @package WooCommerce/Templates
    15  * @version 3.5.0
     13 * @see https://woocommerce.com/document/template-structure/
     14 * @package WooCommerce\Templates
     15 * @version 9.4.0
    1616 */
    1717
     
    3030?>
    3131
    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' ); ?>">
    3333
    3434    <?php if ( $checkout->get_checkout_fields() ) : ?>
     
    3737
    3838        <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' ); ?>
    4645            </div>
    4746        </div>
     
    5049
    5150    <?php endif; ?>
    52 
     51   
     52    <?php do_action( 'woocommerce_checkout_before_order_review_heading' ); ?>
     53   
    5354    <h3 id="order_review_heading"><?php esc_html_e( 'Your order', 'tour-travel-agent' ); ?></h3>
    54 
     55   
    5556    <?php do_action( 'woocommerce_checkout_before_order_review' ); ?>
    5657
  • tour-travel-agent/0.5.1/woocommerce/single-product.php

    r200025 r252038  
    2424
    2525<?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 );
    2727 if ( false == $tour_travel_agent_wocommerce_single_page_sidebar ) {
    2828   $colmd = 'col-lg-12 col-md-12';
Note: See TracChangeset for help on using the changeset viewer.