Make WordPress Themes

Changeset 259900


Ignore:
Timestamp:
02/15/2025 07:19:04 AM (9 months ago)
Author:
themedropbox
Message:

New version of Tour Travel Agent - 0.5.4

Location:
tour-travel-agent/0.5.4
Files:
9 edited
1 copied

Legend:

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

    r252038 r259900  
    254254  display: none;
    255255}
     256.accordion-section-title button.accordion-trigger:focus{
     257    box-shadow: none;
     258}
  • tour-travel-agent/0.5.4/footer.php

    r257422 r259900  
    1212            $tour_travel_agent_widget_areas = get_theme_mod('tour_travel_agent_footer_widget_layout', '4');
    1313            if ($tour_travel_agent_widget_areas == '3') {
    14                 $tour_travel_agent_cols = 'col-lg-4 col-md-4';
     14                $tour_travel_agent_cols = 'col-lg-4 col-md-6';
    1515            } elseif ($tour_travel_agent_widget_areas == '4') {
    16                 $tour_travel_agent_cols = 'col-lg-3 col-md-3';
     16                $tour_travel_agent_cols = 'col-lg-3 col-md-6';
    1717            } elseif ($tour_travel_agent_widget_areas == '2') {
    1818                $tour_travel_agent_cols = 'col-lg-6 col-md-6';
  • tour-travel-agent/0.5.4/functions.php

    r246448 r259900  
    548548}
    549549
     550function tour_travel_agent_blog_post_featured_image_dimension(){
     551    if(get_theme_mod('tour_travel_agent_blog_post_featured_image_dimension') == 'custom' ) {
     552        return true;
     553    }
     554    return false;
     555}
     556
    550557function tour_travel_agent_sanitize_checkbox( $input ) {
    551558    // Boolean check
  • tour-travel-agent/0.5.4/inc/customizer.php

    r257422 r259900  
    14341434    );
    14351435
     1436    //Blog Post
     1437    $wp_customize->add_section('tour_travel_agent_blog_post',array(
     1438        'title' => __('Post Settings','tour-travel-agent'),
     1439        'panel' => 'tour_travel_agent_panel_id',
     1440    ));
     1441
     1442    $wp_customize->add_setting('tour_travel_agent_blog_post_alignment',array(
     1443        'default' => 'left',
     1444        'sanitize_callback' => 'tour_travel_agent_sanitize_choices'
     1445    ));
     1446    $wp_customize->add_control('tour_travel_agent_blog_post_alignment', array(
     1447        'type' => 'select',
     1448        'label' => __( 'Blog Post Alignment', 'tour-travel-agent' ),
     1449        'section' => 'tour_travel_agent_blog_post',
     1450        'choices' => array(
     1451            'left' => __('Left Align','tour-travel-agent'),
     1452            'right' => __('Right Align','tour-travel-agent'),
     1453            'center' => __('Center Align','tour-travel-agent')
     1454        ),
     1455    ));
     1456
     1457    $wp_customize->add_setting('tour_travel_agent_date_hide',array(
     1458       'default' => true,
     1459       'sanitize_callback'  => 'tour_travel_agent_sanitize_checkbox'
     1460    ));
     1461    $wp_customize->add_control('tour_travel_agent_date_hide',array(
     1462       'type' => 'checkbox',
     1463       'label' => __('Enable / Disable Post Date','tour-travel-agent'),
     1464       'section' => 'tour_travel_agent_blog_post'
     1465    ));
     1466
     1467    $wp_customize->add_setting('tour_travel_agent_postdate_icon',array(
     1468        'default'   => 'fas fa-calendar-alt',
     1469        'sanitize_callback' => 'sanitize_text_field'
     1470    ));
     1471    $wp_customize->add_control(new Tour_Travel_Agent_Icon_Changer(
     1472        $wp_customize,'tour_travel_agent_postdate_icon',array(
     1473        'label' => __('Add Post Date Icon','tour-travel-agent'),
     1474        'transport' => 'refresh',
     1475        'section'   => 'tour_travel_agent_blog_post',
     1476        'setting'   => 'tour_travel_agent_postdate_icon',
     1477        'type'      => 'icon'
     1478    )));
     1479
     1480    $wp_customize->add_setting('tour_travel_agent_author_hide',array(
     1481       'default' => true,
     1482       'sanitize_callback'  => 'tour_travel_agent_sanitize_checkbox'
     1483    ));
     1484    $wp_customize->add_control('tour_travel_agent_author_hide',array(
     1485       'type' => 'checkbox',
     1486       'label' => __('Enable / Disable Post Author','tour-travel-agent'),
     1487       'section' => 'tour_travel_agent_blog_post'
     1488    ));
     1489
     1490    $wp_customize->add_setting('tour_travel_agent_author_icon',array(
     1491        'default'   => 'fas fa-user',
     1492        'sanitize_callback' => 'sanitize_text_field'
     1493    ));
     1494    $wp_customize->add_control(new Tour_Travel_Agent_Icon_Changer(
     1495        $wp_customize,'tour_travel_agent_author_icon',array(
     1496        'label' => __('Add Post Author Icon','tour-travel-agent'),
     1497        'transport' => 'refresh',
     1498        'section'   => 'tour_travel_agent_blog_post',
     1499        'setting'   => 'tour_travel_agent_author_icon',
     1500        'type'      => 'icon'
     1501    )));
     1502
     1503    $wp_customize->add_setting('tour_travel_agent_comment_hide',array(
     1504       'default' => true,
     1505       'sanitize_callback'  => 'tour_travel_agent_sanitize_checkbox'
     1506    ));
     1507    $wp_customize->add_control('tour_travel_agent_comment_hide',array(
     1508       'type' => 'checkbox',
     1509       'label' => __('Enable / Disable Post Comments','tour-travel-agent'),
     1510       'section' => 'tour_travel_agent_blog_post'
     1511    ));
     1512
     1513    $wp_customize->add_setting('tour_travel_agent_comment_icon',array(
     1514        'default'   => 'fa fa-comments',
     1515        'sanitize_callback' => 'sanitize_text_field'
     1516    ));
     1517    $wp_customize->add_control(new Tour_Travel_Agent_Icon_Changer(
     1518        $wp_customize,'tour_travel_agent_comment_icon',array(
     1519        'label' => __('Add Post Comment Icon','tour-travel-agent'),
     1520        'transport' => 'refresh',
     1521        'section'   => 'tour_travel_agent_blog_post',
     1522        'setting'   => 'tour_travel_agent_comment_icon',
     1523        'type'      => 'icon'
     1524    )));
     1525
     1526    $wp_customize->add_setting('tour_travel_agent_time_hide',array(
     1527       'default' => true,
     1528       'sanitize_callback'  => 'tour_travel_agent_sanitize_checkbox'
     1529    ));
     1530    $wp_customize->add_control('tour_travel_agent_time_hide',array(
     1531       'type' => 'checkbox',
     1532       'label' => __('Enable / Disable Post Time','tour-travel-agent'),
     1533       'section' => 'tour_travel_agent_blog_post'
     1534    ));
     1535
     1536    $wp_customize->add_setting('tour_travel_agent_time_icon',array(
     1537        'default'   => 'fas fa-clock',
     1538        'sanitize_callback' => 'sanitize_text_field'
     1539    ));
     1540    $wp_customize->add_control(new Tour_Travel_Agent_Icon_Changer(
     1541        $wp_customize,'tour_travel_agent_time_icon',array(
     1542        'label' => __('Add Post Time Icon','tour-travel-agent'),
     1543        'transport' => 'refresh',
     1544        'section'   => 'tour_travel_agent_blog_post',
     1545        'setting'   => 'tour_travel_agent_time_icon',
     1546        'type'      => 'icon'
     1547    )));
     1548
     1549    $wp_customize->add_setting('tour_travel_agent_show_hide_post_categories',array(
     1550       'default' => true,
     1551       'sanitize_callback'  => 'tour_travel_agent_sanitize_checkbox'
     1552    ));
     1553    $wp_customize->add_control('tour_travel_agent_show_hide_post_categories',array(
     1554       'type' => 'checkbox',
     1555       'label' => __('Enable / Disable post category','tour-travel-agent'),
     1556       'section' => 'tour_travel_agent_blog_post'
     1557    ));
     1558
     1559    $wp_customize->add_setting('tour_travel_agent_feature_image_hide',array(
     1560       'default' => true,
     1561       'sanitize_callback'  => 'tour_travel_agent_sanitize_checkbox'
     1562    ));
     1563    $wp_customize->add_control('tour_travel_agent_feature_image_hide',array(
     1564       'type' => 'checkbox',
     1565       'label' => __('Enable / Disable Featured Image','tour-travel-agent'),
     1566       'section' => 'tour_travel_agent_blog_post'
     1567    ));
     1568
     1569    $wp_customize->add_setting( 'tour_travel_agent_featured_image_border_radius', array(
     1570        'default' => 0,
     1571        'sanitize_callback' => 'tour_travel_agent_sanitize_float'
     1572    ) );
     1573    $wp_customize->add_control( 'tour_travel_agent_featured_image_border_radius', array(
     1574        'label' => __( 'Featured image border radius','tour-travel-agent' ),
     1575        'section' => 'tour_travel_agent_blog_post',
     1576        'type'  => 'number',
     1577        'input_attrs' => array(
     1578            'step' => 1,
     1579            'min'  => 0,
     1580            'max'  => 50,
     1581        ),
     1582    ) );
     1583
     1584    $wp_customize->add_setting( 'tour_travel_agent_featured_image_box_shadow', array(
     1585        'default' => 0,
     1586        'sanitize_callback' => 'tour_travel_agent_sanitize_float'
     1587    ) );
     1588    $wp_customize->add_control( 'tour_travel_agent_featured_image_box_shadow', array(
     1589        'label' => __( 'Featured image box shadow','tour-travel-agent' ),
     1590        'section' => 'tour_travel_agent_blog_post',
     1591        'type'  => 'number',
     1592        'input_attrs' => array(
     1593            'step' => 1,
     1594            'min'  => 0,
     1595            'max'  => 50,
     1596        ),
     1597    ) );
     1598
     1599    //Featured Image Dimension
     1600    $wp_customize->add_setting('tour_travel_agent_blog_post_featured_image_dimension',array(
     1601        'default' => 'default',
     1602        'sanitize_callback' => 'tour_travel_agent_sanitize_choices'
     1603    ));
     1604    $wp_customize->add_control('tour_travel_agent_blog_post_featured_image_dimension',array(
     1605        'type' => 'select',
     1606        'label' => __('Featured Image Dimension','tour-travel-agent'),
     1607        'section'   => 'tour_travel_agent_blog_post',
     1608        'choices' => array(
     1609        'default' => __('Default','tour-travel-agent'),
     1610        'custom' => __('Custom Image Size','tour-travel-agent'),
     1611    ),
     1612    ));
     1613
     1614    $wp_customize->add_setting('tour_travel_agent_blog_post_featured_image_custom_width',array(
     1615        'default'=> '',
     1616        'sanitize_callback' => 'sanitize_text_field'
     1617    ));
     1618    $wp_customize->add_control('tour_travel_agent_blog_post_featured_image_custom_width',array(
     1619        'label' => __('Featured Image Custom Width','tour-travel-agent'),
     1620        'description'   => __('Enter a value in pixels. Example:20px','tour-travel-agent'),
     1621        'input_attrs' => array(
     1622        'placeholder' => __( '10px', 'tour-travel-agent' ),),
     1623        'section'=> 'tour_travel_agent_blog_post',
     1624        'type'=> 'text',
     1625        'active_callback' => 'tour_travel_agent_blog_post_featured_image_dimension'
     1626    ));
     1627
     1628    $wp_customize->add_setting('tour_travel_agent_blog_post_featured_image_custom_height',array(
     1629        'default'=> '',
     1630        'sanitize_callback' => 'sanitize_text_field'
     1631    ));
     1632    $wp_customize->add_control('tour_travel_agent_blog_post_featured_image_custom_height',array(
     1633        'label' => __('Featured Image Custom Height','tour-travel-agent'),
     1634        'description'   => __('Enter a value in pixels. Example:20px','tour-travel-agent'),
     1635        'input_attrs' => array(
     1636        'placeholder' => __( '10px', 'tour-travel-agent' ),),
     1637        'section'=> 'tour_travel_agent_blog_post',
     1638        'type'=> 'text',
     1639        'active_callback' => 'tour_travel_agent_blog_post_featured_image_dimension'
     1640    ));
     1641
     1642    $wp_customize->add_setting('tour_travel_agent_metabox_seperator',array(
     1643       'default' => '|',
     1644       'sanitize_callback'  => 'sanitize_text_field'
     1645    ));
     1646    $wp_customize->add_control('tour_travel_agent_metabox_seperator',array(
     1647       'type' => 'text',
     1648       'label' => __('Metabox Seperator','tour-travel-agent'),
     1649       'description' => __('Ex: "/", "|", "-", ...','tour-travel-agent'),
     1650       'section' => 'tour_travel_agent_blog_post'
     1651    ));
     1652
     1653    $wp_customize->add_setting('tour_travel_agent_post_content',array(
     1654        'default' => 'Excerpt Content',
     1655        'sanitize_callback' => 'tour_travel_agent_sanitize_choices'
     1656    ));
     1657    $wp_customize->add_control('tour_travel_agent_post_content',array(
     1658        'type' => 'radio',
     1659        'label' => __('Post Content Type','tour-travel-agent'),
     1660        'section' => 'tour_travel_agent_blog_post',
     1661        'choices' => array(
     1662            'No Content' => __('No Content','tour-travel-agent'),
     1663            'Full Content' => __('Full Content','tour-travel-agent'),
     1664            'Excerpt Content' => __('Excerpt Content','tour-travel-agent'),
     1665        ),
     1666    ) );
     1667
     1668    $wp_customize->add_setting( 'tour_travel_agent_post_excerpt_length', array(
     1669        'default'              => 20,
     1670        'sanitize_callback' => 'absint'
     1671    ) );
     1672    $wp_customize->add_control( 'tour_travel_agent_post_excerpt_length', array(
     1673        'label' => esc_html__( 'Post Excerpt Length','tour-travel-agent' ),
     1674        'section'  => 'tour_travel_agent_blog_post',
     1675        'type'  => 'number',
     1676        'settings' => 'tour_travel_agent_post_excerpt_length',
     1677        'input_attrs' => array(
     1678            'step'             => 1,
     1679            'min'              => 0,
     1680            'max'              => 50,
     1681        ),
     1682    ) );
     1683
     1684    $wp_customize->add_setting( 'tour_travel_agent_button_excerpt_suffix', array(
     1685        'default'   => __('[...]','tour-travel-agent' ),
     1686        'sanitize_callback' => 'sanitize_text_field'
     1687    ) );
     1688    $wp_customize->add_control( 'tour_travel_agent_button_excerpt_suffix', array(
     1689        'label'       => esc_html__( 'Excerpt Suffix','tour-travel-agent' ),
     1690        'section'     => 'tour_travel_agent_blog_post',
     1691        'type'        => 'text',
     1692        'settings' => 'tour_travel_agent_button_excerpt_suffix'
     1693    ) );
     1694
     1695    $wp_customize->add_setting( 'tour_travel_agent_post_blocks', array(
     1696        'default'           => 'Without box',
     1697        'sanitize_callback' => 'tour_travel_agent_sanitize_choices'
     1698    ));
     1699    $wp_customize->add_control( 'tour_travel_agent_post_blocks', array(
     1700        'section' => 'tour_travel_agent_blog_post',
     1701        'type' => 'select',
     1702        'label' => __( 'Post blocks', 'tour-travel-agent' ),
     1703        'choices' => array(
     1704            'Within box'  => __( 'Within box', 'tour-travel-agent' ),
     1705            'Without box' => __( 'Without box', 'tour-travel-agent' ),
     1706    )));
     1707
     1708    $wp_customize->add_setting('tour_travel_agent_navigation_hide',array(
     1709       'default' => true,
     1710       'sanitize_callback'  => 'tour_travel_agent_sanitize_checkbox'
     1711    ));
     1712    $wp_customize->add_control('tour_travel_agent_navigation_hide',array(
     1713       'type' => 'checkbox',
     1714       'label' => __('Enable / Disable Post Navigation','tour-travel-agent'),
     1715       'section' => 'tour_travel_agent_blog_post'
     1716    ));
     1717
     1718    $wp_customize->add_setting( 'tour_travel_agent_post_navigation_type', array(
     1719        'default'           => 'numbers',
     1720        'sanitize_callback' => 'tour_travel_agent_sanitize_choices'
     1721    ));
     1722    $wp_customize->add_control( 'tour_travel_agent_post_navigation_type', array(
     1723        'section' => 'tour_travel_agent_blog_post',
     1724        'type' => 'select',
     1725        'label' => __( 'Post Navigation Type', 'tour-travel-agent' ),
     1726        'choices' => array(
     1727            'numbers'  => __( 'Number', 'tour-travel-agent' ),
     1728            'next-prev' => __( 'Next/Prev Button', 'tour-travel-agent' ),
     1729    )));
     1730
     1731    $wp_customize->add_setting( 'tour_travel_agent_post_navigation_position', array(
     1732        'default'           => 'bottom',
     1733        'sanitize_callback' => 'tour_travel_agent_sanitize_choices'
     1734    ));
     1735    $wp_customize->add_control( 'tour_travel_agent_post_navigation_position', array(
     1736        'section' => 'tour_travel_agent_blog_post',
     1737        'type' => 'select',
     1738        'label' => __( 'Post Navigation Position', 'tour-travel-agent' ),
     1739        'choices' => array(
     1740            'top'  => __( 'Top', 'tour-travel-agent' ),
     1741            'bottom' => __( 'Bottom', 'tour-travel-agent' ),
     1742            'both' => __( 'Both', 'tour-travel-agent' ),
     1743    )));
     1744
     1745    $wp_customize->add_setting( 'tour_travel_agent_post_settings_premium_features',array(
     1746        'sanitize_callback' => 'sanitize_text_field'
     1747    ));
     1748    $wp_customize->add_control('tour_travel_agent_post_settings_premium_features', array(
     1749        'type'=> 'hidden',
     1750        'description' => "<h3>". esc_html('More Features in the Premium Version!','tour-travel-agent') ."</h3>
     1751            <ul>
     1752                <li>". esc_html('Section Heading Option','tour-travel-agent') ."</li>
     1753                <li>". esc_html('Animated Elements Colors','tour-travel-agent') ."</li>
     1754                <li>". esc_html('... and Other Premium Features','tour-travel-agent') ."</li>
     1755            </ul>
     1756            <a target='_blank' href='". esc_url('https://www.themescaliber.com/products/travel-agent-wordpress-theme') ." '>". esc_html('Upgrade Now','tour-travel-agent') ."</a>",
     1757        'section' => 'tour_travel_agent_blog_post'
     1758        )
     1759    );
     1760
    14361761    // Button Settings
    14371762    $wp_customize->add_section( 'tour_travel_agent_button_option', array(
    1438         'title' => __('Button Settings','tour-travel-agent'),
     1763        'title' => __('Post Button Settings','tour-travel-agent'),
    14391764        'panel' => 'tour_travel_agent_panel_id',
    14401765    ));
     
    15791904        ),
    15801905    ));
    1581    
    1582     //Blog Post
    1583     $wp_customize->add_section('tour_travel_agent_blog_post',array(
    1584         'title' => __('Post Settings','tour-travel-agent'),
    1585         'panel' => 'tour_travel_agent_panel_id',
    1586     ));
    1587 
    1588     $wp_customize->add_setting('tour_travel_agent_blog_post_alignment',array(
    1589         'default' => 'left',
    1590         'sanitize_callback' => 'tour_travel_agent_sanitize_choices'
    1591     ));
    1592     $wp_customize->add_control('tour_travel_agent_blog_post_alignment', array(
    1593         'type' => 'select',
    1594         'label' => __( 'Blog Post Alignment', 'tour-travel-agent' ),
    1595         'section' => 'tour_travel_agent_blog_post',
    1596         'choices' => array(
    1597             'left' => __('Left Align','tour-travel-agent'),
    1598             'right' => __('Right Align','tour-travel-agent'),
    1599             'center' => __('Center Align','tour-travel-agent')
    1600         ),
    1601     ));
    1602 
    1603     $wp_customize->add_setting('tour_travel_agent_date_hide',array(
    1604        'default' => true,
    1605        'sanitize_callback'  => 'tour_travel_agent_sanitize_checkbox'
    1606     ));
    1607     $wp_customize->add_control('tour_travel_agent_date_hide',array(
    1608        'type' => 'checkbox',
    1609        'label' => __('Enable / Disable Post Date','tour-travel-agent'),
    1610        'section' => 'tour_travel_agent_blog_post'
    1611     ));
    1612 
    1613     $wp_customize->add_setting('tour_travel_agent_postdate_icon',array(
    1614         'default'   => 'fas fa-calendar-alt',
    1615         'sanitize_callback' => 'sanitize_text_field'
    1616     ));
    1617     $wp_customize->add_control(new Tour_Travel_Agent_Icon_Changer(
    1618         $wp_customize,'tour_travel_agent_postdate_icon',array(
    1619         'label' => __('Add Post Date Icon','tour-travel-agent'),
    1620         'transport' => 'refresh',
    1621         'section'   => 'tour_travel_agent_blog_post',
    1622         'setting'   => 'tour_travel_agent_postdate_icon',
    1623         'type'      => 'icon'
    1624     )));
    1625 
    1626     $wp_customize->add_setting('tour_travel_agent_author_hide',array(
    1627        'default' => true,
    1628        'sanitize_callback'  => 'tour_travel_agent_sanitize_checkbox'
    1629     ));
    1630     $wp_customize->add_control('tour_travel_agent_author_hide',array(
    1631        'type' => 'checkbox',
    1632        'label' => __('Enable / Disable Post Author','tour-travel-agent'),
    1633        'section' => 'tour_travel_agent_blog_post'
    1634     ));
    1635 
    1636     $wp_customize->add_setting('tour_travel_agent_author_icon',array(
    1637         'default'   => 'fas fa-user',
    1638         'sanitize_callback' => 'sanitize_text_field'
    1639     ));
    1640     $wp_customize->add_control(new Tour_Travel_Agent_Icon_Changer(
    1641         $wp_customize,'tour_travel_agent_author_icon',array(
    1642         'label' => __('Add Post Author Icon','tour-travel-agent'),
    1643         'transport' => 'refresh',
    1644         'section'   => 'tour_travel_agent_blog_post',
    1645         'setting'   => 'tour_travel_agent_author_icon',
    1646         'type'      => 'icon'
    1647     )));
    1648 
    1649     $wp_customize->add_setting('tour_travel_agent_comment_hide',array(
    1650        'default' => true,
    1651        'sanitize_callback'  => 'tour_travel_agent_sanitize_checkbox'
    1652     ));
    1653     $wp_customize->add_control('tour_travel_agent_comment_hide',array(
    1654        'type' => 'checkbox',
    1655        'label' => __('Enable / Disable Post Comments','tour-travel-agent'),
    1656        'section' => 'tour_travel_agent_blog_post'
    1657     ));
    1658 
    1659     $wp_customize->add_setting('tour_travel_agent_comment_icon',array(
    1660         'default'   => 'fa fa-comments',
    1661         'sanitize_callback' => 'sanitize_text_field'
    1662     ));
    1663     $wp_customize->add_control(new Tour_Travel_Agent_Icon_Changer(
    1664         $wp_customize,'tour_travel_agent_comment_icon',array(
    1665         'label' => __('Add Post Comment Icon','tour-travel-agent'),
    1666         'transport' => 'refresh',
    1667         'section'   => 'tour_travel_agent_blog_post',
    1668         'setting'   => 'tour_travel_agent_comment_icon',
    1669         'type'      => 'icon'
    1670     )));
    1671 
    1672     $wp_customize->add_setting('tour_travel_agent_time_hide',array(
    1673        'default' => true,
    1674        'sanitize_callback'  => 'tour_travel_agent_sanitize_checkbox'
    1675     ));
    1676     $wp_customize->add_control('tour_travel_agent_time_hide',array(
    1677        'type' => 'checkbox',
    1678        'label' => __('Enable / Disable Post Time','tour-travel-agent'),
    1679        'section' => 'tour_travel_agent_blog_post'
    1680     ));
    1681 
    1682     $wp_customize->add_setting('tour_travel_agent_time_icon',array(
    1683         'default'   => 'fas fa-clock',
    1684         'sanitize_callback' => 'sanitize_text_field'
    1685     ));
    1686     $wp_customize->add_control(new Tour_Travel_Agent_Icon_Changer(
    1687         $wp_customize,'tour_travel_agent_time_icon',array(
    1688         'label' => __('Add Post Time Icon','tour-travel-agent'),
    1689         'transport' => 'refresh',
    1690         'section'   => 'tour_travel_agent_blog_post',
    1691         'setting'   => 'tour_travel_agent_time_icon',
    1692         'type'      => 'icon'
    1693     )));
    1694 
    1695     $wp_customize->add_setting('tour_travel_agent_show_hide_post_categories',array(
    1696        'default' => true,
    1697        'sanitize_callback'  => 'tour_travel_agent_sanitize_checkbox'
    1698     ));
    1699     $wp_customize->add_control('tour_travel_agent_show_hide_post_categories',array(
    1700        'type' => 'checkbox',
    1701        'label' => __('Enable / Disable post category','tour-travel-agent'),
    1702        'section' => 'tour_travel_agent_blog_post'
    1703     ));
    1704 
    1705     $wp_customize->add_setting('tour_travel_agent_feature_image_hide',array(
    1706        'default' => true,
    1707        'sanitize_callback'  => 'tour_travel_agent_sanitize_checkbox'
    1708     ));
    1709     $wp_customize->add_control('tour_travel_agent_feature_image_hide',array(
    1710        'type' => 'checkbox',
    1711        'label' => __('Enable / Disable Featured Image','tour-travel-agent'),
    1712        'section' => 'tour_travel_agent_blog_post'
    1713     ));
    1714 
    1715     $wp_customize->add_setting( 'tour_travel_agent_featured_image_border_radius', array(
    1716         'default' => 0,
    1717         'sanitize_callback' => 'tour_travel_agent_sanitize_float'
    1718     ) );
    1719     $wp_customize->add_control( 'tour_travel_agent_featured_image_border_radius', array(
    1720         'label' => __( 'Featured image border radius','tour-travel-agent' ),
    1721         'section' => 'tour_travel_agent_blog_post',
    1722         'type'  => 'number',
    1723         'input_attrs' => array(
    1724             'step' => 1,
    1725             'min'  => 0,
    1726             'max'  => 50,
    1727         ),
    1728     ) );
    1729 
    1730     $wp_customize->add_setting( 'tour_travel_agent_featured_image_box_shadow', array(
    1731         'default' => 0,
    1732         'sanitize_callback' => 'tour_travel_agent_sanitize_float'
    1733     ) );
    1734     $wp_customize->add_control( 'tour_travel_agent_featured_image_box_shadow', array(
    1735         'label' => __( 'Featured image box shadow','tour-travel-agent' ),
    1736         'section' => 'tour_travel_agent_blog_post',
    1737         'type'  => 'number',
    1738         'input_attrs' => array(
    1739             'step' => 1,
    1740             'min'  => 0,
    1741             'max'  => 50,
    1742         ),
    1743     ) );
    1744 
    1745     $wp_customize->add_setting('tour_travel_agent_metabox_seperator',array(
    1746        'default' => '|',
    1747        'sanitize_callback'  => 'sanitize_text_field'
    1748     ));
    1749     $wp_customize->add_control('tour_travel_agent_metabox_seperator',array(
    1750        'type' => 'text',
    1751        'label' => __('Metabox Seperator','tour-travel-agent'),
    1752        'description' => __('Ex: "/", "|", "-", ...','tour-travel-agent'),
    1753        'section' => 'tour_travel_agent_blog_post'
    1754     ));
    1755 
    1756     $wp_customize->add_setting('tour_travel_agent_post_content',array(
    1757         'default' => 'Excerpt Content',
    1758         'sanitize_callback' => 'tour_travel_agent_sanitize_choices'
    1759     ));
    1760     $wp_customize->add_control('tour_travel_agent_post_content',array(
    1761         'type' => 'radio',
    1762         'label' => __('Post Content Type','tour-travel-agent'),
    1763         'section' => 'tour_travel_agent_blog_post',
    1764         'choices' => array(
    1765             'No Content' => __('No Content','tour-travel-agent'),
    1766             'Full Content' => __('Full Content','tour-travel-agent'),
    1767             'Excerpt Content' => __('Excerpt Content','tour-travel-agent'),
    1768         ),
    1769     ) );
    1770 
    1771     $wp_customize->add_setting( 'tour_travel_agent_post_excerpt_length', array(
    1772         'default'              => 20,
    1773         'sanitize_callback' => 'absint'
    1774     ) );
    1775     $wp_customize->add_control( 'tour_travel_agent_post_excerpt_length', array(
    1776         'label' => esc_html__( 'Post Excerpt Length','tour-travel-agent' ),
    1777         'section'  => 'tour_travel_agent_blog_post',
    1778         'type'  => 'number',
    1779         'settings' => 'tour_travel_agent_post_excerpt_length',
    1780         'input_attrs' => array(
    1781             'step'             => 1,
    1782             'min'              => 0,
    1783             'max'              => 50,
    1784         ),
    1785     ) );
    1786 
    1787     $wp_customize->add_setting( 'tour_travel_agent_button_excerpt_suffix', array(
    1788         'default'   => __('[...]','tour-travel-agent' ),
    1789         'sanitize_callback' => 'sanitize_text_field'
    1790     ) );
    1791     $wp_customize->add_control( 'tour_travel_agent_button_excerpt_suffix', array(
    1792         'label'       => esc_html__( 'Excerpt Suffix','tour-travel-agent' ),
    1793         'section'     => 'tour_travel_agent_blog_post',
    1794         'type'        => 'text',
    1795         'settings' => 'tour_travel_agent_button_excerpt_suffix'
    1796     ) );
    1797 
    1798     $wp_customize->add_setting( 'tour_travel_agent_post_blocks', array(
    1799         'default'           => 'Without box',
    1800         'sanitize_callback' => 'tour_travel_agent_sanitize_choices'
    1801     ));
    1802     $wp_customize->add_control( 'tour_travel_agent_post_blocks', array(
    1803         'section' => 'tour_travel_agent_blog_post',
    1804         'type' => 'select',
    1805         'label' => __( 'Post blocks', 'tour-travel-agent' ),
    1806         'choices' => array(
    1807             'Within box'  => __( 'Within box', 'tour-travel-agent' ),
    1808             'Without box' => __( 'Without box', 'tour-travel-agent' ),
    1809     )));
    1810 
    1811     $wp_customize->add_setting('tour_travel_agent_navigation_hide',array(
    1812        'default' => true,
    1813        'sanitize_callback'  => 'tour_travel_agent_sanitize_checkbox'
    1814     ));
    1815     $wp_customize->add_control('tour_travel_agent_navigation_hide',array(
    1816        'type' => 'checkbox',
    1817        'label' => __('Enable / Disable Post Navigation','tour-travel-agent'),
    1818        'section' => 'tour_travel_agent_blog_post'
    1819     ));
    1820 
    1821     $wp_customize->add_setting( 'tour_travel_agent_post_navigation_type', array(
    1822         'default'           => 'numbers',
    1823         'sanitize_callback' => 'tour_travel_agent_sanitize_choices'
    1824     ));
    1825     $wp_customize->add_control( 'tour_travel_agent_post_navigation_type', array(
    1826         'section' => 'tour_travel_agent_blog_post',
    1827         'type' => 'select',
    1828         'label' => __( 'Post Navigation Type', 'tour-travel-agent' ),
    1829         'choices' => array(
    1830             'numbers'  => __( 'Number', 'tour-travel-agent' ),
    1831             'next-prev' => __( 'Next/Prev Button', 'tour-travel-agent' ),
    1832     )));
    1833 
    1834     $wp_customize->add_setting( 'tour_travel_agent_post_navigation_position', array(
    1835         'default'           => 'bottom',
    1836         'sanitize_callback' => 'tour_travel_agent_sanitize_choices'
    1837     ));
    1838     $wp_customize->add_control( 'tour_travel_agent_post_navigation_position', array(
    1839         'section' => 'tour_travel_agent_blog_post',
    1840         'type' => 'select',
    1841         'label' => __( 'Post Navigation Position', 'tour-travel-agent' ),
    1842         'choices' => array(
    1843             'top'  => __( 'Top', 'tour-travel-agent' ),
    1844             'bottom' => __( 'Bottom', 'tour-travel-agent' ),
    1845             'both' => __( 'Both', 'tour-travel-agent' ),
    1846     )));
    1847 
    1848     $wp_customize->add_setting( 'tour_travel_agent_post_settings_premium_features',array(
    1849         'sanitize_callback' => 'sanitize_text_field'
    1850     ));
    1851     $wp_customize->add_control('tour_travel_agent_post_settings_premium_features', array(
    1852         'type'=> 'hidden',
    1853         'description' => "<h3>". esc_html('More Features in the Premium Version!','tour-travel-agent') ."</h3>
    1854             <ul>
    1855                 <li>". esc_html('Section Heading Option','tour-travel-agent') ."</li>
    1856                 <li>". esc_html('Animated Elements Colors','tour-travel-agent') ."</li>
    1857                 <li>". esc_html('... and Other Premium Features','tour-travel-agent') ."</li>
    1858             </ul>
    1859             <a target='_blank' href='". esc_url('https://www.themescaliber.com/products/travel-agent-wordpress-theme') ." '>". esc_html('Upgrade Now','tour-travel-agent') ."</a>",
    1860         'section' => 'tour_travel_agent_blog_post'
    1861         )
    1862     );
    18631906
    18641907    //Single Post Settings
  • tour-travel-agent/0.5.4/languages/tour-travel-agent.pot

    r257422 r259900  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Tour Travel Agent 0.5.3\n"
     5"Project-Id-Version: Tour Travel Agent 0.5.4\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: 2025-01-25T15:30:15+05:30\n"
     12"POT-Creation-Date: 2025-02-08T15:06:47+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:2089
     73#: inc/customizer.php:2132
    7474msgid "Leave a Reply"
    7575msgstr ""
    7676
    7777#: comments.php:65
    78 #: inc/customizer.php:2099
     78#: inc/customizer.php:2142
    7979msgid "Post Comment"
    8080msgstr ""
     
    222222msgstr ""
    223223
    224 #: functions.php:567
     224#: functions.php:574
    225225msgid "Previous page"
    226226msgstr ""
    227227
    228 #: functions.php:568
     228#: functions.php:575
    229229msgid "Next page"
    230230msgstr ""
    231231
    232 #: functions.php:569
     232#: functions.php:576
    233233#: template-parts/single-post.php:54
    234234msgid "Page"
     
    240240
    241241#: header.php:122
    242 #: inc/customizer.php:2801
     242#: inc/customizer.php:2844
    243243msgid "Open Menu"
    244244msgstr ""
     
    249249
    250250#: header.php:135
    251 #: inc/customizer.php:2832
     251#: inc/customizer.php:2875
    252252msgid "Close Menu"
    253253msgstr ""
     
    366366#: inc/customizer.php:706
    367367#: inc/customizer.php:1135
    368 #: inc/customizer.php:1538
    369 #: inc/customizer.php:2490
     368#: inc/customizer.php:1863
     369#: inc/customizer.php:2533
    370370msgid "100"
    371371msgstr ""
     
    380380#: inc/customizer.php:707
    381381#: inc/customizer.php:1136
    382 #: inc/customizer.php:1539
    383 #: inc/customizer.php:2491
     382#: inc/customizer.php:1864
     383#: inc/customizer.php:2534
    384384msgid "200"
    385385msgstr ""
     
    394394#: inc/customizer.php:708
    395395#: inc/customizer.php:1137
    396 #: inc/customizer.php:1540
    397 #: inc/customizer.php:2492
     396#: inc/customizer.php:1865
     397#: inc/customizer.php:2535
    398398msgid "300"
    399399msgstr ""
     
    408408#: inc/customizer.php:709
    409409#: inc/customizer.php:1138
    410 #: inc/customizer.php:1541
    411 #: inc/customizer.php:2493
     410#: inc/customizer.php:1866
     411#: inc/customizer.php:2536
    412412msgid "400"
    413413msgstr ""
     
    422422#: inc/customizer.php:710
    423423#: inc/customizer.php:1139
    424 #: inc/customizer.php:1542
    425 #: inc/customizer.php:2494
     424#: inc/customizer.php:1867
     425#: inc/customizer.php:2537
    426426msgid "500"
    427427msgstr ""
     
    436436#: inc/customizer.php:711
    437437#: inc/customizer.php:1140
    438 #: inc/customizer.php:1543
    439 #: inc/customizer.php:2495
     438#: inc/customizer.php:1868
     439#: inc/customizer.php:2538
    440440msgid "600"
    441441msgstr ""
     
    450450#: inc/customizer.php:712
    451451#: inc/customizer.php:1141
    452 #: inc/customizer.php:1544
    453 #: inc/customizer.php:2496
     452#: inc/customizer.php:1869
     453#: inc/customizer.php:2539
    454454msgid "700"
    455455msgstr ""
     
    464464#: inc/customizer.php:713
    465465#: inc/customizer.php:1142
    466 #: inc/customizer.php:1545
    467 #: inc/customizer.php:2497
     466#: inc/customizer.php:1870
     467#: inc/customizer.php:2540
    468468msgid "800"
    469469msgstr ""
     
    478478#: inc/customizer.php:714
    479479#: inc/customizer.php:1143
    480 #: inc/customizer.php:1546
    481 #: inc/customizer.php:2498
     480#: inc/customizer.php:1871
     481#: inc/customizer.php:2541
    482482msgid "900"
    483483msgstr ""
     
    642642#: inc/customizer.php:769
    643643#: inc/customizer.php:784
    644 #: inc/customizer.php:2964
    645 #: inc/customizer.php:2989
     644#: inc/customizer.php:3007
     645#: inc/customizer.php:3032
    646646msgid "Left Sidebar"
    647647msgstr ""
     
    650650#: inc/customizer.php:770
    651651#: inc/customizer.php:785
    652 #: inc/customizer.php:2965
    653 #: inc/customizer.php:2990
     652#: inc/customizer.php:3008
     653#: inc/customizer.php:3033
    654654msgid "Right Sidebar"
    655655msgstr ""
     
    686686
    687687#: inc/customizer.php:807
    688 #: inc/customizer.php:2887
     688#: inc/customizer.php:2930
    689689msgid "Show / Hide Preloader"
    690690msgstr ""
     
    747747
    748748#: inc/customizer.php:954
    749 #: inc/customizer.php:2664
     749#: inc/customizer.php:2707
    750750msgid "Add Facebook Icon"
    751751msgstr ""
     
    756756
    757757#: inc/customizer.php:977
    758 #: inc/customizer.php:2688
     758#: inc/customizer.php:2731
    759759msgid "Add Twitter Icon"
    760760msgstr ""
    761761
    762762#: inc/customizer.php:989
    763 #: inc/customizer.php:2700
     763#: inc/customizer.php:2743
    764764msgid "Add Linkedin URL"
    765765msgstr ""
    766766
    767767#: inc/customizer.php:1000
    768 #: inc/customizer.php:2711
     768#: inc/customizer.php:2754
    769769msgid "Add Linkedin Icon"
    770770msgstr ""
     
    775775
    776776#: inc/customizer.php:1023
    777 #: inc/customizer.php:2735
     777#: inc/customizer.php:2778
    778778msgid "Add Instagram Icon"
    779779msgstr ""
    780780
    781781#: inc/customizer.php:1035
    782 #: inc/customizer.php:2747
     782#: inc/customizer.php:2790
    783783msgid "Icon Font Size"
    784784msgstr ""
     
    809809
    810810#: inc/customizer.php:1106
    811 #: inc/customizer.php:1477
    812 #: inc/customizer.php:2367
    813 #: inc/customizer.php:2465
     811#: inc/customizer.php:1802
     812#: inc/customizer.php:2410
     813#: inc/customizer.php:2508
    814814msgid "Uppercase"
    815815msgstr ""
    816816
    817817#: inc/customizer.php:1107
    818 #: inc/customizer.php:1478
    819 #: inc/customizer.php:2368
    820 #: inc/customizer.php:2466
     818#: inc/customizer.php:1803
     819#: inc/customizer.php:2411
     820#: inc/customizer.php:2509
    821821msgid "Capitalize"
    822822msgstr ""
     
    927927
    928928#: inc/customizer.php:1438
    929 msgid "Button Settings"
    930 msgstr ""
    931 
    932 #: inc/customizer.php:1443
     929msgid "Post Settings"
     930msgstr ""
     931
     932#: inc/customizer.php:1448
     933msgid "Blog Post Alignment"
     934msgstr ""
     935
     936#: inc/customizer.php:1451
     937msgid "Left Align"
     938msgstr ""
     939
     940#: inc/customizer.php:1452
     941msgid "Right Align"
     942msgstr ""
     943
     944#: inc/customizer.php:1453
     945msgid "Center Align"
     946msgstr ""
     947
     948#: inc/customizer.php:1463
     949msgid "Enable / Disable Post Date"
     950msgstr ""
     951
     952#: inc/customizer.php:1473
     953msgid "Add Post Date Icon"
     954msgstr ""
     955
     956#: inc/customizer.php:1486
     957msgid "Enable / Disable Post Author"
     958msgstr ""
     959
     960#: inc/customizer.php:1496
     961msgid "Add Post Author Icon"
     962msgstr ""
     963
     964#: inc/customizer.php:1509
     965msgid "Enable / Disable Post Comments"
     966msgstr ""
     967
     968#: inc/customizer.php:1519
     969msgid "Add Post Comment Icon"
     970msgstr ""
     971
     972#: inc/customizer.php:1532
     973msgid "Enable / Disable Post Time"
     974msgstr ""
     975
     976#: inc/customizer.php:1542
     977msgid "Add Post Time Icon"
     978msgstr ""
     979
     980#: inc/customizer.php:1555
     981msgid "Enable / Disable post category"
     982msgstr ""
     983
     984#: inc/customizer.php:1565
     985msgid "Enable / Disable Featured Image"
     986msgstr ""
     987
     988#: inc/customizer.php:1574
     989msgid "Featured image border radius"
     990msgstr ""
     991
     992#: inc/customizer.php:1589
     993msgid "Featured image box shadow"
     994msgstr ""
     995
     996#: inc/customizer.php:1606
     997msgid "Featured Image Dimension"
     998msgstr ""
     999
     1000#: inc/customizer.php:1609
     1001msgid "Default"
     1002msgstr ""
     1003
     1004#: inc/customizer.php:1610
     1005msgid "Custom Image Size"
     1006msgstr ""
     1007
     1008#: inc/customizer.php:1619
     1009msgid "Featured Image Custom Width"
     1010msgstr ""
     1011
     1012#: inc/customizer.php:1620
     1013#: inc/customizer.php:1634
     1014msgid "Enter a value in pixels. Example:20px"
     1015msgstr ""
     1016
     1017#: inc/customizer.php:1622
     1018#: inc/customizer.php:1636
     1019msgid "10px"
     1020msgstr ""
     1021
     1022#: inc/customizer.php:1633
     1023msgid "Featured Image Custom Height"
     1024msgstr ""
     1025
     1026#: inc/customizer.php:1648
     1027#: inc/customizer.php:2062
     1028msgid "Metabox Seperator"
     1029msgstr ""
     1030
     1031#: inc/customizer.php:1649
     1032#: inc/customizer.php:2063
     1033msgid "Ex: \"/\", \"|\", \"-\", ..."
     1034msgstr ""
     1035
     1036#: inc/customizer.php:1659
     1037msgid "Post Content Type"
     1038msgstr ""
     1039
     1040#: inc/customizer.php:1662
     1041msgid "No Content"
     1042msgstr ""
     1043
     1044#: inc/customizer.php:1663
     1045msgid "Full Content"
     1046msgstr ""
     1047
     1048#: inc/customizer.php:1664
     1049msgid "Excerpt Content"
     1050msgstr ""
     1051
     1052#: inc/customizer.php:1673
     1053msgid "Post Excerpt Length"
     1054msgstr ""
     1055
     1056#: inc/customizer.php:1685
     1057msgid "[...]"
     1058msgstr ""
     1059
     1060#: inc/customizer.php:1689
     1061msgid "Excerpt Suffix"
     1062msgstr ""
     1063
     1064#: inc/customizer.php:1702
     1065msgid "Post blocks"
     1066msgstr ""
     1067
     1068#: inc/customizer.php:1704
     1069msgid "Within box"
     1070msgstr ""
     1071
     1072#: inc/customizer.php:1705
     1073msgid "Without box"
     1074msgstr ""
     1075
     1076#: inc/customizer.php:1714
     1077msgid "Enable / Disable Post Navigation"
     1078msgstr ""
     1079
     1080#: inc/customizer.php:1725
     1081msgid "Post Navigation Type"
     1082msgstr ""
     1083
     1084#: inc/customizer.php:1727
     1085msgid "Number"
     1086msgstr ""
     1087
     1088#: inc/customizer.php:1728
     1089msgid "Next/Prev Button"
     1090msgstr ""
     1091
     1092#: inc/customizer.php:1738
     1093msgid "Post Navigation Position"
     1094msgstr ""
     1095
     1096#: inc/customizer.php:1740
     1097#: inc/customizer.php:2456
     1098msgid "Top"
     1099msgstr ""
     1100
     1101#: inc/customizer.php:1741
     1102#: inc/customizer.php:2462
     1103msgid "Bottom"
     1104msgstr ""
     1105
     1106#: inc/customizer.php:1742
     1107msgid "Both"
     1108msgstr ""
     1109
     1110#: inc/customizer.php:1763
     1111msgid "Post Button Settings"
     1112msgstr ""
     1113
     1114#: inc/customizer.php:1768
    9331115#: template-parts/content.php:52
    9341116#: template-parts/grid-layout.php:28
     
    9371119msgstr ""
    9381120
    939 #: inc/customizer.php:1447
     1121#: inc/customizer.php:1772
    9401122msgid "Post Button Text"
    9411123msgstr ""
    9421124
    943 #: inc/customizer.php:1458
     1125#: inc/customizer.php:1783
    9441126msgid "Button Font Size"
    9451127msgstr ""
    9461128
    947 #: inc/customizer.php:1475
     1129#: inc/customizer.php:1800
    9481130msgid "Button Text Transform"
    9491131msgstr ""
    9501132
    951 #: inc/customizer.php:1479
    952 #: inc/customizer.php:2369
    953 #: inc/customizer.php:2467
     1133#: inc/customizer.php:1804
     1134#: inc/customizer.php:2412
     1135#: inc/customizer.php:2510
    9541136msgid "Lowercase"
    9551137msgstr ""
    9561138
    957 #: inc/customizer.php:1489
     1139#: inc/customizer.php:1814
    9581140msgid "Top Bottom Button Padding"
    9591141msgstr ""
    9601142
    961 #: inc/customizer.php:1504
     1143#: inc/customizer.php:1829
    9621144msgid "Left Right Button Padding"
    9631145msgstr ""
    9641146
    965 #: inc/customizer.php:1519
    966 #: inc/customizer.php:3049
     1147#: inc/customizer.php:1844
     1148#: inc/customizer.php:3092
    9671149msgid "Button Border Radius"
    9681150msgstr ""
    9691151
    970 #: inc/customizer.php:1534
     1152#: inc/customizer.php:1859
    9711153msgid "Button Font Weight"
    9721154msgstr ""
    9731155
    974 #: inc/customizer.php:1556
     1156#: inc/customizer.php:1881
    9751157msgid "Button Letter Spacing"
    9761158msgstr ""
    9771159
    978 #: inc/customizer.php:1572
     1160#: inc/customizer.php:1897
    9791161msgid "Button Shape"
    9801162msgstr ""
    9811163
    982 #: inc/customizer.php:1576
     1164#: inc/customizer.php:1901
    9831165msgid "Square"
    9841166msgstr ""
    9851167
    986 #: inc/customizer.php:1577
     1168#: inc/customizer.php:1902
    9871169msgid "Round"
    9881170msgstr ""
    9891171
    990 #: inc/customizer.php:1578
     1172#: inc/customizer.php:1903
    9911173msgid "Pill"
    9921174msgstr ""
    9931175
    994 #: inc/customizer.php:1584
    995 msgid "Post Settings"
    996 msgstr ""
    997 
    998 #: inc/customizer.php:1594
    999 msgid "Blog Post Alignment"
    1000 msgstr ""
    1001 
    1002 #: inc/customizer.php:1597
    1003 msgid "Left Align"
    1004 msgstr ""
    1005 
    1006 #: inc/customizer.php:1598
    1007 msgid "Right Align"
    1008 msgstr ""
    1009 
    1010 #: inc/customizer.php:1599
    1011 msgid "Center Align"
    1012 msgstr ""
    1013 
    1014 #: inc/customizer.php:1609
    1015 msgid "Enable / Disable Post Date"
    1016 msgstr ""
    1017 
    1018 #: inc/customizer.php:1619
    1019 msgid "Add Post Date Icon"
    1020 msgstr ""
    1021 
    1022 #: inc/customizer.php:1632
    1023 msgid "Enable / Disable Post Author"
    1024 msgstr ""
    1025 
    1026 #: inc/customizer.php:1642
    1027 msgid "Add Post Author Icon"
    1028 msgstr ""
    1029 
    1030 #: inc/customizer.php:1655
    1031 msgid "Enable / Disable Post Comments"
    1032 msgstr ""
    1033 
    1034 #: inc/customizer.php:1665
    1035 msgid "Add Post Comment Icon"
    1036 msgstr ""
    1037 
    1038 #: inc/customizer.php:1678
    1039 msgid "Enable / Disable Post Time"
    1040 msgstr ""
    1041 
    1042 #: inc/customizer.php:1688
    1043 msgid "Add Post Time Icon"
    1044 msgstr ""
    1045 
    1046 #: inc/customizer.php:1701
    1047 msgid "Enable / Disable post category"
    1048 msgstr ""
    1049 
    1050 #: inc/customizer.php:1711
    1051 msgid "Enable / Disable Featured Image"
    1052 msgstr ""
    1053 
    1054 #: inc/customizer.php:1720
    1055 msgid "Featured image border radius"
    1056 msgstr ""
    1057 
    1058 #: inc/customizer.php:1735
    1059 msgid "Featured image box shadow"
    1060 msgstr ""
    1061 
    1062 #: inc/customizer.php:1751
    1063 #: inc/customizer.php:2019
    1064 msgid "Metabox Seperator"
    1065 msgstr ""
    1066 
    1067 #: inc/customizer.php:1752
    1068 #: inc/customizer.php:2020
    1069 msgid "Ex: \"/\", \"|\", \"-\", ..."
    1070 msgstr ""
    1071 
    1072 #: inc/customizer.php:1762
    1073 msgid "Post Content Type"
    1074 msgstr ""
    1075 
    1076 #: inc/customizer.php:1765
    1077 msgid "No Content"
    1078 msgstr ""
    1079 
    1080 #: inc/customizer.php:1766
    1081 msgid "Full Content"
    1082 msgstr ""
    1083 
    1084 #: inc/customizer.php:1767
    1085 msgid "Excerpt Content"
    1086 msgstr ""
    1087 
    1088 #: inc/customizer.php:1776
    1089 msgid "Post Excerpt Length"
    1090 msgstr ""
    1091 
    1092 #: inc/customizer.php:1788
    1093 msgid "[...]"
    1094 msgstr ""
    1095 
    1096 #: inc/customizer.php:1792
    1097 msgid "Excerpt Suffix"
    1098 msgstr ""
    1099 
    1100 #: inc/customizer.php:1805
    1101 msgid "Post blocks"
    1102 msgstr ""
    1103 
    1104 #: inc/customizer.php:1807
    1105 msgid "Within box"
    1106 msgstr ""
    1107 
    1108 #: inc/customizer.php:1808
    1109 msgid "Without box"
    1110 msgstr ""
    1111 
    1112 #: inc/customizer.php:1817
    1113 msgid "Enable / Disable Post Navigation"
    1114 msgstr ""
    1115 
    1116 #: inc/customizer.php:1828
    1117 msgid "Post Navigation Type"
    1118 msgstr ""
    1119 
    1120 #: inc/customizer.php:1830
    1121 msgid "Number"
    1122 msgstr ""
    1123 
    1124 #: inc/customizer.php:1831
    1125 msgid "Next/Prev Button"
    1126 msgstr ""
    1127 
    1128 #: inc/customizer.php:1841
    1129 msgid "Post Navigation Position"
    1130 msgstr ""
    1131 
    1132 #: inc/customizer.php:1843
    1133 #: inc/customizer.php:2413
    1134 msgid "Top"
    1135 msgstr ""
    1136 
    1137 #: inc/customizer.php:1844
    1138 #: inc/customizer.php:2419
    1139 msgid "Bottom"
    1140 msgstr ""
    1141 
    1142 #: inc/customizer.php:1845
    1143 msgid "Both"
    1144 msgstr ""
    1145 
    1146 #: inc/customizer.php:1866
     1176#: inc/customizer.php:1909
    11471177msgid "Single Post Settings"
    11481178msgstr ""
    11491179
    1150 #: inc/customizer.php:1877
     1180#: inc/customizer.php:1920
    11511181msgid "Show / Hide Single Post Breadcrumb"
    11521182msgstr ""
    11531183
    1154 #: inc/customizer.php:1887
     1184#: inc/customizer.php:1930
    11551185msgid "Show / Hide Single Post Date"
    11561186msgstr ""
    11571187
    1158 #: inc/customizer.php:1897
     1188#: inc/customizer.php:1940
    11591189msgid "Add Sigle Post Date Icon"
    11601190msgstr ""
    11611191
    1162 #: inc/customizer.php:1910
     1192#: inc/customizer.php:1953
    11631193msgid "Show / Hide Single Post Author"
    11641194msgstr ""
    11651195
    1166 #: inc/customizer.php:1920
     1196#: inc/customizer.php:1963
    11671197msgid "Add Sigle Post Author Icon"
    11681198msgstr ""
    11691199
    1170 #: inc/customizer.php:1933
     1200#: inc/customizer.php:1976
    11711201msgid "Show / Hide Single Post Comment Number"
    11721202msgstr ""
    11731203
    1174 #: inc/customizer.php:1943
     1204#: inc/customizer.php:1986
    11751205msgid "Add Sigle Post Comment Icon"
    11761206msgstr ""
    11771207
    1178 #: inc/customizer.php:1956
     1208#: inc/customizer.php:1999
    11791209msgid "Show / Hide Single Post Time"
    11801210msgstr ""
    11811211
    1182 #: inc/customizer.php:1966
     1212#: inc/customizer.php:2009
    11831213msgid "Add Sigle Post Time Icon"
    11841214msgstr ""
    11851215
    1186 #: inc/customizer.php:1979
     1216#: inc/customizer.php:2022
    11871217msgid "Show / Hide Single Post Feature Image"
    11881218msgstr ""
    11891219
    1190 #: inc/customizer.php:1988
     1220#: inc/customizer.php:2031
    11911221msgid "Single Post Image Border Radius"
    11921222msgstr ""
    11931223
    1194 #: inc/customizer.php:2003
     1224#: inc/customizer.php:2046
    11951225msgid "Single Post Image Shadow"
    11961226msgstr ""
    11971227
    1198 #: inc/customizer.php:2030
     1228#: inc/customizer.php:2073
    11991229msgid "Show / Hide Single Post Categories"
    12001230msgstr ""
    12011231
    1202 #: inc/customizer.php:2039
     1232#: inc/customizer.php:2082
    12031233msgid "Category Color"
    12041234msgstr ""
    12051235
    1206 #: inc/customizer.php:2048
     1236#: inc/customizer.php:2091
    12071237msgid "Category Background Color"
    12081238msgstr ""
    12091239
    1210 #: inc/customizer.php:2058
     1240#: inc/customizer.php:2101
    12111241msgid "Show / Hide Single Post Tags"
    12121242msgstr ""
    12131243
    1214 #: inc/customizer.php:2068
     1244#: inc/customizer.php:2111
    12151245msgid "Show / Hide Single Post Comment"
    12161246msgstr ""
    12171247
    1218 #: inc/customizer.php:2077
     1248#: inc/customizer.php:2120
    12191249msgid "Comment Textarea Width"
    12201250msgstr ""
    12211251
    1222 #: inc/customizer.php:2094
     1252#: inc/customizer.php:2137
    12231253msgid "Comment form Title"
    12241254msgstr ""
    12251255
    1226 #: inc/customizer.php:2104
     1256#: inc/customizer.php:2147
    12271257msgid "Comment Button Text"
    12281258msgstr ""
    12291259
    1230 #: inc/customizer.php:2114
     1260#: inc/customizer.php:2157
    12311261msgid "Enable / Disable Nav Links"
    12321262msgstr ""
    12331263
    1234 #: inc/customizer.php:2124
     1264#: inc/customizer.php:2167
    12351265msgid "Previous Navigation Text"
    12361266msgstr ""
    12371267
    1238 #: inc/customizer.php:2134
     1268#: inc/customizer.php:2177
    12391269msgid "Next Navigation Text"
    12401270msgstr ""
    12411271
    1242 #: inc/customizer.php:2144
     1272#: inc/customizer.php:2187
    12431273msgid "Enable / Disable Related Posts"
    12441274msgstr ""
    12451275
    1246 #: inc/customizer.php:2154
     1276#: inc/customizer.php:2197
    12471277msgid "Related Posts Title"
    12481278msgstr ""
    12491279
    1250 #: inc/customizer.php:2163
     1280#: inc/customizer.php:2206
    12511281msgid "Related Posts Count"
    12521282msgstr ""
    12531283
    1254 #: inc/customizer.php:2181
     1284#: inc/customizer.php:2224
    12551285msgid "Related Posts Order By"
    12561286msgstr ""
    12571287
    1258 #: inc/customizer.php:2183
     1288#: inc/customizer.php:2226
    12591289msgid "Categories"
    12601290msgstr ""
    12611291
    1262 #: inc/customizer.php:2184
     1292#: inc/customizer.php:2227
    12631293msgid "Tags"
    12641294msgstr ""
    12651295
    1266 #: inc/customizer.php:2192
     1296#: inc/customizer.php:2235
    12671297msgid "Related Posts Content Limit"
    12681298msgstr ""
    12691299
    1270 #: inc/customizer.php:2205
     1300#: inc/customizer.php:2248
    12711301msgid "404 & No Result Page Settings"
    12721302msgstr ""
    12731303
    1274 #: inc/customizer.php:2216
     1304#: inc/customizer.php:2259
    12751305msgid "404 Page Title"
    12761306msgstr ""
    12771307
    1278 #: inc/customizer.php:2226
     1308#: inc/customizer.php:2269
    12791309msgid "404 Page Text"
    12801310msgstr ""
    12811311
    1282 #: inc/customizer.php:2236
     1312#: inc/customizer.php:2279
    12831313msgid "404 Page Button Text"
    12841314msgstr ""
    12851315
    1286 #: inc/customizer.php:2246
     1316#: inc/customizer.php:2289
    12871317msgid "No Result Page Title"
    12881318msgstr ""
    12891319
    1290 #: inc/customizer.php:2256
     1320#: inc/customizer.php:2299
    12911321msgid "No Result Page Text"
    12921322msgstr ""
    12931323
    1294 #: inc/customizer.php:2266
     1324#: inc/customizer.php:2309
    12951325msgid "Show/Hide Search Form"
    12961326msgstr ""
    12971327
    1298 #: inc/customizer.php:2272
     1328#: inc/customizer.php:2315
    12991329msgid "Footer Section"
    13001330msgstr ""
    13011331
    1302 #: inc/customizer.php:2291
     1332#: inc/customizer.php:2334
    13031333msgid "Show/Hide Back to Top Button"
    13041334msgstr ""
    13051335
    1306 #: inc/customizer.php:2301
     1336#: inc/customizer.php:2344
    13071337msgid "Back to Top Icon"
    13081338msgstr ""
    13091339
    1310 #: inc/customizer.php:2311
     1340#: inc/customizer.php:2354
    13111341msgid "Back To Top Font Size"
    13121342msgstr ""
    13131343
    1314 #: inc/customizer.php:2321
     1344#: inc/customizer.php:2364
    13151345msgid "Back To Top Icon Color"
    13161346msgstr ""
    13171347
    1318 #: inc/customizer.php:2330
     1348#: inc/customizer.php:2373
    13191349msgid "Back To Top Icon Hover Color"
    13201350msgstr ""
    13211351
    1322 #: inc/customizer.php:2335
     1352#: inc/customizer.php:2378
    13231353msgid "Back To Top"
    13241354msgstr ""
    13251355
    1326 #: inc/customizer.php:2339
     1356#: inc/customizer.php:2382
    13271357msgid "Back to Top Button Text"
    13281358msgstr ""
    13291359
    1330 #: inc/customizer.php:2350
     1360#: inc/customizer.php:2393
    13311361msgid "Back to Top Button Alignment"
    13321362msgstr ""
    13331363
    1334 #: inc/customizer.php:2353
    1335 #: inc/customizer.php:2415
    1336 #: inc/customizer.php:2512
    1337 #: inc/customizer.php:2528
    1338 #: inc/customizer.php:2553
     1364#: inc/customizer.php:2396
     1365#: inc/customizer.php:2458
     1366#: inc/customizer.php:2555
     1367#: inc/customizer.php:2571
     1368#: inc/customizer.php:2596
     1369#: inc/customizer.php:2809
     1370#: inc/customizer.php:3181
     1371msgid "Left"
     1372msgstr ""
     1373
     1374#: inc/customizer.php:2397
     1375#: inc/customizer.php:2460
     1376#: inc/customizer.php:2557
     1377#: inc/customizer.php:2573
     1378#: inc/customizer.php:2597
     1379#: inc/customizer.php:2810
     1380#: inc/customizer.php:3182
     1381msgid "Right"
     1382msgstr ""
     1383
     1384#: inc/customizer.php:2398
     1385#: inc/customizer.php:2459
     1386#: inc/customizer.php:2556
     1387#: inc/customizer.php:2572
     1388#: inc/customizer.php:2598
     1389#: inc/customizer.php:2811
     1390msgid "Center"
     1391msgstr ""
     1392
     1393#: inc/customizer.php:2408
     1394msgid "Back to Top Text Transform"
     1395msgstr ""
     1396
     1397#: inc/customizer.php:2423
     1398msgid "Show / Hide Footer"
     1399msgstr ""
     1400
     1401#: inc/customizer.php:2432
     1402msgid "Footer Background Color"
     1403msgstr ""
     1404
     1405#: inc/customizer.php:2441
     1406msgid "Footer Background Image"
     1407msgstr ""
     1408
     1409#: inc/customizer.php:2452
     1410msgid "Footer Image Position"
     1411msgstr ""
     1412
     1413#: inc/customizer.php:2455
     1414msgid "Top Left"
     1415msgstr ""
     1416
     1417#: inc/customizer.php:2457
     1418msgid "Top Right"
     1419msgstr ""
     1420
     1421#: inc/customizer.php:2461
     1422msgid "Bottom Left"
     1423msgstr ""
     1424
     1425#: inc/customizer.php:2463
     1426msgid "Bottom Right"
     1427msgstr ""
     1428
     1429#: inc/customizer.php:2473
     1430msgid "Footer Background Attatchment"
     1431msgstr ""
     1432
     1433#: inc/customizer.php:2475
     1434msgid "fixed"
     1435msgstr ""
     1436
     1437#: inc/customizer.php:2476
     1438msgid "scroll"
     1439msgstr ""
     1440
     1441#: inc/customizer.php:2487
     1442msgid "Footer widget layout"
     1443msgstr ""
     1444
     1445#: inc/customizer.php:2489
     1446msgid "Select the number of widget areas you want in the footer. After that, go to Appearance > Widgets and add your widgets."
     1447msgstr ""
     1448
     1449#: inc/customizer.php:2491
     1450msgid "One"
     1451msgstr ""
     1452
     1453#: inc/customizer.php:2492
     1454msgid "Two"
     1455msgstr ""
     1456
     1457#: inc/customizer.php:2493
     1458msgid "Three"
     1459msgstr ""
     1460
     1461#: inc/customizer.php:2494
     1462msgid "Four"
     1463msgstr ""
     1464
     1465#: inc/customizer.php:2505
     1466msgid "Heading Text Transform"
     1467msgstr ""
     1468
     1469#: inc/customizer.php:2519
     1470msgid "Footer Widgets Heading Font Size"
     1471msgstr ""
     1472
     1473#: inc/customizer.php:2530
     1474msgid "Footer Widgets Heading Font Weight"
     1475msgstr ""
     1476
     1477#: inc/customizer.php:2552
     1478msgid "Footer Widget Heading Alignment"
     1479msgstr ""
     1480
     1481#: inc/customizer.php:2568
     1482msgid "Footer Widget Content Alignment"
     1483msgstr ""
     1484
     1485#: inc/customizer.php:2583
     1486msgid "Show / Hide Copyright"
     1487msgstr ""
     1488
     1489#: inc/customizer.php:2593
     1490msgid "Copyright Alignment"
     1491msgstr ""
     1492
     1493#: inc/customizer.php:2607
     1494msgid "Copyright Color"
     1495msgstr ""
     1496
     1497#: inc/customizer.php:2616
     1498msgid "Copyright Hover Color"
     1499msgstr ""
     1500
     1501#: inc/customizer.php:2625
     1502msgid "Copyright Font Size"
     1503msgstr ""
     1504
     1505#: inc/customizer.php:2635
     1506msgid "Copyright Top Bottom Padding"
     1507msgstr ""
     1508
     1509#: inc/customizer.php:2653
     1510msgid "Copyright Text"
     1511msgstr ""
     1512
     1513#: inc/customizer.php:2663
     1514msgid "Copyright Background Color"
     1515msgstr ""
     1516
     1517#: inc/customizer.php:2669
     1518msgid "Footer Social Icons"
     1519msgstr ""
     1520
     1521#: inc/customizer.php:2686
     1522msgid "Show/Hide Social Icons"
     1523msgstr ""
     1524
     1525#: inc/customizer.php:2695
     1526msgid "Add Facebook link"
     1527msgstr ""
     1528
     1529#: inc/customizer.php:2719
     1530msgid "Add Twitter link"
     1531msgstr ""
     1532
    13391533#: inc/customizer.php:2766
    1340 #: inc/customizer.php:3138
    1341 msgid "Left"
    1342 msgstr ""
    1343 
    1344 #: inc/customizer.php:2354
    1345 #: inc/customizer.php:2417
    1346 #: inc/customizer.php:2514
    1347 #: inc/customizer.php:2530
    1348 #: inc/customizer.php:2554
    1349 #: inc/customizer.php:2767
    1350 #: inc/customizer.php:3139
    1351 msgid "Right"
    1352 msgstr ""
    1353 
    1354 #: inc/customizer.php:2355
    1355 #: inc/customizer.php:2416
    1356 #: inc/customizer.php:2513
    1357 #: inc/customizer.php:2529
    1358 #: inc/customizer.php:2555
    1359 #: inc/customizer.php:2768
    1360 msgid "Center"
    1361 msgstr ""
    1362 
    1363 #: inc/customizer.php:2365
    1364 msgid "Back to Top Text Transform"
    1365 msgstr ""
    1366 
    1367 #: inc/customizer.php:2380
    1368 msgid "Show / Hide Footer"
    1369 msgstr ""
    1370 
    1371 #: inc/customizer.php:2389
    1372 msgid "Footer Background Color"
    1373 msgstr ""
    1374 
    1375 #: inc/customizer.php:2398
    1376 msgid "Footer Background Image"
    1377 msgstr ""
    1378 
    1379 #: inc/customizer.php:2409
    1380 msgid "Footer Image Position"
    1381 msgstr ""
    1382 
    1383 #: inc/customizer.php:2412
    1384 msgid "Top Left"
    1385 msgstr ""
    1386 
    1387 #: inc/customizer.php:2414
    1388 msgid "Top Right"
    1389 msgstr ""
    1390 
    1391 #: inc/customizer.php:2418
    1392 msgid "Bottom Left"
    1393 msgstr ""
    1394 
    1395 #: inc/customizer.php:2420
    1396 msgid "Bottom Right"
    1397 msgstr ""
    1398 
    1399 #: inc/customizer.php:2430
    1400 msgid "Footer Background Attatchment"
    1401 msgstr ""
    1402 
    1403 #: inc/customizer.php:2432
    1404 msgid "fixed"
    1405 msgstr ""
    1406 
    1407 #: inc/customizer.php:2433
    1408 msgid "scroll"
    1409 msgstr ""
    1410 
    1411 #: inc/customizer.php:2444
    1412 msgid "Footer widget layout"
    1413 msgstr ""
    1414 
    1415 #: inc/customizer.php:2446
    1416 msgid "Select the number of widget areas you want in the footer. After that, go to Appearance > Widgets and add your widgets."
    1417 msgstr ""
    1418 
    1419 #: inc/customizer.php:2448
    1420 msgid "One"
    1421 msgstr ""
    1422 
    1423 #: inc/customizer.php:2449
    1424 msgid "Two"
    1425 msgstr ""
    1426 
    1427 #: inc/customizer.php:2450
    1428 msgid "Three"
    1429 msgstr ""
    1430 
    1431 #: inc/customizer.php:2451
    1432 msgid "Four"
    1433 msgstr ""
    1434 
    1435 #: inc/customizer.php:2462
    1436 msgid "Heading Text Transform"
    1437 msgstr ""
    1438 
    1439 #: inc/customizer.php:2476
    1440 msgid "Footer Widgets Heading Font Size"
    1441 msgstr ""
    1442 
    1443 #: inc/customizer.php:2487
    1444 msgid "Footer Widgets Heading Font Weight"
    1445 msgstr ""
    1446 
    1447 #: inc/customizer.php:2509
    1448 msgid "Footer Widget Heading Alignment"
    1449 msgstr ""
    1450 
    1451 #: inc/customizer.php:2525
    1452 msgid "Footer Widget Content Alignment"
    1453 msgstr ""
    1454 
    1455 #: inc/customizer.php:2540
    1456 msgid "Show / Hide Copyright"
    1457 msgstr ""
    1458 
    1459 #: inc/customizer.php:2550
    1460 msgid "Copyright Alignment"
    1461 msgstr ""
    1462 
    1463 #: inc/customizer.php:2564
    1464 msgid "Copyright Color"
    1465 msgstr ""
    1466 
    1467 #: inc/customizer.php:2573
    1468 msgid "Copyright Hover Color"
    1469 msgstr ""
    1470 
    1471 #: inc/customizer.php:2582
    1472 msgid "Copyright Font Size"
    1473 msgstr ""
    1474 
    1475 #: inc/customizer.php:2592
    1476 msgid "Copyright Top Bottom Padding"
    1477 msgstr ""
    1478 
    1479 #: inc/customizer.php:2610
    1480 msgid "Copyright Text"
    1481 msgstr ""
    1482 
    1483 #: inc/customizer.php:2620
    1484 msgid "Copyright Background Color"
    1485 msgstr ""
    1486 
    1487 #: inc/customizer.php:2626
    1488 msgid "Footer Social Icons"
    1489 msgstr ""
    1490 
    1491 #: inc/customizer.php:2643
    1492 msgid "Show/Hide Social Icons"
    1493 msgstr ""
    1494 
    1495 #: inc/customizer.php:2652
    1496 msgid "Add Facebook link"
    1497 msgstr ""
    1498 
    1499 #: inc/customizer.php:2676
    1500 msgid "Add Twitter link"
    1501 msgstr ""
    1502 
    1503 #: inc/customizer.php:2723
    15041534msgid "Add Instagram link"
    15051535msgstr ""
    15061536
    1507 #: inc/customizer.php:2763
     1537#: inc/customizer.php:2806
    15081538msgid "Icon Alignment"
    15091539msgstr ""
    15101540
    1511 #: inc/customizer.php:2777
     1541#: inc/customizer.php:2820
    15121542msgid "Icon Color"
    15131543msgstr ""
    15141544
    1515 #: inc/customizer.php:2784
     1545#: inc/customizer.php:2827
    15161546msgid "Mobile Media Options"
    15171547msgstr ""
    15181548
    1519 #: inc/customizer.php:2795
     1549#: inc/customizer.php:2838
    15201550msgid "Open Menu Icon"
    15211551msgstr ""
    15221552
    1523 #: inc/customizer.php:2806
     1553#: inc/customizer.php:2849
    15241554msgid "Open Menu Label"
    15251555msgstr ""
    15261556
    1527 #: inc/customizer.php:2815
     1557#: inc/customizer.php:2858
    15281558msgid "Menu Icon Color Option"
    15291559msgstr ""
    15301560
    1531 #: inc/customizer.php:2826
     1561#: inc/customizer.php:2869
    15321562msgid "Close Menu Icon"
    15331563msgstr ""
    15341564
    1535 #: inc/customizer.php:2837
     1565#: inc/customizer.php:2880
    15361566msgid "Close Menu Label"
    15371567msgstr ""
    15381568
    1539 #: inc/customizer.php:2847
     1569#: inc/customizer.php:2890
    15401570msgid "Show / Hide Topbar"
    15411571msgstr ""
    15421572
    1543 #: inc/customizer.php:2857
     1573#: inc/customizer.php:2900
    15441574msgid "Show / Hide Slider"
    15451575msgstr ""
    15461576
    1547 #: inc/customizer.php:2867
     1577#: inc/customizer.php:2910
    15481578msgid "Show / Hide Sticky Header"
    15491579msgstr ""
    15501580
    1551 #: inc/customizer.php:2877
     1581#: inc/customizer.php:2920
    15521582msgid "Show / Hide Back to Top Button"
    15531583msgstr ""
    15541584
    1555 #: inc/customizer.php:2897
     1585#: inc/customizer.php:2940
    15561586msgid "Enable Sidebar"
    15571587msgstr ""
    15581588
    1559 #: inc/customizer.php:2906
     1589#: inc/customizer.php:2949
    15601590msgid "Toggle Button Bg Color"
    15611591msgstr ""
    15621592
    1563 #: inc/customizer.php:2912
     1593#: inc/customizer.php:2955
    15641594msgid "Additional WooCommerce Options"
    15651595msgstr ""
    15661596
    1567 #: inc/customizer.php:2924
     1597#: inc/customizer.php:2967
    15681598msgid "Product per row"
    15691599msgstr ""
    15701600
    1571 #: inc/customizer.php:2939
     1601#: inc/customizer.php:2982
    15721602msgid "Product per page"
    15731603msgstr ""
    15741604
    1575 #: inc/customizer.php:2950
     1605#: inc/customizer.php:2993
    15761606msgid "Enable / Disable Shop page sidebar"
    15771607msgstr ""
    15781608
    1579 #: inc/customizer.php:2961
     1609#: inc/customizer.php:3004
    15801610msgid "Shop Page layout"
    15811611msgstr ""
    15821612
    1583 #: inc/customizer.php:2975
     1613#: inc/customizer.php:3018
    15841614msgid "Enable / Disable Single Product Page Sidebar"
    15851615msgstr ""
    15861616
    1587 #: inc/customizer.php:2986
     1617#: inc/customizer.php:3029
    15881618msgid "Single product Page layout"
    15891619msgstr ""
    15901620
    1591 #: inc/customizer.php:3000
     1621#: inc/customizer.php:3043
    15921622msgid "Enable / Disable Shop page pagination"
    15931623msgstr ""
    15941624
    1595 #: inc/customizer.php:3010
     1625#: inc/customizer.php:3053
    15961626msgid "Enable / Disable Related product"
    15971627msgstr ""
    15981628
    1599 #: inc/customizer.php:3019
     1629#: inc/customizer.php:3062
    16001630msgid "Button Top Bottom Padding"
    16011631msgstr ""
    16021632
    1603 #: inc/customizer.php:3034
     1633#: inc/customizer.php:3077
    16041634msgid "Button Right Left Padding"
    16051635msgstr ""
    16061636
    1607 #: inc/customizer.php:3065
     1637#: inc/customizer.php:3108
    16081638msgid "Enable / Disable product border"
    16091639msgstr ""
    16101640
    1611 #: inc/customizer.php:3074
     1641#: inc/customizer.php:3117
    16121642msgid "Product Top Bottom Padding"
    16131643msgstr ""
    16141644
    1615 #: inc/customizer.php:3089
     1645#: inc/customizer.php:3132
    16161646msgid "Product Right Left Padding"
    16171647msgstr ""
    16181648
    1619 #: inc/customizer.php:3104
     1649#: inc/customizer.php:3147
    16201650msgid "Product Border Radius"
    16211651msgstr ""
    16221652
    1623 #: inc/customizer.php:3119
     1653#: inc/customizer.php:3162
    16241654msgid "Product Box Shadow"
    16251655msgstr ""
    16261656
    1627 #: inc/customizer.php:3135
     1657#: inc/customizer.php:3178
    16281658msgid "Sale badge Position"
    16291659msgstr ""
    16301660
    1631 #: inc/customizer.php:3148
     1661#: inc/customizer.php:3191
    16321662msgid "Sale Top Bottom Padding"
    16331663msgstr ""
    16341664
    1635 #: inc/customizer.php:3163
     1665#: inc/customizer.php:3206
    16361666msgid "Sale Right Left Padding"
    16371667msgstr ""
    16381668
    1639 #: inc/customizer.php:3178
     1669#: inc/customizer.php:3221
    16401670msgid "Sale Border Radius"
    16411671msgstr ""
    16421672
    1643 #: inc/customizer.php:3193
     1673#: inc/customizer.php:3236
    16441674msgid "Sale Font Size"
    16451675msgstr ""
    16461676
    1647 #: inc/customizer.php:3285
     1677#: inc/customizer.php:3328
    16481678msgid "Travel Pro Theme"
    16491679msgstr ""
    16501680
    1651 #: inc/customizer.php:3286
     1681#: inc/customizer.php:3329
    16521682#: inc/dashboard/getstart.php:52
    16531683msgid "Get Pro"
    16541684msgstr ""
    16551685
    1656 #: inc/customizer.php:3299
     1686#: inc/customizer.php:3342
    16571687msgid "Search Tour Section"
    16581688msgstr ""
    16591689
    1660 #: inc/customizer.php:3300
     1690#: inc/customizer.php:3343
    16611691msgid "About Section"
    16621692msgstr ""
    16631693
    1664 #: inc/customizer.php:3301
     1694#: inc/customizer.php:3344
    16651695msgid "Perfection Section"
    16661696msgstr ""
    16671697
    1668 #: inc/customizer.php:3302
     1698#: inc/customizer.php:3345
    16691699msgid "Most Popular Section"
    16701700msgstr ""
    16711701
    1672 #: inc/customizer.php:3303
     1702#: inc/customizer.php:3346
    16731703msgid "Top Destination Section"
    16741704msgstr ""
    16751705
    1676 #: inc/customizer.php:3304
     1706#: inc/customizer.php:3347
    16771707msgid "Tour Place Section"
    16781708msgstr ""
    16791709
    1680 #: inc/customizer.php:3305
     1710#: inc/customizer.php:3348
    16811711msgid "Exclusive Offer Section"
    16821712msgstr ""
    16831713
    1684 #: inc/customizer.php:3306
     1714#: inc/customizer.php:3349
    16851715msgid "Testimonials Section"
    16861716msgstr ""
    16871717
    1688 #: inc/customizer.php:3307
     1718#: inc/customizer.php:3350
    16891719msgid "Blog Section"
    16901720msgstr ""
    16911721
    1692 #: inc/customizer.php:3308
     1722#: inc/customizer.php:3351
    16931723msgid "Our Newsletter Section"
    16941724msgstr ""
    16951725
    1696 #: inc/customizer.php:3311
     1726#: inc/customizer.php:3354
    16971727msgid "View PRO version"
    16981728msgstr ""
  • tour-travel-agent/0.5.4/readme.txt

    r257422 r259900  
    55Tested up to: 6.7
    66Requires PHP: 7.2
    7 Stable tag: 0.5.3
     7Stable tag: 0.5.4
    88License: GNU General Public License v3.0
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    305305* Update POT file.
    306306
     307= 0.5.4 =
     308* Added featured image dimension option in blog post settings.
     309* Added css for address button my account page.
     310* Resolved error in footer widget responsive media.
     311* Resolved css error in single product page.
     312* Resolved css error in customizer.
     313* Update POT file.
     314
    307315== Resources ==
    308316
  • tour-travel-agent/0.5.4/style.css

    r257422 r259900  
    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.3
     7Version: 0.5.4
    88Requires at least: 5.0
    99Tested up to: 6.7
     
    10481048  margin-bottom: 5px;
    10491049}
     1050.woocommerce-account .addresses .title .edit{
     1051  text-decoration: none;
     1052  padding: 10px 28px;
     1053  float: left;
     1054  margin: 20px 0px 25px 0px;
     1055}
     1056.woocommerce div.product p.price{
     1057  margin: 10px 0px;
     1058}
    10501059.woocommerce #respond input#submit,
    10511060.woocommerce input.button,
     
    10691078}
    10701079a.added_to_cart.wc-forward {
    1071   padding: 5px 10px;
     1080  padding: 6px 15px;
    10721081  font-weight: 600;
    10731082  margin-top: 5px;
  • tour-travel-agent/0.5.4/tc-style.php

    r257422 r259900  
    388388        $tour_travel_agent_custom_css .='}';
    389389    }
     390
     391    // featured image dimention
     392    $tour_travel_agent_blog_post_featured_image_dimension = get_theme_mod('tour_travel_agent_blog_post_featured_image_dimension', 'default');
     393    $tour_travel_agent_blog_post_featured_image_custom_width = get_theme_mod('tour_travel_agent_blog_post_featured_image_custom_width',250);
     394    $tour_travel_agent_blog_post_featured_image_custom_height = get_theme_mod('tour_travel_agent_blog_post_featured_image_custom_height',250);
     395    if($tour_travel_agent_blog_post_featured_image_dimension == 'custom'){
     396        $tour_travel_agent_custom_css .='.post .services-box .blog-image img{';
     397            $tour_travel_agent_custom_css .='width: '.esc_attr($tour_travel_agent_blog_post_featured_image_custom_width).'!important; height: '.esc_attr($tour_travel_agent_blog_post_featured_image_custom_height).';';
     398        $tour_travel_agent_custom_css .='}';
     399    }
    390400
    391401    /*------Shop page pagination ---------*/
  • tour-travel-agent/0.5.4/template-parts/content.php

    r228821 r259900  
    1414    </div>
    1515    <?php if(has_post_thumbnail() && get_theme_mod( 'tour_travel_agent_feature_image_hide',true) != '') { ?>
    16       <div class="service-image my-3 ">
     16      <div class="service-image my-3 blog-image">
    1717        <a href="<?php echo esc_url( get_permalink() ); ?>">
    1818          <?php  the_post_thumbnail(); ?>
Note: See TracChangeset for help on using the changeset viewer.