Changeset 259900
- Timestamp:
- 02/15/2025 07:19:04 AM (9 months ago)
- Location:
- tour-travel-agent/0.5.4
- Files:
-
- 9 edited
- 1 copied
-
. (copied) (copied from tour-travel-agent/0.5.3)
-
css/customize-controls.css (modified) (1 diff)
-
footer.php (modified) (1 diff)
-
functions.php (modified) (1 diff)
-
inc/customizer.php (modified) (2 diffs)
-
languages/tour-travel-agent.pot (modified) (24 diffs)
-
readme.txt (modified) (2 diffs)
-
style.css (modified) (3 diffs)
-
tc-style.php (modified) (1 diff)
-
template-parts/content.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tour-travel-agent/0.5.4/css/customize-controls.css
r252038 r259900 254 254 display: none; 255 255 } 256 .accordion-section-title button.accordion-trigger:focus{ 257 box-shadow: none; 258 } -
tour-travel-agent/0.5.4/footer.php
r257422 r259900 12 12 $tour_travel_agent_widget_areas = get_theme_mod('tour_travel_agent_footer_widget_layout', '4'); 13 13 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'; 15 15 } 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'; 17 17 } elseif ($tour_travel_agent_widget_areas == '2') { 18 18 $tour_travel_agent_cols = 'col-lg-6 col-md-6'; -
tour-travel-agent/0.5.4/functions.php
r246448 r259900 548 548 } 549 549 550 function 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 550 557 function tour_travel_agent_sanitize_checkbox( $input ) { 551 558 // Boolean check -
tour-travel-agent/0.5.4/inc/customizer.php
r257422 r259900 1434 1434 ); 1435 1435 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 1436 1761 // Button Settings 1437 1762 $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'), 1439 1764 'panel' => 'tour_travel_agent_panel_id', 1440 1765 )); … … 1579 1904 ), 1580 1905 )); 1581 1582 //Blog Post1583 $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 );1863 1906 1864 1907 //Single Post Settings -
tour-travel-agent/0.5.4/languages/tour-travel-agent.pot
r257422 r259900 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Tour Travel Agent 0.5. 3\n"5 "Project-Id-Version: Tour Travel Agent 0.5.4\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/tour-travel-agent\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-0 1-25T15:30:15+05:30\n"12 "POT-Creation-Date: 2025-02-08T15:06:47+05:30\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.11.0\n" … … 71 71 72 72 #: comments.php:64 73 #: inc/customizer.php:2 08973 #: inc/customizer.php:2132 74 74 msgid "Leave a Reply" 75 75 msgstr "" 76 76 77 77 #: comments.php:65 78 #: inc/customizer.php:2 09978 #: inc/customizer.php:2142 79 79 msgid "Post Comment" 80 80 msgstr "" … … 222 222 msgstr "" 223 223 224 #: functions.php:5 67224 #: functions.php:574 225 225 msgid "Previous page" 226 226 msgstr "" 227 227 228 #: functions.php:5 68228 #: functions.php:575 229 229 msgid "Next page" 230 230 msgstr "" 231 231 232 #: functions.php:5 69232 #: functions.php:576 233 233 #: template-parts/single-post.php:54 234 234 msgid "Page" … … 240 240 241 241 #: header.php:122 242 #: inc/customizer.php:28 01242 #: inc/customizer.php:2844 243 243 msgid "Open Menu" 244 244 msgstr "" … … 249 249 250 250 #: header.php:135 251 #: inc/customizer.php:28 32251 #: inc/customizer.php:2875 252 252 msgid "Close Menu" 253 253 msgstr "" … … 366 366 #: inc/customizer.php:706 367 367 #: inc/customizer.php:1135 368 #: inc/customizer.php:1 538369 #: inc/customizer.php:2 490368 #: inc/customizer.php:1863 369 #: inc/customizer.php:2533 370 370 msgid "100" 371 371 msgstr "" … … 380 380 #: inc/customizer.php:707 381 381 #: inc/customizer.php:1136 382 #: inc/customizer.php:1 539383 #: inc/customizer.php:2 491382 #: inc/customizer.php:1864 383 #: inc/customizer.php:2534 384 384 msgid "200" 385 385 msgstr "" … … 394 394 #: inc/customizer.php:708 395 395 #: inc/customizer.php:1137 396 #: inc/customizer.php:1 540397 #: inc/customizer.php:2 492396 #: inc/customizer.php:1865 397 #: inc/customizer.php:2535 398 398 msgid "300" 399 399 msgstr "" … … 408 408 #: inc/customizer.php:709 409 409 #: inc/customizer.php:1138 410 #: inc/customizer.php:1 541411 #: inc/customizer.php:2 493410 #: inc/customizer.php:1866 411 #: inc/customizer.php:2536 412 412 msgid "400" 413 413 msgstr "" … … 422 422 #: inc/customizer.php:710 423 423 #: inc/customizer.php:1139 424 #: inc/customizer.php:1 542425 #: inc/customizer.php:2 494424 #: inc/customizer.php:1867 425 #: inc/customizer.php:2537 426 426 msgid "500" 427 427 msgstr "" … … 436 436 #: inc/customizer.php:711 437 437 #: inc/customizer.php:1140 438 #: inc/customizer.php:1 543439 #: inc/customizer.php:2 495438 #: inc/customizer.php:1868 439 #: inc/customizer.php:2538 440 440 msgid "600" 441 441 msgstr "" … … 450 450 #: inc/customizer.php:712 451 451 #: inc/customizer.php:1141 452 #: inc/customizer.php:1 544453 #: inc/customizer.php:2 496452 #: inc/customizer.php:1869 453 #: inc/customizer.php:2539 454 454 msgid "700" 455 455 msgstr "" … … 464 464 #: inc/customizer.php:713 465 465 #: inc/customizer.php:1142 466 #: inc/customizer.php:1 545467 #: inc/customizer.php:2 497466 #: inc/customizer.php:1870 467 #: inc/customizer.php:2540 468 468 msgid "800" 469 469 msgstr "" … … 478 478 #: inc/customizer.php:714 479 479 #: inc/customizer.php:1143 480 #: inc/customizer.php:1 546481 #: inc/customizer.php:2 498480 #: inc/customizer.php:1871 481 #: inc/customizer.php:2541 482 482 msgid "900" 483 483 msgstr "" … … 642 642 #: inc/customizer.php:769 643 643 #: inc/customizer.php:784 644 #: inc/customizer.php: 2964645 #: inc/customizer.php: 2989644 #: inc/customizer.php:3007 645 #: inc/customizer.php:3032 646 646 msgid "Left Sidebar" 647 647 msgstr "" … … 650 650 #: inc/customizer.php:770 651 651 #: inc/customizer.php:785 652 #: inc/customizer.php: 2965653 #: inc/customizer.php: 2990652 #: inc/customizer.php:3008 653 #: inc/customizer.php:3033 654 654 msgid "Right Sidebar" 655 655 msgstr "" … … 686 686 687 687 #: inc/customizer.php:807 688 #: inc/customizer.php:2 887688 #: inc/customizer.php:2930 689 689 msgid "Show / Hide Preloader" 690 690 msgstr "" … … 747 747 748 748 #: inc/customizer.php:954 749 #: inc/customizer.php:2 664749 #: inc/customizer.php:2707 750 750 msgid "Add Facebook Icon" 751 751 msgstr "" … … 756 756 757 757 #: inc/customizer.php:977 758 #: inc/customizer.php:2 688758 #: inc/customizer.php:2731 759 759 msgid "Add Twitter Icon" 760 760 msgstr "" 761 761 762 762 #: inc/customizer.php:989 763 #: inc/customizer.php:27 00763 #: inc/customizer.php:2743 764 764 msgid "Add Linkedin URL" 765 765 msgstr "" 766 766 767 767 #: inc/customizer.php:1000 768 #: inc/customizer.php:27 11768 #: inc/customizer.php:2754 769 769 msgid "Add Linkedin Icon" 770 770 msgstr "" … … 775 775 776 776 #: inc/customizer.php:1023 777 #: inc/customizer.php:27 35777 #: inc/customizer.php:2778 778 778 msgid "Add Instagram Icon" 779 779 msgstr "" 780 780 781 781 #: inc/customizer.php:1035 782 #: inc/customizer.php:27 47782 #: inc/customizer.php:2790 783 783 msgid "Icon Font Size" 784 784 msgstr "" … … 809 809 810 810 #: inc/customizer.php:1106 811 #: inc/customizer.php:1 477812 #: inc/customizer.php:2 367813 #: inc/customizer.php:2 465811 #: inc/customizer.php:1802 812 #: inc/customizer.php:2410 813 #: inc/customizer.php:2508 814 814 msgid "Uppercase" 815 815 msgstr "" 816 816 817 817 #: inc/customizer.php:1107 818 #: inc/customizer.php:1 478819 #: inc/customizer.php:2 368820 #: inc/customizer.php:2 466818 #: inc/customizer.php:1803 819 #: inc/customizer.php:2411 820 #: inc/customizer.php:2509 821 821 msgid "Capitalize" 822 822 msgstr "" … … 927 927 928 928 #: inc/customizer.php:1438 929 msgid "Button Settings" 930 msgstr "" 931 932 #: inc/customizer.php:1443 929 msgid "Post Settings" 930 msgstr "" 931 932 #: inc/customizer.php:1448 933 msgid "Blog Post Alignment" 934 msgstr "" 935 936 #: inc/customizer.php:1451 937 msgid "Left Align" 938 msgstr "" 939 940 #: inc/customizer.php:1452 941 msgid "Right Align" 942 msgstr "" 943 944 #: inc/customizer.php:1453 945 msgid "Center Align" 946 msgstr "" 947 948 #: inc/customizer.php:1463 949 msgid "Enable / Disable Post Date" 950 msgstr "" 951 952 #: inc/customizer.php:1473 953 msgid "Add Post Date Icon" 954 msgstr "" 955 956 #: inc/customizer.php:1486 957 msgid "Enable / Disable Post Author" 958 msgstr "" 959 960 #: inc/customizer.php:1496 961 msgid "Add Post Author Icon" 962 msgstr "" 963 964 #: inc/customizer.php:1509 965 msgid "Enable / Disable Post Comments" 966 msgstr "" 967 968 #: inc/customizer.php:1519 969 msgid "Add Post Comment Icon" 970 msgstr "" 971 972 #: inc/customizer.php:1532 973 msgid "Enable / Disable Post Time" 974 msgstr "" 975 976 #: inc/customizer.php:1542 977 msgid "Add Post Time Icon" 978 msgstr "" 979 980 #: inc/customizer.php:1555 981 msgid "Enable / Disable post category" 982 msgstr "" 983 984 #: inc/customizer.php:1565 985 msgid "Enable / Disable Featured Image" 986 msgstr "" 987 988 #: inc/customizer.php:1574 989 msgid "Featured image border radius" 990 msgstr "" 991 992 #: inc/customizer.php:1589 993 msgid "Featured image box shadow" 994 msgstr "" 995 996 #: inc/customizer.php:1606 997 msgid "Featured Image Dimension" 998 msgstr "" 999 1000 #: inc/customizer.php:1609 1001 msgid "Default" 1002 msgstr "" 1003 1004 #: inc/customizer.php:1610 1005 msgid "Custom Image Size" 1006 msgstr "" 1007 1008 #: inc/customizer.php:1619 1009 msgid "Featured Image Custom Width" 1010 msgstr "" 1011 1012 #: inc/customizer.php:1620 1013 #: inc/customizer.php:1634 1014 msgid "Enter a value in pixels. Example:20px" 1015 msgstr "" 1016 1017 #: inc/customizer.php:1622 1018 #: inc/customizer.php:1636 1019 msgid "10px" 1020 msgstr "" 1021 1022 #: inc/customizer.php:1633 1023 msgid "Featured Image Custom Height" 1024 msgstr "" 1025 1026 #: inc/customizer.php:1648 1027 #: inc/customizer.php:2062 1028 msgid "Metabox Seperator" 1029 msgstr "" 1030 1031 #: inc/customizer.php:1649 1032 #: inc/customizer.php:2063 1033 msgid "Ex: \"/\", \"|\", \"-\", ..." 1034 msgstr "" 1035 1036 #: inc/customizer.php:1659 1037 msgid "Post Content Type" 1038 msgstr "" 1039 1040 #: inc/customizer.php:1662 1041 msgid "No Content" 1042 msgstr "" 1043 1044 #: inc/customizer.php:1663 1045 msgid "Full Content" 1046 msgstr "" 1047 1048 #: inc/customizer.php:1664 1049 msgid "Excerpt Content" 1050 msgstr "" 1051 1052 #: inc/customizer.php:1673 1053 msgid "Post Excerpt Length" 1054 msgstr "" 1055 1056 #: inc/customizer.php:1685 1057 msgid "[...]" 1058 msgstr "" 1059 1060 #: inc/customizer.php:1689 1061 msgid "Excerpt Suffix" 1062 msgstr "" 1063 1064 #: inc/customizer.php:1702 1065 msgid "Post blocks" 1066 msgstr "" 1067 1068 #: inc/customizer.php:1704 1069 msgid "Within box" 1070 msgstr "" 1071 1072 #: inc/customizer.php:1705 1073 msgid "Without box" 1074 msgstr "" 1075 1076 #: inc/customizer.php:1714 1077 msgid "Enable / Disable Post Navigation" 1078 msgstr "" 1079 1080 #: inc/customizer.php:1725 1081 msgid "Post Navigation Type" 1082 msgstr "" 1083 1084 #: inc/customizer.php:1727 1085 msgid "Number" 1086 msgstr "" 1087 1088 #: inc/customizer.php:1728 1089 msgid "Next/Prev Button" 1090 msgstr "" 1091 1092 #: inc/customizer.php:1738 1093 msgid "Post Navigation Position" 1094 msgstr "" 1095 1096 #: inc/customizer.php:1740 1097 #: inc/customizer.php:2456 1098 msgid "Top" 1099 msgstr "" 1100 1101 #: inc/customizer.php:1741 1102 #: inc/customizer.php:2462 1103 msgid "Bottom" 1104 msgstr "" 1105 1106 #: inc/customizer.php:1742 1107 msgid "Both" 1108 msgstr "" 1109 1110 #: inc/customizer.php:1763 1111 msgid "Post Button Settings" 1112 msgstr "" 1113 1114 #: inc/customizer.php:1768 933 1115 #: template-parts/content.php:52 934 1116 #: template-parts/grid-layout.php:28 … … 937 1119 msgstr "" 938 1120 939 #: inc/customizer.php:1 4471121 #: inc/customizer.php:1772 940 1122 msgid "Post Button Text" 941 1123 msgstr "" 942 1124 943 #: inc/customizer.php:1 4581125 #: inc/customizer.php:1783 944 1126 msgid "Button Font Size" 945 1127 msgstr "" 946 1128 947 #: inc/customizer.php:1 4751129 #: inc/customizer.php:1800 948 1130 msgid "Button Text Transform" 949 1131 msgstr "" 950 1132 951 #: inc/customizer.php:1 479952 #: inc/customizer.php:2 369953 #: inc/customizer.php:2 4671133 #: inc/customizer.php:1804 1134 #: inc/customizer.php:2412 1135 #: inc/customizer.php:2510 954 1136 msgid "Lowercase" 955 1137 msgstr "" 956 1138 957 #: inc/customizer.php:1 4891139 #: inc/customizer.php:1814 958 1140 msgid "Top Bottom Button Padding" 959 1141 msgstr "" 960 1142 961 #: inc/customizer.php:1 5041143 #: inc/customizer.php:1829 962 1144 msgid "Left Right Button Padding" 963 1145 msgstr "" 964 1146 965 #: inc/customizer.php:1 519966 #: inc/customizer.php:30 491147 #: inc/customizer.php:1844 1148 #: inc/customizer.php:3092 967 1149 msgid "Button Border Radius" 968 1150 msgstr "" 969 1151 970 #: inc/customizer.php:1 5341152 #: inc/customizer.php:1859 971 1153 msgid "Button Font Weight" 972 1154 msgstr "" 973 1155 974 #: inc/customizer.php:1 5561156 #: inc/customizer.php:1881 975 1157 msgid "Button Letter Spacing" 976 1158 msgstr "" 977 1159 978 #: inc/customizer.php:1 5721160 #: inc/customizer.php:1897 979 1161 msgid "Button Shape" 980 1162 msgstr "" 981 1163 982 #: inc/customizer.php:1 5761164 #: inc/customizer.php:1901 983 1165 msgid "Square" 984 1166 msgstr "" 985 1167 986 #: inc/customizer.php:1 5771168 #: inc/customizer.php:1902 987 1169 msgid "Round" 988 1170 msgstr "" 989 1171 990 #: inc/customizer.php:1 5781172 #: inc/customizer.php:1903 991 1173 msgid "Pill" 992 1174 msgstr "" 993 1175 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 1147 1177 msgid "Single Post Settings" 1148 1178 msgstr "" 1149 1179 1150 #: inc/customizer.php:1 8771180 #: inc/customizer.php:1920 1151 1181 msgid "Show / Hide Single Post Breadcrumb" 1152 1182 msgstr "" 1153 1183 1154 #: inc/customizer.php:1 8871184 #: inc/customizer.php:1930 1155 1185 msgid "Show / Hide Single Post Date" 1156 1186 msgstr "" 1157 1187 1158 #: inc/customizer.php:1 8971188 #: inc/customizer.php:1940 1159 1189 msgid "Add Sigle Post Date Icon" 1160 1190 msgstr "" 1161 1191 1162 #: inc/customizer.php:19 101192 #: inc/customizer.php:1953 1163 1193 msgid "Show / Hide Single Post Author" 1164 1194 msgstr "" 1165 1195 1166 #: inc/customizer.php:19 201196 #: inc/customizer.php:1963 1167 1197 msgid "Add Sigle Post Author Icon" 1168 1198 msgstr "" 1169 1199 1170 #: inc/customizer.php:19 331200 #: inc/customizer.php:1976 1171 1201 msgid "Show / Hide Single Post Comment Number" 1172 1202 msgstr "" 1173 1203 1174 #: inc/customizer.php:19 431204 #: inc/customizer.php:1986 1175 1205 msgid "Add Sigle Post Comment Icon" 1176 1206 msgstr "" 1177 1207 1178 #: inc/customizer.php:19 561208 #: inc/customizer.php:1999 1179 1209 msgid "Show / Hide Single Post Time" 1180 1210 msgstr "" 1181 1211 1182 #: inc/customizer.php: 19661212 #: inc/customizer.php:2009 1183 1213 msgid "Add Sigle Post Time Icon" 1184 1214 msgstr "" 1185 1215 1186 #: inc/customizer.php: 19791216 #: inc/customizer.php:2022 1187 1217 msgid "Show / Hide Single Post Feature Image" 1188 1218 msgstr "" 1189 1219 1190 #: inc/customizer.php: 19881220 #: inc/customizer.php:2031 1191 1221 msgid "Single Post Image Border Radius" 1192 1222 msgstr "" 1193 1223 1194 #: inc/customizer.php:20 031224 #: inc/customizer.php:2046 1195 1225 msgid "Single Post Image Shadow" 1196 1226 msgstr "" 1197 1227 1198 #: inc/customizer.php:20 301228 #: inc/customizer.php:2073 1199 1229 msgid "Show / Hide Single Post Categories" 1200 1230 msgstr "" 1201 1231 1202 #: inc/customizer.php:20 391232 #: inc/customizer.php:2082 1203 1233 msgid "Category Color" 1204 1234 msgstr "" 1205 1235 1206 #: inc/customizer.php:20 481236 #: inc/customizer.php:2091 1207 1237 msgid "Category Background Color" 1208 1238 msgstr "" 1209 1239 1210 #: inc/customizer.php:2 0581240 #: inc/customizer.php:2101 1211 1241 msgid "Show / Hide Single Post Tags" 1212 1242 msgstr "" 1213 1243 1214 #: inc/customizer.php:2 0681244 #: inc/customizer.php:2111 1215 1245 msgid "Show / Hide Single Post Comment" 1216 1246 msgstr "" 1217 1247 1218 #: inc/customizer.php:2 0771248 #: inc/customizer.php:2120 1219 1249 msgid "Comment Textarea Width" 1220 1250 msgstr "" 1221 1251 1222 #: inc/customizer.php:2 0941252 #: inc/customizer.php:2137 1223 1253 msgid "Comment form Title" 1224 1254 msgstr "" 1225 1255 1226 #: inc/customizer.php:21 041256 #: inc/customizer.php:2147 1227 1257 msgid "Comment Button Text" 1228 1258 msgstr "" 1229 1259 1230 #: inc/customizer.php:21 141260 #: inc/customizer.php:2157 1231 1261 msgid "Enable / Disable Nav Links" 1232 1262 msgstr "" 1233 1263 1234 #: inc/customizer.php:21 241264 #: inc/customizer.php:2167 1235 1265 msgid "Previous Navigation Text" 1236 1266 msgstr "" 1237 1267 1238 #: inc/customizer.php:21 341268 #: inc/customizer.php:2177 1239 1269 msgid "Next Navigation Text" 1240 1270 msgstr "" 1241 1271 1242 #: inc/customizer.php:21 441272 #: inc/customizer.php:2187 1243 1273 msgid "Enable / Disable Related Posts" 1244 1274 msgstr "" 1245 1275 1246 #: inc/customizer.php:21 541276 #: inc/customizer.php:2197 1247 1277 msgid "Related Posts Title" 1248 1278 msgstr "" 1249 1279 1250 #: inc/customizer.php:2 1631280 #: inc/customizer.php:2206 1251 1281 msgid "Related Posts Count" 1252 1282 msgstr "" 1253 1283 1254 #: inc/customizer.php:2 1811284 #: inc/customizer.php:2224 1255 1285 msgid "Related Posts Order By" 1256 1286 msgstr "" 1257 1287 1258 #: inc/customizer.php:2 1831288 #: inc/customizer.php:2226 1259 1289 msgid "Categories" 1260 1290 msgstr "" 1261 1291 1262 #: inc/customizer.php:2 1841292 #: inc/customizer.php:2227 1263 1293 msgid "Tags" 1264 1294 msgstr "" 1265 1295 1266 #: inc/customizer.php:2 1921296 #: inc/customizer.php:2235 1267 1297 msgid "Related Posts Content Limit" 1268 1298 msgstr "" 1269 1299 1270 #: inc/customizer.php:22 051300 #: inc/customizer.php:2248 1271 1301 msgid "404 & No Result Page Settings" 1272 1302 msgstr "" 1273 1303 1274 #: inc/customizer.php:22 161304 #: inc/customizer.php:2259 1275 1305 msgid "404 Page Title" 1276 1306 msgstr "" 1277 1307 1278 #: inc/customizer.php:22 261308 #: inc/customizer.php:2269 1279 1309 msgid "404 Page Text" 1280 1310 msgstr "" 1281 1311 1282 #: inc/customizer.php:22 361312 #: inc/customizer.php:2279 1283 1313 msgid "404 Page Button Text" 1284 1314 msgstr "" 1285 1315 1286 #: inc/customizer.php:22 461316 #: inc/customizer.php:2289 1287 1317 msgid "No Result Page Title" 1288 1318 msgstr "" 1289 1319 1290 #: inc/customizer.php:22 561320 #: inc/customizer.php:2299 1291 1321 msgid "No Result Page Text" 1292 1322 msgstr "" 1293 1323 1294 #: inc/customizer.php:2 2661324 #: inc/customizer.php:2309 1295 1325 msgid "Show/Hide Search Form" 1296 1326 msgstr "" 1297 1327 1298 #: inc/customizer.php:2 2721328 #: inc/customizer.php:2315 1299 1329 msgid "Footer Section" 1300 1330 msgstr "" 1301 1331 1302 #: inc/customizer.php:2 2911332 #: inc/customizer.php:2334 1303 1333 msgid "Show/Hide Back to Top Button" 1304 1334 msgstr "" 1305 1335 1306 #: inc/customizer.php:23 011336 #: inc/customizer.php:2344 1307 1337 msgid "Back to Top Icon" 1308 1338 msgstr "" 1309 1339 1310 #: inc/customizer.php:23 111340 #: inc/customizer.php:2354 1311 1341 msgid "Back To Top Font Size" 1312 1342 msgstr "" 1313 1343 1314 #: inc/customizer.php:23 211344 #: inc/customizer.php:2364 1315 1345 msgid "Back To Top Icon Color" 1316 1346 msgstr "" 1317 1347 1318 #: inc/customizer.php:23 301348 #: inc/customizer.php:2373 1319 1349 msgid "Back To Top Icon Hover Color" 1320 1350 msgstr "" 1321 1351 1322 #: inc/customizer.php:23 351352 #: inc/customizer.php:2378 1323 1353 msgid "Back To Top" 1324 1354 msgstr "" 1325 1355 1326 #: inc/customizer.php:23 391356 #: inc/customizer.php:2382 1327 1357 msgid "Back to Top Button Text" 1328 1358 msgstr "" 1329 1359 1330 #: inc/customizer.php:23 501360 #: inc/customizer.php:2393 1331 1361 msgid "Back to Top Button Alignment" 1332 1362 msgstr "" 1333 1363 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 1371 msgid "Left" 1372 msgstr "" 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 1381 msgid "Right" 1382 msgstr "" 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 1390 msgid "Center" 1391 msgstr "" 1392 1393 #: inc/customizer.php:2408 1394 msgid "Back to Top Text Transform" 1395 msgstr "" 1396 1397 #: inc/customizer.php:2423 1398 msgid "Show / Hide Footer" 1399 msgstr "" 1400 1401 #: inc/customizer.php:2432 1402 msgid "Footer Background Color" 1403 msgstr "" 1404 1405 #: inc/customizer.php:2441 1406 msgid "Footer Background Image" 1407 msgstr "" 1408 1409 #: inc/customizer.php:2452 1410 msgid "Footer Image Position" 1411 msgstr "" 1412 1413 #: inc/customizer.php:2455 1414 msgid "Top Left" 1415 msgstr "" 1416 1417 #: inc/customizer.php:2457 1418 msgid "Top Right" 1419 msgstr "" 1420 1421 #: inc/customizer.php:2461 1422 msgid "Bottom Left" 1423 msgstr "" 1424 1425 #: inc/customizer.php:2463 1426 msgid "Bottom Right" 1427 msgstr "" 1428 1429 #: inc/customizer.php:2473 1430 msgid "Footer Background Attatchment" 1431 msgstr "" 1432 1433 #: inc/customizer.php:2475 1434 msgid "fixed" 1435 msgstr "" 1436 1437 #: inc/customizer.php:2476 1438 msgid "scroll" 1439 msgstr "" 1440 1441 #: inc/customizer.php:2487 1442 msgid "Footer widget layout" 1443 msgstr "" 1444 1445 #: inc/customizer.php:2489 1446 msgid "Select the number of widget areas you want in the footer. After that, go to Appearance > Widgets and add your widgets." 1447 msgstr "" 1448 1449 #: inc/customizer.php:2491 1450 msgid "One" 1451 msgstr "" 1452 1453 #: inc/customizer.php:2492 1454 msgid "Two" 1455 msgstr "" 1456 1457 #: inc/customizer.php:2493 1458 msgid "Three" 1459 msgstr "" 1460 1461 #: inc/customizer.php:2494 1462 msgid "Four" 1463 msgstr "" 1464 1465 #: inc/customizer.php:2505 1466 msgid "Heading Text Transform" 1467 msgstr "" 1468 1469 #: inc/customizer.php:2519 1470 msgid "Footer Widgets Heading Font Size" 1471 msgstr "" 1472 1473 #: inc/customizer.php:2530 1474 msgid "Footer Widgets Heading Font Weight" 1475 msgstr "" 1476 1477 #: inc/customizer.php:2552 1478 msgid "Footer Widget Heading Alignment" 1479 msgstr "" 1480 1481 #: inc/customizer.php:2568 1482 msgid "Footer Widget Content Alignment" 1483 msgstr "" 1484 1485 #: inc/customizer.php:2583 1486 msgid "Show / Hide Copyright" 1487 msgstr "" 1488 1489 #: inc/customizer.php:2593 1490 msgid "Copyright Alignment" 1491 msgstr "" 1492 1493 #: inc/customizer.php:2607 1494 msgid "Copyright Color" 1495 msgstr "" 1496 1497 #: inc/customizer.php:2616 1498 msgid "Copyright Hover Color" 1499 msgstr "" 1500 1501 #: inc/customizer.php:2625 1502 msgid "Copyright Font Size" 1503 msgstr "" 1504 1505 #: inc/customizer.php:2635 1506 msgid "Copyright Top Bottom Padding" 1507 msgstr "" 1508 1509 #: inc/customizer.php:2653 1510 msgid "Copyright Text" 1511 msgstr "" 1512 1513 #: inc/customizer.php:2663 1514 msgid "Copyright Background Color" 1515 msgstr "" 1516 1517 #: inc/customizer.php:2669 1518 msgid "Footer Social Icons" 1519 msgstr "" 1520 1521 #: inc/customizer.php:2686 1522 msgid "Show/Hide Social Icons" 1523 msgstr "" 1524 1525 #: inc/customizer.php:2695 1526 msgid "Add Facebook link" 1527 msgstr "" 1528 1529 #: inc/customizer.php:2719 1530 msgid "Add Twitter link" 1531 msgstr "" 1532 1339 1533 #: inc/customizer.php:2766 1340 #: inc/customizer.php:31381341 msgid "Left"1342 msgstr ""1343 1344 #: inc/customizer.php:23541345 #: inc/customizer.php:24171346 #: inc/customizer.php:25141347 #: inc/customizer.php:25301348 #: inc/customizer.php:25541349 #: inc/customizer.php:27671350 #: inc/customizer.php:31391351 msgid "Right"1352 msgstr ""1353 1354 #: inc/customizer.php:23551355 #: inc/customizer.php:24161356 #: inc/customizer.php:25131357 #: inc/customizer.php:25291358 #: inc/customizer.php:25551359 #: inc/customizer.php:27681360 msgid "Center"1361 msgstr ""1362 1363 #: inc/customizer.php:23651364 msgid "Back to Top Text Transform"1365 msgstr ""1366 1367 #: inc/customizer.php:23801368 msgid "Show / Hide Footer"1369 msgstr ""1370 1371 #: inc/customizer.php:23891372 msgid "Footer Background Color"1373 msgstr ""1374 1375 #: inc/customizer.php:23981376 msgid "Footer Background Image"1377 msgstr ""1378 1379 #: inc/customizer.php:24091380 msgid "Footer Image Position"1381 msgstr ""1382 1383 #: inc/customizer.php:24121384 msgid "Top Left"1385 msgstr ""1386 1387 #: inc/customizer.php:24141388 msgid "Top Right"1389 msgstr ""1390 1391 #: inc/customizer.php:24181392 msgid "Bottom Left"1393 msgstr ""1394 1395 #: inc/customizer.php:24201396 msgid "Bottom Right"1397 msgstr ""1398 1399 #: inc/customizer.php:24301400 msgid "Footer Background Attatchment"1401 msgstr ""1402 1403 #: inc/customizer.php:24321404 msgid "fixed"1405 msgstr ""1406 1407 #: inc/customizer.php:24331408 msgid "scroll"1409 msgstr ""1410 1411 #: inc/customizer.php:24441412 msgid "Footer widget layout"1413 msgstr ""1414 1415 #: inc/customizer.php:24461416 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:24481420 msgid "One"1421 msgstr ""1422 1423 #: inc/customizer.php:24491424 msgid "Two"1425 msgstr ""1426 1427 #: inc/customizer.php:24501428 msgid "Three"1429 msgstr ""1430 1431 #: inc/customizer.php:24511432 msgid "Four"1433 msgstr ""1434 1435 #: inc/customizer.php:24621436 msgid "Heading Text Transform"1437 msgstr ""1438 1439 #: inc/customizer.php:24761440 msgid "Footer Widgets Heading Font Size"1441 msgstr ""1442 1443 #: inc/customizer.php:24871444 msgid "Footer Widgets Heading Font Weight"1445 msgstr ""1446 1447 #: inc/customizer.php:25091448 msgid "Footer Widget Heading Alignment"1449 msgstr ""1450 1451 #: inc/customizer.php:25251452 msgid "Footer Widget Content Alignment"1453 msgstr ""1454 1455 #: inc/customizer.php:25401456 msgid "Show / Hide Copyright"1457 msgstr ""1458 1459 #: inc/customizer.php:25501460 msgid "Copyright Alignment"1461 msgstr ""1462 1463 #: inc/customizer.php:25641464 msgid "Copyright Color"1465 msgstr ""1466 1467 #: inc/customizer.php:25731468 msgid "Copyright Hover Color"1469 msgstr ""1470 1471 #: inc/customizer.php:25821472 msgid "Copyright Font Size"1473 msgstr ""1474 1475 #: inc/customizer.php:25921476 msgid "Copyright Top Bottom Padding"1477 msgstr ""1478 1479 #: inc/customizer.php:26101480 msgid "Copyright Text"1481 msgstr ""1482 1483 #: inc/customizer.php:26201484 msgid "Copyright Background Color"1485 msgstr ""1486 1487 #: inc/customizer.php:26261488 msgid "Footer Social Icons"1489 msgstr ""1490 1491 #: inc/customizer.php:26431492 msgid "Show/Hide Social Icons"1493 msgstr ""1494 1495 #: inc/customizer.php:26521496 msgid "Add Facebook link"1497 msgstr ""1498 1499 #: inc/customizer.php:26761500 msgid "Add Twitter link"1501 msgstr ""1502 1503 #: inc/customizer.php:27231504 1534 msgid "Add Instagram link" 1505 1535 msgstr "" 1506 1536 1507 #: inc/customizer.php:2 7631537 #: inc/customizer.php:2806 1508 1538 msgid "Icon Alignment" 1509 1539 msgstr "" 1510 1540 1511 #: inc/customizer.php:2 7771541 #: inc/customizer.php:2820 1512 1542 msgid "Icon Color" 1513 1543 msgstr "" 1514 1544 1515 #: inc/customizer.php:2 7841545 #: inc/customizer.php:2827 1516 1546 msgid "Mobile Media Options" 1517 1547 msgstr "" 1518 1548 1519 #: inc/customizer.php:2 7951549 #: inc/customizer.php:2838 1520 1550 msgid "Open Menu Icon" 1521 1551 msgstr "" 1522 1552 1523 #: inc/customizer.php:28 061553 #: inc/customizer.php:2849 1524 1554 msgid "Open Menu Label" 1525 1555 msgstr "" 1526 1556 1527 #: inc/customizer.php:28 151557 #: inc/customizer.php:2858 1528 1558 msgid "Menu Icon Color Option" 1529 1559 msgstr "" 1530 1560 1531 #: inc/customizer.php:28 261561 #: inc/customizer.php:2869 1532 1562 msgid "Close Menu Icon" 1533 1563 msgstr "" 1534 1564 1535 #: inc/customizer.php:28 371565 #: inc/customizer.php:2880 1536 1566 msgid "Close Menu Label" 1537 1567 msgstr "" 1538 1568 1539 #: inc/customizer.php:28 471569 #: inc/customizer.php:2890 1540 1570 msgid "Show / Hide Topbar" 1541 1571 msgstr "" 1542 1572 1543 #: inc/customizer.php:2 8571573 #: inc/customizer.php:2900 1544 1574 msgid "Show / Hide Slider" 1545 1575 msgstr "" 1546 1576 1547 #: inc/customizer.php:2 8671577 #: inc/customizer.php:2910 1548 1578 msgid "Show / Hide Sticky Header" 1549 1579 msgstr "" 1550 1580 1551 #: inc/customizer.php:2 8771581 #: inc/customizer.php:2920 1552 1582 msgid "Show / Hide Back to Top Button" 1553 1583 msgstr "" 1554 1584 1555 #: inc/customizer.php:2 8971585 #: inc/customizer.php:2940 1556 1586 msgid "Enable Sidebar" 1557 1587 msgstr "" 1558 1588 1559 #: inc/customizer.php:29 061589 #: inc/customizer.php:2949 1560 1590 msgid "Toggle Button Bg Color" 1561 1591 msgstr "" 1562 1592 1563 #: inc/customizer.php:29 121593 #: inc/customizer.php:2955 1564 1594 msgid "Additional WooCommerce Options" 1565 1595 msgstr "" 1566 1596 1567 #: inc/customizer.php:29 241597 #: inc/customizer.php:2967 1568 1598 msgid "Product per row" 1569 1599 msgstr "" 1570 1600 1571 #: inc/customizer.php:29 391601 #: inc/customizer.php:2982 1572 1602 msgid "Product per page" 1573 1603 msgstr "" 1574 1604 1575 #: inc/customizer.php:29 501605 #: inc/customizer.php:2993 1576 1606 msgid "Enable / Disable Shop page sidebar" 1577 1607 msgstr "" 1578 1608 1579 #: inc/customizer.php: 29611609 #: inc/customizer.php:3004 1580 1610 msgid "Shop Page layout" 1581 1611 msgstr "" 1582 1612 1583 #: inc/customizer.php: 29751613 #: inc/customizer.php:3018 1584 1614 msgid "Enable / Disable Single Product Page Sidebar" 1585 1615 msgstr "" 1586 1616 1587 #: inc/customizer.php: 29861617 #: inc/customizer.php:3029 1588 1618 msgid "Single product Page layout" 1589 1619 msgstr "" 1590 1620 1591 #: inc/customizer.php:30 001621 #: inc/customizer.php:3043 1592 1622 msgid "Enable / Disable Shop page pagination" 1593 1623 msgstr "" 1594 1624 1595 #: inc/customizer.php:30 101625 #: inc/customizer.php:3053 1596 1626 msgid "Enable / Disable Related product" 1597 1627 msgstr "" 1598 1628 1599 #: inc/customizer.php:30 191629 #: inc/customizer.php:3062 1600 1630 msgid "Button Top Bottom Padding" 1601 1631 msgstr "" 1602 1632 1603 #: inc/customizer.php:30 341633 #: inc/customizer.php:3077 1604 1634 msgid "Button Right Left Padding" 1605 1635 msgstr "" 1606 1636 1607 #: inc/customizer.php:3 0651637 #: inc/customizer.php:3108 1608 1638 msgid "Enable / Disable product border" 1609 1639 msgstr "" 1610 1640 1611 #: inc/customizer.php:3 0741641 #: inc/customizer.php:3117 1612 1642 msgid "Product Top Bottom Padding" 1613 1643 msgstr "" 1614 1644 1615 #: inc/customizer.php:3 0891645 #: inc/customizer.php:3132 1616 1646 msgid "Product Right Left Padding" 1617 1647 msgstr "" 1618 1648 1619 #: inc/customizer.php:31 041649 #: inc/customizer.php:3147 1620 1650 msgid "Product Border Radius" 1621 1651 msgstr "" 1622 1652 1623 #: inc/customizer.php:31 191653 #: inc/customizer.php:3162 1624 1654 msgid "Product Box Shadow" 1625 1655 msgstr "" 1626 1656 1627 #: inc/customizer.php:31 351657 #: inc/customizer.php:3178 1628 1658 msgid "Sale badge Position" 1629 1659 msgstr "" 1630 1660 1631 #: inc/customizer.php:31 481661 #: inc/customizer.php:3191 1632 1662 msgid "Sale Top Bottom Padding" 1633 1663 msgstr "" 1634 1664 1635 #: inc/customizer.php:3 1631665 #: inc/customizer.php:3206 1636 1666 msgid "Sale Right Left Padding" 1637 1667 msgstr "" 1638 1668 1639 #: inc/customizer.php:3 1781669 #: inc/customizer.php:3221 1640 1670 msgid "Sale Border Radius" 1641 1671 msgstr "" 1642 1672 1643 #: inc/customizer.php:3 1931673 #: inc/customizer.php:3236 1644 1674 msgid "Sale Font Size" 1645 1675 msgstr "" 1646 1676 1647 #: inc/customizer.php:3 2851677 #: inc/customizer.php:3328 1648 1678 msgid "Travel Pro Theme" 1649 1679 msgstr "" 1650 1680 1651 #: inc/customizer.php:3 2861681 #: inc/customizer.php:3329 1652 1682 #: inc/dashboard/getstart.php:52 1653 1683 msgid "Get Pro" 1654 1684 msgstr "" 1655 1685 1656 #: inc/customizer.php:3 2991686 #: inc/customizer.php:3342 1657 1687 msgid "Search Tour Section" 1658 1688 msgstr "" 1659 1689 1660 #: inc/customizer.php:33 001690 #: inc/customizer.php:3343 1661 1691 msgid "About Section" 1662 1692 msgstr "" 1663 1693 1664 #: inc/customizer.php:33 011694 #: inc/customizer.php:3344 1665 1695 msgid "Perfection Section" 1666 1696 msgstr "" 1667 1697 1668 #: inc/customizer.php:33 021698 #: inc/customizer.php:3345 1669 1699 msgid "Most Popular Section" 1670 1700 msgstr "" 1671 1701 1672 #: inc/customizer.php:33 031702 #: inc/customizer.php:3346 1673 1703 msgid "Top Destination Section" 1674 1704 msgstr "" 1675 1705 1676 #: inc/customizer.php:33 041706 #: inc/customizer.php:3347 1677 1707 msgid "Tour Place Section" 1678 1708 msgstr "" 1679 1709 1680 #: inc/customizer.php:33 051710 #: inc/customizer.php:3348 1681 1711 msgid "Exclusive Offer Section" 1682 1712 msgstr "" 1683 1713 1684 #: inc/customizer.php:33 061714 #: inc/customizer.php:3349 1685 1715 msgid "Testimonials Section" 1686 1716 msgstr "" 1687 1717 1688 #: inc/customizer.php:33 071718 #: inc/customizer.php:3350 1689 1719 msgid "Blog Section" 1690 1720 msgstr "" 1691 1721 1692 #: inc/customizer.php:33 081722 #: inc/customizer.php:3351 1693 1723 msgid "Our Newsletter Section" 1694 1724 msgstr "" 1695 1725 1696 #: inc/customizer.php:33 111726 #: inc/customizer.php:3354 1697 1727 msgid "View PRO version" 1698 1728 msgstr "" -
tour-travel-agent/0.5.4/readme.txt
r257422 r259900 5 5 Tested up to: 6.7 6 6 Requires PHP: 7.2 7 Stable tag: 0.5. 37 Stable tag: 0.5.4 8 8 License: GNU General Public License v3.0 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 305 305 * Update POT file. 306 306 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 307 315 == Resources == 308 316 -
tour-travel-agent/0.5.4/style.css
r257422 r259900 5 5 Author URI: https://www.themescaliber.com/ 6 6 Description: Tour Travel Agent is a stunning WordPress theme for representing visa passport support, travel package arrangers, immigration support, visa and passport services, reservations as well as hotel bookings, yacht bookings, travel destinations explorer and tour companies, travel guides and also suits any travel and tourism blog. The theme is best for Travel Agency, Tour Operator, Adventure Travel, Luxury Tours, Holiday Packages, Destination Management, Group Tours, Eco Tours, Cultural Tours, Travel Consultant, Travel Planner, Cruise Travel, Safari Tours, Guided Tours, Vacation Packages. It is a multipurpose theme with a clean and user-friendly interface giving an easy-to-use layout for beginners as well as novices for sure. Professionals have crafted this theme with some well-written and highly optimized codes in order to get a lightweight design that loads without any delay and delivers faster page load times. With its responsive design supporting multiple devices, your website is going to look absolutely phenomenal. Retina-ready display along with nicely crafted content spaces for publishing the details look absolutely great. Call to Action Button (CTA) are useful for guiding the audience and making the whole website interactive. CSS animations add more style and life to the existing design and with social media icons, you can extend your reach to the audience far and wide. With SEO friendly theme, getting to the top ranks in the SERP is no more a tough task. This theme is Bootstrap-based and makes personalization options available for you. Demo: https://preview.themescaliber.com/tour-travel-agent-pro/ 7 Version: 0.5. 37 Version: 0.5.4 8 8 Requires at least: 5.0 9 9 Tested up to: 6.7 … … 1048 1048 margin-bottom: 5px; 1049 1049 } 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 } 1050 1059 .woocommerce #respond input#submit, 1051 1060 .woocommerce input.button, … … 1069 1078 } 1070 1079 a.added_to_cart.wc-forward { 1071 padding: 5px 10px;1080 padding: 6px 15px; 1072 1081 font-weight: 600; 1073 1082 margin-top: 5px; -
tour-travel-agent/0.5.4/tc-style.php
r257422 r259900 388 388 $tour_travel_agent_custom_css .='}'; 389 389 } 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 } 390 400 391 401 /*------Shop page pagination ---------*/ -
tour-travel-agent/0.5.4/template-parts/content.php
r228821 r259900 14 14 </div> 15 15 <?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"> 17 17 <a href="<?php echo esc_url( get_permalink() ); ?>"> 18 18 <?php the_post_thumbnail(); ?>
Note: See TracChangeset
for help on using the changeset viewer.