Make WordPress Themes

Changeset 228823

Timestamp:
05/23/2024 08:36:14 AM (18 months ago)
Author:
themedropbox
Message:

New version of Construction Landing Page - 1.3.9

Location:
construction-landing-page/1.3.9
Files:
24 added
13 edited
1 copied

Legend:

Unmodified
Added
Removed
  • construction-landing-page/1.3.9/inc/customizer.php

    r178078 r228823  
    225225    );
    226226
     227    /** Note */
     228    $wp_customize->add_setting(
     229        'typo_section_text',
     230        array(
     231            'default'           => '',
     232            'sanitize_callback' => 'wp_kses_post'
     233        )
     234    );
     235   
     236    $wp_customize->add_control(
     237        new Construction_Landing_Page_Note_Control(
     238            $wp_customize,
     239            'typo_section_text',
     240            array(
     241                'section'     => 'construction_landing_page_typography_section',
     242                'description' => sprintf( __( '%1$sThis feature is available in Pro version.%2$s %3$sUpgrade to Pro%4$s ', 'construction-landing-page' ),'<div class="featured-pro"><span>', '</span>', '<a href="https://rarathemes.com/wordpress-themes/construction-landing-page-pro/?utm_source=construction_landing_page&utm_medium=customizer&utm_campaign=upgrade_to_pro" target="_blank">', '</a></div>' ),
     243            )
     244        )
     245    );
     246   
     247    $wp_customize->add_setting(
     248        'typo_section_settings',
     249        array(
     250            'default'           => 'one',
     251            'sanitize_callback' => 'construction_landing_page_sanitize_radio'
     252        )
     253    );
     254   
     255    $wp_customize->add_control(
     256        new Construction_Landing_Page_Radio_Image_Control(
     257            $wp_customize,
     258            'typo_section_settings',
     259            array(
     260                'section'     => 'construction_landing_page_typography_section',
     261                'feat_class' => 'upg-to-pro',
     262                'choices'     => array(
     263                    'one'       => get_template_directory_uri() . '/images/pro/typography.png',
     264                ),
     265            )
     266        )
     267    );
     268
    227269    $wp_customize->get_section( 'title_tagline' )->panel                                = 'wp_default_panel';
    228270    $wp_customize->get_section( 'colors' )->panel                                       = 'wp_default_panel';
     
    234276    $wp_customize->get_setting( 'background_image' )->transport                         = 'refresh';
    235277    $wp_customize->get_section( 'construction_landing_page_typography_section' )->panel = 'wp_default_panel';
     278
     279    /** Note */
     280    $wp_customize->add_setting(
     281        'color_section_text',
     282        array(
     283            'default'           => '',
     284            'sanitize_callback' => 'wp_kses_post'
     285        )
     286    );
     287   
     288    $wp_customize->add_control(
     289        new Construction_Landing_Page_Note_Control(
     290            $wp_customize,
     291            'color_section_text',
     292            array(
     293                'section'     => 'colors',
     294                'description' => sprintf( __( '%1$sThis feature is available in Pro version.%2$s %3$sUpgrade to Pro%4$s ', 'construction-landing-page' ),'<div class="featured-pro"><span>', '</span>', '<a href="https://rarathemes.com/wordpress-themes/construction-landing-page-pro/?utm_source=construction_landing_page&utm_medium=customizer&utm_campaign=upgrade_to_pro" target="_blank">', '</a></div>' ),
     295            )
     296        )
     297    );
     298   
     299    $wp_customize->add_setting(
     300        'color_section_settings',
     301        array(
     302            'default'           => 'one',
     303            'sanitize_callback' => 'construction_landing_page_sanitize_radio'
     304        )
     305    );
     306   
     307    $wp_customize->add_control(
     308        new Construction_Landing_Page_Radio_Image_Control(
     309            $wp_customize,
     310            'color_section_settings',
     311            array(
     312                'section'     => 'colors',
     313                'feat_class' => 'upg-to-pro',
     314                'choices'     => array(
     315                    'one'       => get_template_directory_uri() . '/images/pro/colors.png',
     316                ),
     317            )
     318        )
     319    );
     320
     321   
    236322    /** Default Settings Ends */
    237323
     
    262348            'section' => 'construction_landing_page_phone_number',
    263349            'type' => 'text',
     350        )
     351    );
     352
     353    /** Note */
     354    $wp_customize->add_setting(
     355        'header_section_text',
     356        array(
     357            'default'           => '',
     358            'sanitize_callback' => 'wp_kses_post'
     359        )
     360    );
     361   
     362    $wp_customize->add_control(
     363        new Construction_Landing_Page_Note_Control(
     364            $wp_customize,
     365            'header_section_text',
     366            array(
     367                'section'     => 'construction_landing_page_phone_number',
     368                'description' => sprintf( __( '%1$sThis feature is available in Pro version.%2$s %3$sUpgrade to Pro%4$s ', 'construction-landing-page' ),'<div class="featured-pro"><span>', '</span>', '<a href="https://rarathemes.com/wordpress-themes/construction-landing-page-pro/?utm_source=construction_landing_page&utm_medium=customizer&utm_campaign=upgrade_to_pro" target="_blank">', '</a></div>' ),
     369            )
     370        )
     371    );
     372   
     373    $wp_customize->add_setting(
     374        'header_section_settings',
     375        array(
     376            'default'           => 'one',
     377            'sanitize_callback' => 'construction_landing_page_sanitize_radio',
     378            'transport'         => 'postMessage',
     379        )
     380    );
     381   
     382    $wp_customize->add_control(
     383        new Construction_Landing_Page_Radio_Image_Control(
     384            $wp_customize,
     385            'header_section_settings',
     386            array(
     387                'section'     => 'construction_landing_page_phone_number',
     388                'feat_class' => 'upg-to-pro',
     389                'choices'     => array(
     390                    'one'       => get_template_directory_uri() . '/images/pro/header-contents.png',
     391                    'two'       => get_template_directory_uri() . '/images/pro/header-layout.png',
     392                ),
     393            )
    264394        )
    265395    );
     
    275405        )
    276406    );
     407
     408    /** Home page darg and Drop Setting*/
     409    $wp_customize->add_section(
     410        'construction_landing_page_drag_settings',
     411        array(
     412            'title' => __( 'Home Page Drag and Drop', 'construction-landing-page' ),
     413            'priority' => 8,
     414            'panel' => 'construction_landing_page_home_page_settings',                     
     415        )
     416    );
     417       
     418     /** Note */
     419     $wp_customize->add_setting(
     420        'drag_section_text',
     421        array(
     422            'default'           => '',
     423            'sanitize_callback' => 'wp_kses_post'
     424        )
     425    );
     426   
     427    $wp_customize->add_control(
     428        new Construction_Landing_Page_Note_Control(
     429            $wp_customize,
     430            'drag_section_text',
     431            array(
     432                'section'     => 'construction_landing_page_drag_settings',
     433                'description' => sprintf( __( '%1$sThis feature is available in Pro version.%2$s %3$sUpgrade to Pro%4$s ', 'construction-landing-page' ),'<div class="featured-pro"><span>', '</span>', '<a href="https://rarathemes.com/wordpress-themes/construction-landing-page-pro/?utm_source=construction_landing_page&utm_medium=customizer&utm_campaign=upgrade_to_pro" target="_blank">', '</a></div>' ),
     434            )
     435        )
     436    );
     437   
     438    $wp_customize->add_setting(
     439        'drag_section_settings',
     440        array(
     441            'default'           => 'one',
     442            'sanitize_callback' => 'construction_landing_page_sanitize_radio'
     443        )
     444    );
     445   
     446    $wp_customize->add_control(
     447        new Construction_Landing_Page_Radio_Image_Control(
     448            $wp_customize,
     449            'drag_section_settings',
     450            array(
     451                'section'     => 'construction_landing_page_drag_settings',
     452                'feat_class' => 'upg-to-pro',
     453                'choices'     => array(
     454                    'one'       => get_template_directory_uri() . '/images/pro/drag-and-drop.png',
     455                ),
     456            )
     457        )
     458    );
    277459   
    278460    /** Banner Setting*/
     
    325507        );
    326508    }
     509
     510    /** Note */
     511    $wp_customize->add_setting(
     512        'banner_section_text',
     513        array(
     514            'default'           => '',
     515            'sanitize_callback' => 'wp_kses_post'
     516        )
     517    );
     518   
     519    $wp_customize->add_control(
     520        new Construction_Landing_Page_Note_Control(
     521            $wp_customize,
     522            'banner_section_text',
     523            array(
     524                'section'     => 'construction_landing_page_banner_settings',
     525                'description' => sprintf( __( '%1$sThis feature is available in Pro version.%2$s %3$sUpgrade to Pro%4$s ', 'construction-landing-page' ),'<div class="featured-pro"><span>', '</span>', '<a href="https://rarathemes.com/wordpress-themes/construction-landing-page-pro/?utm_source=construction_landing_page&utm_medium=customizer&utm_campaign=upgrade_to_pro" target="_blank">', '</a></div>' ),
     526            )
     527        )
     528    );
     529   
     530    $wp_customize->add_setting(
     531        'banner_section_settings',
     532        array(
     533            'default'           => 'one',
     534            'sanitize_callback' => 'construction_landing_page_sanitize_radio',
     535            'transport'         => 'postMessage',
     536        )
     537    );
     538   
     539    $wp_customize->add_control(
     540        new Construction_Landing_Page_Radio_Image_Control(
     541            $wp_customize,
     542            'banner_section_settings',
     543            array(
     544                'section'     => 'construction_landing_page_banner_settings',
     545                'feat_class' => 'upg-to-pro',
     546                'choices'     => array(
     547                    'one'       => get_template_directory_uri() . '/images/pro/slider-options.png',
     548                    'two'       => get_template_directory_uri() . '/images/pro/slider-contents.png',
     549                    'three'     => get_template_directory_uri() . '/images/pro/static-banner.png',
     550                ),
     551            )
     552        )
     553    );
     554
    327555   
    328556    /** About Section */
     
    12641492    );
    12651493 
     1494     /** Pricing Section Setting*/
     1495     $wp_customize->add_section(
     1496        'construction_landing_page_pricing_settings',
     1497        array(
     1498            'title' => __( 'Pricing Section', 'construction-landing-page' ),
     1499            'priority' => 75,
     1500            'panel' => 'construction_landing_page_home_page_settings',                     
     1501        )
     1502    );
     1503       
     1504     /** Note */
     1505     $wp_customize->add_setting(
     1506        'pricing_section_text',
     1507        array(
     1508            'default'           => '',
     1509            'sanitize_callback' => 'wp_kses_post'
     1510        )
     1511    );
     1512   
     1513    $wp_customize->add_control(
     1514        new Construction_Landing_Page_Note_Control(
     1515            $wp_customize,
     1516            'pricing_section_text',
     1517            array(
     1518                'section'     => 'construction_landing_page_pricing_settings',
     1519                'description' => sprintf( __( '%1$sThis feature is available in Pro version.%2$s %3$sUpgrade to Pro%4$s ', 'construction-landing-page' ),'<div class="featured-pro"><span>', '</span>', '<a href="https://rarathemes.com/wordpress-themes/construction-landing-page-pro/?utm_source=construction_landing_page&utm_medium=customizer&utm_campaign=upgrade_to_pro" target="_blank">', '</a></div>' ),
     1520            )
     1521        )
     1522    );
     1523   
     1524    $wp_customize->add_setting(
     1525        'pricing_section_settings',
     1526        array(
     1527            'default'           => 'one',
     1528            'sanitize_callback' => 'construction_landing_page_sanitize_radio',
     1529            'transport'         => 'postMessage',
     1530        )
     1531    );
     1532   
     1533    $wp_customize->add_control(
     1534        new Construction_Landing_Page_Radio_Image_Control(
     1535            $wp_customize,
     1536            'pricing_section_settings',
     1537            array(
     1538                'section'     => 'construction_landing_page_pricing_settings',
     1539                'feat_class' => 'upg-to-pro',
     1540                'choices'     => array(
     1541                    'one'       => get_template_directory_uri() . '/images/pro/pricing-design.png',
     1542                    'two'       => get_template_directory_uri() . '/images/pro/pricing.png',
     1543                ),
     1544            )
     1545        )
     1546    );
     1547
     1548    /** Teaam Section Setting*/
     1549    $wp_customize->add_section(
     1550        'construction_landing_page_team_settings',
     1551        array(
     1552            'title' => __( 'Teaam Section', 'construction-landing-page' ),
     1553            'priority' => 75,
     1554            'panel' => 'construction_landing_page_home_page_settings',                     
     1555        )
     1556    );
     1557       
     1558     /** Note */
     1559     $wp_customize->add_setting(
     1560        'team_section_text',
     1561        array(
     1562            'default'           => '',
     1563            'sanitize_callback' => 'wp_kses_post'
     1564        )
     1565    );
     1566   
     1567    $wp_customize->add_control(
     1568        new Construction_Landing_Page_Note_Control(
     1569            $wp_customize,
     1570            'team_section_text',
     1571            array(
     1572                'section'     => 'construction_landing_page_team_settings',
     1573                'description' => sprintf( __( '%1$sThis feature is available in Pro version.%2$s %3$sUpgrade to Pro%4$s ', 'construction-landing-page' ),'<div class="featured-pro"><span>', '</span>', '<a href="https://rarathemes.com/wordpress-themes/construction-landing-page-pro/?utm_source=construction_landing_page&utm_medium=customizer&utm_campaign=upgrade_to_pro" target="_blank">', '</a></div>' ),
     1574            )
     1575        )
     1576    );
     1577   
     1578    $wp_customize->add_setting(
     1579        'team_section_settings',
     1580        array(
     1581            'default'           => 'one',
     1582            'sanitize_callback' => 'construction_landing_page_sanitize_radio'
     1583        )
     1584    );
     1585   
     1586    $wp_customize->add_control(
     1587        new Construction_Landing_Page_Radio_Image_Control(
     1588            $wp_customize,
     1589            'team_section_settings',
     1590            array(
     1591                'section'     => 'construction_landing_page_team_settings',
     1592                'feat_class' => 'upg-to-pro',
     1593                'choices'     => array(
     1594                    'one'       => get_template_directory_uri() . '/images/pro/team.png',
     1595                ),
     1596            )
     1597        )
     1598    );
     1599
     1600    /** Counters Section Setting*/
     1601    $wp_customize->add_section(
     1602        'construction_landing_page_counters_settings',
     1603        array(
     1604            'title' => __( 'Counters Section', 'construction-landing-page' ),
     1605            'priority' => 75,
     1606            'panel' => 'construction_landing_page_home_page_settings',                     
     1607        )
     1608    );
     1609       
     1610     /** Note */
     1611     $wp_customize->add_setting(
     1612        'counters_section_text',
     1613        array(
     1614            'default'           => '',
     1615            'sanitize_callback' => 'wp_kses_post'
     1616        )
     1617    );
     1618   
     1619    $wp_customize->add_control(
     1620        new Construction_Landing_Page_Note_Control(
     1621            $wp_customize,
     1622            'counters_section_text',
     1623            array(
     1624                'section'     => 'construction_landing_page_counters_settings',
     1625                'description' => sprintf( __( '%1$sThis feature is available in Pro version.%2$s %3$sUpgrade to Pro%4$s ', 'construction-landing-page' ),'<div class="featured-pro"><span>', '</span>', '<a href="https://rarathemes.com/wordpress-themes/construction-landing-page-pro/?utm_source=construction_landing_page&utm_medium=customizer&utm_campaign=upgrade_to_pro" target="_blank">', '</a></div>' ),
     1626            )
     1627        )
     1628    );
     1629   
     1630    $wp_customize->add_setting(
     1631        'counters_section_settings',
     1632        array(
     1633            'default'           => 'one',
     1634            'sanitize_callback' => 'construction_landing_page_sanitize_radio',
     1635            'transport'         => 'postMessage',
     1636        )
     1637    );
     1638   
     1639    $wp_customize->add_control(
     1640        new Construction_Landing_Page_Radio_Image_Control(
     1641            $wp_customize,
     1642            'counters_section_settings',
     1643            array(
     1644                'section'     => 'construction_landing_page_counters_settings',
     1645                'feat_class' => 'upg-to-pro',
     1646                'choices'     => array(
     1647                    'one'       => get_template_directory_uri() . '/images/pro/counters-design.png',
     1648                    'two'       => get_template_directory_uri() . '/images/pro/counters.png',
     1649                ),
     1650            )
     1651        )
     1652    );
     1653
     1654    /** One Page Menu Section Setting*/
     1655    $wp_customize->add_section(
     1656        'construction_landing_page_one_page_settings',
     1657        array(
     1658            'title' => __( 'One Page Menu Section', 'construction-landing-page' ),
     1659            'priority' => 75,
     1660            'panel' => 'construction_landing_page_home_page_settings',                     
     1661        )
     1662    );
     1663       
     1664     /** Note */
     1665     $wp_customize->add_setting(
     1666        'one_page_section_text',
     1667        array(
     1668            'default'           => '',
     1669            'sanitize_callback' => 'wp_kses_post'
     1670        )
     1671    );
     1672   
     1673    $wp_customize->add_control(
     1674        new Construction_Landing_Page_Note_Control(
     1675            $wp_customize,
     1676            'one_page_section_text',
     1677            array(
     1678                'section'     => 'construction_landing_page_one_page_settings',
     1679                'description' => sprintf( __( '%1$sThis feature is available in Pro version.%2$s %3$sUpgrade to Pro%4$s ', 'construction-landing-page' ),'<div class="featured-pro"><span>', '</span>', '<a href="https://rarathemes.com/wordpress-themes/construction-landing-page-pro/?utm_source=construction_landing_page&utm_medium=customizer&utm_campaign=upgrade_to_pro" target="_blank">', '</a></div>' ),
     1680            )
     1681        )
     1682    );
     1683   
     1684    $wp_customize->add_setting(
     1685        'one_page_section_settings',
     1686        array(
     1687            'default'           => 'one',
     1688            'sanitize_callback' => 'construction_landing_page_sanitize_radio'
     1689        )
     1690    );
     1691   
     1692    $wp_customize->add_control(
     1693        new Construction_Landing_Page_Radio_Image_Control(
     1694            $wp_customize,
     1695            'one_page_section_settings',
     1696            array(
     1697                'section'     => 'construction_landing_page_one_page_settings',
     1698                'feat_class' => 'upg-to-pro',
     1699                'choices'     => array(
     1700                    'one'       => get_template_directory_uri() . '/images/pro/one-page.png',
     1701                ),
     1702            )
     1703        )
     1704    );
    12661705
    12671706    /** Contact Form Section */
     
    13121751        )
    13131752    );
     1753
    13141754   
    13151755    if( construction_landing_page_is_cf7_activated() ){
     
    13341774    }
    13351775
     1776     /** Note */
     1777     $wp_customize->add_setting(
     1778        'contact_section_text',
     1779        array(
     1780            'default'           => '',
     1781            'sanitize_callback' => 'wp_kses_post'
     1782        )
     1783    );
     1784   
     1785    $wp_customize->add_control(
     1786        new Construction_Landing_Page_Note_Control(
     1787            $wp_customize,
     1788            'contact_section_text',
     1789            array(
     1790                'section'     => 'construction_landing_page_contact_form_settings',
     1791                'description' => sprintf( __( '%1$sThis feature is available in Pro version.%2$s %3$sUpgrade to Pro%4$s ', 'construction-landing-page' ),'<div class="featured-pro"><span>', '</span>', '<a href="https://rarathemes.com/wordpress-themes/construction-landing-page-pro/?utm_source=construction_landing_page&utm_medium=customizer&utm_campaign=upgrade_to_pro" target="_blank">', '</a></div>' ),
     1792            )
     1793        )
     1794    );
     1795   
     1796    $wp_customize->add_setting(
     1797        'contact_section_settings',
     1798        array(
     1799            'default'           => 'one',
     1800            'sanitize_callback' => 'construction_landing_page_sanitize_radio'
     1801        )
     1802    );
     1803   
     1804    $wp_customize->add_control(
     1805        new Construction_Landing_Page_Radio_Image_Control(
     1806            $wp_customize,
     1807            'contact_section_settings',
     1808            array(
     1809                'section'     => 'construction_landing_page_contact_form_settings',
     1810                'feat_class' => 'upg-to-pro',
     1811                'choices'     => array(
     1812                    'one'       => get_template_directory_uri() . '/images/pro/map.png',
     1813                ),
     1814            )
     1815        )
     1816    );
     1817
    13361818    /** BreadCrumb Settings */
    13371819    $wp_customize->add_section(
     
    14761958        )
    14771959    );
     1960
     1961    /** Note */
     1962    $wp_customize->add_setting(
     1963        'footer_section_text',
     1964        array(
     1965            'default'           => '',
     1966            'sanitize_callback' => 'wp_kses_post'
     1967        )
     1968    );
     1969   
     1970    $wp_customize->add_control(
     1971        new Construction_Landing_Page_Note_Control(
     1972            $wp_customize,
     1973            'footer_section_text',
     1974            array(
     1975                'section'     => 'construction_landing_page_footer_section',
     1976                'description' => sprintf( __( '%1$sThis feature is available in Pro version.%2$s %3$sUpgrade to Pro%4$s ', 'construction-landing-page' ),'<div class="featured-pro"><span>', '</span>', '<a href="https://rarathemes.com/wordpress-themes/construction-landing-page-pro/?utm_source=construction_landing_page&utm_medium=customizer&utm_campaign=upgrade_to_pro" target="_blank">', '</a></div>' ),
     1977            )
     1978        )
     1979    );
     1980   
     1981    $wp_customize->add_setting(
     1982        'footer_section_settings',
     1983        array(
     1984            'default'           => 'one',
     1985            'sanitize_callback' => 'construction_landing_page_sanitize_radio'
     1986        )
     1987    );
     1988   
     1989    $wp_customize->add_control(
     1990        new Construction_Landing_Page_Radio_Image_Control(
     1991            $wp_customize,
     1992            'footer_section_settings',
     1993            array(
     1994                'section'     => 'construction_landing_page_footer_section',
     1995                'feat_class' => 'upg-to-pro',
     1996                'choices'     => array(
     1997                    'one'       => get_template_directory_uri() . '/images/pro/footer.png',
     1998                ),
     1999            )
     2000        )
     2001    );
     2002   
    14782003 
    14792004
     
    15472072add_action( 'customize_preview_init', 'construction_landing_page_customize_preview_js' );
    15482073
    1549 
     2074/**
     2075 * Construction Landing Page Custom Control
     2076 *
     2077 * @package Construction_Landing_Page
     2078*/
     2079
     2080if( ! function_exists( 'construction_landing_page_register_custom_controls' ) ) :
     2081/**
     2082 * Register Custom Controls
     2083*/
     2084function construction_landing_page_register_custom_controls( $wp_customize ){   
     2085    // Load our custom control.
     2086    require_once get_template_directory() . '/inc/custom-controls/note/class-note-control.php';
     2087    require_once get_template_directory() . '/inc/custom-controls/radioimg/class-radio-image-control.php';
     2088           
     2089    // Register the control type.
     2090    $wp_customize->register_control_type( 'construction_landing_page_Radio_Image_Control' );
     2091}
     2092endif;
     2093add_action( 'customize_register', 'construction_landing_page_register_custom_controls', 8 );
     2094
     2095/**
     2096 * Sanitize radio button
     2097 */
     2098function construction_landing_page_sanitize_radio( $input, $setting ) {
     2099    // Ensure input is a slug.
     2100    $input = sanitize_key( $input );
     2101    // Get list of choices from the control associated with the setting.
     2102    $choices = $setting->manager->get_control( $setting->id )->choices;
     2103    // If the input is a valid key, return it; otherwise, return the default.
     2104    return ( array_key_exists( $input, $choices ) ? $input : $setting->default );
     2105}
    15502106
    15512107/**
  • construction-landing-page/1.3.9/inc/demo-content.php

    r223803 r228823  
    2222    );
    2323
    24     $demo_content_description = sprintf( __( 'Construction Landing Page comes with demo content import feature. You can import the demo content with just one click. For step-by-step video tutorial, %1$sClick here%2$s', 'construction-landing-page' ), '<a class="documentation" href="' . esc_url( 'https://rarathemes.com/blog/import-demo-content-rara-themes/' ) . '" target="_blank">', '</a>' );
     24    $demo_content_description = sprintf( __( 'Construction Landing Page comes with demo content import feature. You can import the demo content with just one click. For step-by-step video tutorial, %1$sClick here%2$s', 'construction-landing-page' ), '<a class="documentation" href="' . esc_url( 'https://rarathemes.com/blog/import-demo-content-rara-themes/?utm_source=construction_landing_page&utm_medium=customizer&utm_campaign=docs' ) . '" target="_blank">', '</a>' );
    2525
    2626    $wp_customize->add_control(
     
    4141    }
    4242
    43     $theme_demo_content_desc .= '<span class="sticky_info_row download-link"><label class="row-element">' . __( 'Download Demo Content Zip File', 'construction-landing-page' ) . ': </label><a href="' . esc_url( 'https://docs.rarathemes.com/docs/construction-landing-page/theme-installation-and-activation/how-to-import-demo-content/' ) . '" target="_blank">' . __( 'here', 'construction-landing-page' ) . '</a></span><br />';
     43    $theme_demo_content_desc .= '<span class="sticky_info_row download-link"><label class="row-element">' . __( 'Download Demo Content Zip File', 'construction-landing-page' ) . ': </label><a href="' . esc_url( 'https://docs.rarathemes.com/docs/construction-landing-page/theme-installation-and-activation/how-to-import-demo-content/?utm_source=construction_landing_page&utm_medium=customizer&utm_campaign=docs' ) . '" target="_blank">' . __( 'here', 'construction-landing-page' ) . '</a></span><br />';
    4444
    4545    $wp_customize->add_setting( 'theme_demo_content_info',array(
  • construction-landing-page/1.3.9/inc/getting-started/tabs/free-vs-pro-panel.php

    r223803 r228823  
    1010    <div class="panel-aside">                       
    1111        <img src="<?php echo esc_url( get_template_directory_uri() . '/inc/getting-started/images/free-vs-pro.jpg' ); //@todo change respective images.?>" alt="<?php esc_attr_e( 'Free vs Pro', 'construction-landing-page' ); ?>"/>
    12         <a class="button button-primary" href="<?php echo esc_url( 'https://rarathemes.com/wordpress-themes/construction-landing-page-pro/' ); ?>" title="<?php esc_attr_e( 'View Premium Version', 'construction-landing-page' ); ?>" target="_blank">
     12        <a class="button button-primary" href="<?php echo esc_url( 'https://rarathemes.com/wordpress-themes/construction-landing-page-pro/?utm_source=construction_landing_page&utm_medium=dashboard&utm_campaign=upgrade_to_pro' ); ?>" title="<?php esc_attr_e( 'View Premium Version', 'construction-landing-page' ); ?>" target="_blank">
    1313            <?php esc_html_e( 'View Pro', 'construction-landing-page' ); ?>
    1414        </a>
  • construction-landing-page/1.3.9/inc/getting-started/tabs/help-panel.php

    r223803 r228823  
    1212        <h4><?php esc_html_e( 'View Our Documentation Link', 'construction-landing-page' ); ?></h4>
    1313        <p><?php esc_html_e( 'Are you new to the WordPress world? Our step by step easy documentation guide will help you create an attractive and engaging website without any prior coding knowledge or experience.', 'construction-landing-page' ); ?></p>
    14         <a class="button button-primary" href="<?php echo esc_url( 'https://docs.rarathemes.com/docs/' . CONSTRUCTION_LANDING_PAGE_THEME_TEXTDOMAIN . '/' ); ?>" title="<?php esc_attr_e( 'Visit the Documentation', 'construction-landing-page' ); ?>" target="_blank">
     14        <a class="button button-primary" href="<?php echo esc_url( 'https://docs.rarathemes.com/docs/' . CONSTRUCTION_LANDING_PAGE_THEME_TEXTDOMAIN . '/?utm_source=construction_landing_page&utm_medium=dashboard&utm_campaign=docs' ); ?>" title="<?php esc_attr_e( 'Visit the Documentation', 'construction-landing-page' ); ?>" target="_blank">
    1515            <?php esc_html_e( 'View Documentation', 'construction-landing-page' ); ?>
    1616        </a>
     
    1919    <div class="panel-aside">
    2020        <h4><?php esc_html_e( 'Support Ticket', 'construction-landing-page' ); ?></h4>
    21         <p><?php printf( __( 'It\'s always better to visit our %1$sDocumentation Guide%2$s before you send us a support query.', 'construction-landing-page' ), '<a href="'. esc_url( 'https://docs.rarathemes.com/docs/' . CONSTRUCTION_LANDING_PAGE_THEME_TEXTDOMAIN . '/' ) .'" target="_blank">', '</a>' ); ?></p>
    22         <p><?php printf( __( 'If the Documentation Guide didn\'t help you, contact us via our %1$sSupport Ticket%2$s. We reply to all the support queries within one business day, except on the weekends.', 'construction-landing-page' ), '<a href="'. esc_url( 'https://rarathemes.com/support-ticket/' ) .'" target="_blank">', '</a>' ); ?></p>
    23         <a class="button button-primary" href="<?php echo esc_url( 'https://rarathemes.com/support-ticket/' ); ?>" title="<?php esc_attr_e( 'Visit the Support', 'construction-landing-page' ); ?>" target="_blank">
     21        <p><?php printf( __( 'It\'s always better to visit our %1$sDocumentation Guide%2$s before you send us a support query.', 'construction-landing-page' ), '<a href="'. esc_url( 'https://docs.rarathemes.com/docs/' . CONSTRUCTION_LANDING_PAGE_THEME_TEXTDOMAIN . '/?utm_source=construction_landing_page&utm_medium=dashboard&utm_campaign=docs' ) .'" target="_blank">', '</a>' ); ?></p>
     22        <p><?php printf( __( 'If the Documentation Guide didn\'t help you, contact us via our %1$sSupport Ticket%2$s. We reply to all the support queries within one business day, except on the weekends.', 'construction-landing-page' ), '<a href="'. esc_url( 'https://rarathemes.com/support-ticket/?utm_source=construction_landing_page&utm_medium=dashboard&utm_campaign=support' ) .'" target="_blank">', '</a>' ); ?></p>
     23        <a class="button button-primary" href="<?php echo esc_url( 'https://rarathemes.com/support-ticket/?utm_source=construction_landing_page&utm_medium=dashboard&utm_campaign=support' ); ?>" title="<?php esc_attr_e( 'Visit the Support', 'construction-landing-page' ); ?>" target="_blank">
    2424            <?php esc_html_e( 'Contact Support', 'construction-landing-page' ); ?>
    2525        </a>
     
    2929        <h4><?php printf( esc_html__( 'View Our %1$s Demo', 'construction-landing-page' ), CONSTRUCTION_LANDING_PAGE_THEME_NAME ); ?></h4>
    3030        <p><?php esc_html_e( 'Visit the demo to get more idea about our theme design and its features.', 'construction-landing-page' ); ?></p>
    31         <a class="button button-primary" href="<?php echo esc_url( 'https://rarathemes.com/previews/?theme=' . CONSTRUCTION_LANDING_PAGE_THEME_TEXTDOMAIN . '' ); ?>" title="<?php esc_attr_e( 'Visit the Demo', 'construction-landing-page' ); ?>" target="_blank">
     31        <a class="button button-primary" href="<?php echo esc_url( 'https://rarathemes.com/previews/?theme=' . CONSTRUCTION_LANDING_PAGE_THEME_TEXTDOMAIN . '&utm_source=construction_landing_page&utm_medium=dashboard&utm_campaign=theme_demo' ); ?>" title="<?php esc_attr_e( 'Visit the Demo', 'construction-landing-page' ); ?>" target="_blank">
    3232            <?php esc_html_e( 'View Demo', 'construction-landing-page' ); ?>
    3333        </a>
  • construction-landing-page/1.3.9/inc/getting-started/tabs/link-panel.php

    r223803 r228823  
    1111        <p><?php esc_html_e( 'The Pro version of the theme allows you to change the look and feel of the website with just a few clicks. You can easily change the color, background image and pattern as well as fonts of the website with the Pro version. Also, the Pro theme features more homepage sections than free version to allow you to showcase your organization services in a better way boosting the growth of the organization. Furthermore, the premium theme comes with multiple predefined page templates.', 'construction-landing-page' ); ?></p>
    1212        <p><?php esc_html_e( 'Also, the Pro version gets regular updates and has a dedicated support team to solve your queries.', 'construction-landing-page' ); ?></p>
    13         <a class="button button-primary" href="<?php echo esc_url( 'https://rarathemes.com/wordpress-themes/construction-landing-page-pro/' ); ?>" title="<?php esc_attr_e( 'View Premium Version', 'construction-landing-page' ); ?>" target="_blank">
     13        <a class="button button-primary" href="<?php echo esc_url( 'https://rarathemes.com/wordpress-themes/construction-landing-page-pro/?utm_source=construction_landing_page&utm_medium=dashboard&utm_campaign=upgrade_to_pro' ); ?>" title="<?php esc_attr_e( 'View Premium Version', 'construction-landing-page' ); ?>" target="_blank">
    1414            <?php esc_html_e( 'Read more about the features here', 'construction-landing-page' ); ?>
    1515        </a>
     
    2121        <p><?php esc_html_e( 'Our documentation comes with a step-by-step guide from installing WordPress to customizing our theme to creating an attractive and engaging website.', 'construction-landing-page' ); ?></p>
    2222
    23         <a class="button button-primary" href="<?php echo esc_url( 'https://docs.rarathemes.com/docs/' . CONSTRUCTION_LANDING_PAGE_THEME_TEXTDOMAIN . '/' ); ?>" title="<?php esc_attr_e( 'Visit the knowledge base', 'construction-landing-page' ); ?>" target="_blank"><?php esc_html_e( 'Visit the Knowledge Base', 'construction-landing-page' ); ?></a>
     23        <a class="button button-primary" href="<?php echo esc_url( 'https://docs.rarathemes.com/docs/' . CONSTRUCTION_LANDING_PAGE_THEME_TEXTDOMAIN . '/?utm_source=construction_landing_page&utm_medium=dashboard&utm_campaign=docs' ); ?>" title="<?php esc_attr_e( 'Visit the knowledge base', 'construction-landing-page' ); ?>" target="_blank"><?php esc_html_e( 'Visit the Knowledge Base', 'construction-landing-page' ); ?></a>
    2424    </div><!-- .panel-aside knowledge base -->
    2525</div><!-- .panel-right -->
  • construction-landing-page/1.3.9/inc/getting-started/tabs/support-panel.php

    r223803 r228823  
    3535        <h3 class="toggle-title"><?php esc_html_e( 'How do I change the copyright text?', 'construction-landing-page' ); ?></h3>
    3636        <div class="toggle-content">
    37             <p><?php printf( __( 'You can change the copyright text going to %1$sAppearance > Customize > Footer Settings%2$s. However, if you want to hide the author credit text, please %3$supgrade to the Pro version%4$s.', 'construction-landing-page' ), '<b>', '</b>', '<a href="'. esc_url( 'https://rarathemes.com/wordpress-themes/construction-landing-page-pro/' ) .'" target="_blank">', '</a>' ); ?></p>
     37            <p><?php printf( __( 'You can change the copyright text going to %1$sAppearance > Customize > Footer Settings%2$s. However, if you want to hide the author credit text, please %3$supgrade to the Pro version%4$s.', 'construction-landing-page' ), '<b>', '</b>', '<a href="'. esc_url( 'https://rarathemes.com/wordpress-themes/construction-landing-page-pro/?utm_source=construction_landing_page&utm_medium=dashboard&utm_campaign=upgrade_to_pro' ) .'" target="_blank">', '</a>' ); ?></p>
    3838        </div>
    3939    </div>
     
    4444            <p><?php esc_html_e( 'If your customizer is not loading properly or you are having issues with the theme, it might be due to the plugin conflict.', 'construction-landing-page' ); ?></p>
    4545            <p><?php printf( __( 'To solve the issue, deactivate all the plugins first, except the ones recommended by the theme. Then, hard reload your website using %1$s"Ctrl+Shift+R"%2$s on Windows and %1$s"Cmd+Shift+R"%2$s on Mac. If the issues are fixed, start activating the plugins one by one, and reload and check your site each time. This will help you find out the plugin that is causing the problem.', 'construction-landing-page' ), '<b>', '</b>' ); ?></p>
    46             <p><?php printf( __( 'If this didn\'t help, please contact us via our %1$sSupport Ticket%2$s.', 'construction-landing-page' ), '<a href="'. esc_url( 'https://rarathemes.com/support-ticket/' ) .'" target="_blank">', '</a>' ); ?></p>
     46            <p><?php printf( __( 'If this didn\'t help, please contact us via our %1$sSupport Ticket%2$s.', 'construction-landing-page' ), '<a href="'. esc_url( 'https://rarathemes.com/support-ticket/?utm_source=construction_landing_page&utm_medium=dashboard&utm_campaign=support' ) .'" target="_blank">', '</a>' ); ?></p>
    4747        </div>
    4848    </div>
  • construction-landing-page/1.3.9/inc/info.php

    r137989 r228823  
    4141   
    4242    $theme_info = '';
    43     $theme_info .= '<span class="sticky_info_row"><label class="row-element">' . __( 'Video Tutorial', 'construction-landing-page' ) . ': </label><a href="' . esc_url( 'https://docs.rarathemes.com/docs/construction-landing-page/' ) . '" target="_blank">' . __( 'here', 'construction-landing-page' ) . '</a></span><br />';
    44     $theme_info .= '<span class="sticky_info_row"><label class="row-element">' . __( 'Theme Demo', 'construction-landing-page' ) . ': </label><a href="' . esc_url( 'https://rarathemes.com/previews/?theme=construction-landing-page' ) . '" target="_blank">' . __( 'here', 'construction-landing-page' ) . '</a></span><br />';
    45     $theme_info .= '<span class="sticky_info_row"><label class="row-element">' . __( 'Support Ticket', 'construction-landing-page' ) . ': </label><a href="' . esc_url( 'https://rarathemes.com/support-ticket/' ) . '" target="_blank">' . __( 'here', 'construction-landing-page' ) . '</a></span><br />';
     43    $theme_info .= '<span class="sticky_info_row"><label class="row-element">' . __( 'Video Tutorial', 'construction-landing-page' ) . ': </label><a href="' . esc_url( 'https://docs.rarathemes.com/docs/construction-landing-page/?utm_source=construction_landing_page&utm_medium=customizer&utm_campaign=docs' ) . '" target="_blank">' . __( 'here', 'construction-landing-page' ) . '</a></span><br />';
     44    $theme_info .= '<span class="sticky_info_row"><label class="row-element">' . __( 'Theme Demo', 'construction-landing-page' ) . ': </label><a href="' . esc_url( 'https://rarathemes.com/previews/?theme=construction-landing-page/?utm_source=construction_landing_page&utm_medium=customizer&utm_campaign=theme_demo' ) . '" target="_blank">' . __( 'here', 'construction-landing-page' ) . '</a></span><br />';
     45    $theme_info .= '<span class="sticky_info_row"><label class="row-element">' . __( 'Support Ticket', 'construction-landing-page' ) . ': </label><a href="' . esc_url( 'https://rarathemes.com/support-ticket/?utm_source=construction_landing_page&utm_medium=customizer&utm_campaign=support' ) . '" target="_blank">' . __( 'here', 'construction-landing-page' ) . '</a></span><br />';
    4646    $theme_info .= '<span class="sticky_info_row"><label class="row-element">' . __( 'Rate this theme', 'construction-landing-page' ) . ': </label><a href="' . esc_url( 'https://wordpress.org/support/theme/construction-landing-page/reviews/' ) . '" target="_blank">' . __( 'here', 'construction-landing-page' ) . '</a></span><br />';
    4747
     
    143143
    144144                <# if ( data.pro_text && data.pro_url ) { #>
    145                     <a href="{{ data.pro_url }}" class="button button-secondary alignright" target="_blank">{{ data.pro_text }}</a>
     145                    <a href="{{{ data.pro_url }}}" class="button button-secondary alignright" target="_blank">{{ data.pro_text }}</a>
    146146                <# } #>
    147147            </h3>
     
    165165                'priority' => 5,
    166166                'pro_text' => esc_html__( 'VIEW PRO THEME', 'construction-landing-page' ),
    167                 'pro_url'  => 'https://rarathemes.com/wordpress-themes/construction-landing-page-pro/'
     167                'pro_url'  => esc_url('https://rarathemes.com/wordpress-themes/construction-landing-page-pro/?utm_source=construction_landing_page&utm_medium=customizer&utm_campaign=upgrade_to_pro')
    168168            )
    169169        )
  • construction-landing-page/1.3.9/js/custom.min.js

    r223803 r228823  
    1 /*! construction-landing-page 1.3.8 2024-03-28 6:21:45 PM */
     1/*! construction-landing-page 1.3.9 2024-05-23 12:59:56 PM */
    22jQuery(document).ready(function(e){0<e(".our-projects .col").length&&e(".text-holder").each(function(){new PerfectScrollbar(e(this)[0])}),window.addEventListener("resize",function(){var e=window.innerWidth;console.log(e),991<=e&&document.body.classList.remove("menu-open")}),e(".menu-opener").on("click",function(){e("body").addClass("menu-open"),e(".mobile-menu .primary-navigation").addClass("toggled")}),e(".overlay").on("click",function(){e("body").removeClass("menu-open"),e(".mobile-menu .primary-navigation").removeClass("toggled")}),e(".close-mobile-menu").on("click",function(){e(".mobile-menu .primary-navigation").removeClass("toggled"),e("body").removeClass("menu-open")}),e('<button class="open-submenu "></button>').insertAfter(e(".mobile-menu ul .menu-item-has-children > a")),e(".mobile-menu ul li .open-submenu ").on("click",function(){e(this).next().slideToggle(),e(this).toggleClass("active")}),e("#site-navigation ul li a").on("focus",function(){e(this).parents("li").addClass("focus")}).on("blur",function(){e(this).parents("li").removeClass("focus")})});
  • construction-landing-page/1.3.9/js/customizer.min.js

    r223803 r228823  
    1 /*! construction-landing-page 1.3.8 2024-03-28 6:21:45 PM */
     1/*! construction-landing-page 1.3.9 2024-05-23 12:59:56 PM */
    22!function(i){wp.customize("blogname",function(t){t.bind(function(t){i(".site-title a").text(t)})}),wp.customize("blogdescription",function(t){t.bind(function(t){i(".site-description").text(t)})}),wp.customize("header_textcolor",function(t){t.bind(function(t){"blank"===t?i(".site-title a, .site-description").css({clip:"rect(1px, 1px, 1px, 1px)",position:"absolute"}):(i(".site-title a, .site-description").css({clip:"auto",position:"relative"}),i(".site-title a, .site-description").css({color:t}))})})}(jQuery);
  • construction-landing-page/1.3.9/js/modal-accessibility.min.js

    r223803 r228823  
    1 /*! construction-landing-page 1.3.8 2024-03-28 6:21:45 PM */
     1/*! construction-landing-page 1.3.9 2024-05-23 12:59:56 PM */
    22var constructionlandingpage=constructionlandingpage||{};function constructionlandingpageDomReady(e){if("function"==typeof e)return"interactive"===document.readyState||"complete"===document.readyState?e():void document.addEventListener("DOMContentLoaded",e,!1)}function constructionlandingpageToggleAttribute(e,t,n,o){void 0===n&&(n=!0),void 0===o&&(o=!1),e.getAttribute(t)!==n?e.setAttribute(t,n):e.setAttribute(t,o)}function constructionlandingpageFindParents(e,n){var o=[];return function e(t){t=t.parentNode;t instanceof HTMLElement&&(t.matches(n)&&o.push(t),e(t))}(e),o}constructionlandingpage.createEvent=function(e){var t;return"function"==typeof window.Event?t=new Event(e):(t=document.createEvent("Event")).initEvent(e,!0,!1),t},constructionlandingpage.coverModals={init:function(){document.querySelector(".cover-modal")&&(this.onToggle(),this.closeOnEscape(),this.hideAndShowModals(),this.keepFocusInModal())},onToggle:function(){document.querySelectorAll(".cover-modal").forEach(function(e){e.addEventListener("toggled",function(e){var e=e.target,t=document.body;e.classList.contains("active")?t.classList.add("showing-modal"):(t.classList.remove("showing-modal"),t.classList.add("hiding-modal"),setTimeout(function(){t.classList.remove("hiding-modal")},500))})})},closeOnEscape:function(){document.addEventListener("keydown",function(e){27===e.keyCode&&(e.preventDefault(),document.querySelectorAll(".cover-modal.active").forEach(function(e){this.untoggleModal(e)}.bind(this)))}.bind(this))},hideAndShowModals:function(){var c=document,l=window,e=c.querySelectorAll(".cover-modal"),r=c.documentElement.style,s=c.querySelector("#wpadminbar");function d(e){var t,n=l.pageYOffset;return s?(t=n+s.getBoundingClientRect().height,e?-t:t):0===n?0:-n}function u(){return{"overflow-y":l.innerHeight>c.documentElement.getBoundingClientRect().height?"hidden":"scroll",position:"fixed",width:"100%",top:d(!0)+"px",left:0}}e.forEach(function(i){i.addEventListener("toggle-target-before-inactive",function(e){var t=u(),n=l.pageYOffset,o=Math.abs(d())-n+"px",a=l.matchMedia("(max-width: 600px)");e.target===i&&(Object.keys(t).forEach(function(e){r.setProperty(e,t[e])}),l.constructionlandingpage.scrolled=parseInt(t.top,10),s&&(c.body.style.setProperty("padding-top",o),a.matches)&&(n>=d()?i.style.setProperty("top",0):i.style.setProperty("top",d()-n+"px")),i.classList.add("show-modal"))}),i.addEventListener("toggle-target-after-inactive",function(e){e.target===i&&setTimeout(function(){var e=constructionlandingpage.toggles.clickedEl;i.classList.remove("show-modal"),Object.keys(u()).forEach(function(e){r.removeProperty(e)}),s&&(c.body.style.removeProperty("padding-top"),i.style.removeProperty("top")),!1!==e&&(e.focus(),e=!1),l.scrollTo(0,Math.abs(l.constructionlandingpage.scrolled+d())),l.constructionlandingpage.scrolled=0},500)})})},untoggleModal:function(e){var t,n=!1;e.dataset.modalTargetString&&(t=e.dataset.modalTargetString,n=document.querySelector('*[data-toggle-target="'+t+'"]')),n?n.click():e.classList.remove("active")},keepFocusInModal:function(){var r=document;r.addEventListener("keydown",function(e){var t,n,o,a,i,c,l=constructionlandingpage.toggles.clickedEl;l&&r.body.classList.contains("showing-modal")&&(l=l.dataset.toggleTarget,i="input, a, button",a=r.querySelector(l),t=a.querySelectorAll(i),t=Array.prototype.slice.call(t),".menu-modal"===l&&(n=(n=window.matchMedia("(min-width: 768px)").matches)?".expanded-menu":".mobile-menu",(t=t.filter(function(e){return null!==e.closest(n)&&null!==e.offsetParent})).unshift(r.querySelector(".close-nav-toggle")),o=r.querySelector(".menu-bottom > nav"))&&o.querySelectorAll(i).forEach(function(e){t.push(e)}),".main-menu-modal"===l&&(n=(n=window.matchMedia("(min-width: 1025px)").matches)?".expanded-menu":".mobile-menu",(t=t.filter(function(e){return null!==e.closest(n)&&null!==e.offsetParent})).unshift(r.querySelector(".close-mobile-menu")),o=r.querySelector(".menu-bottom > nav"))&&o.querySelectorAll(i).forEach(function(e){t.push(e)}),a=t[t.length-1],l=t[0],o=r.activeElement,i=9===e.keyCode,!(c=e.shiftKey)&&i&&a===o&&(e.preventDefault(),l.focus()),c)&&i&&l===o&&(e.preventDefault(),a.focus())})}},constructionlandingpage.modalMenu={init:function(){this.expandLevel()},expandLevel:function(){document.querySelectorAll(".modal-menu").forEach(function(e){e=e.querySelector(".current-menu-item");e&&constructionlandingpageFindParents(e,"li").forEach(function(e){e=e.querySelector(".submenu-toggle");e&&constructionlandingpage.toggles.performToggle(e,!0)})})}},constructionlandingpage.toggles={clickedEl:!1,init:function(){this.toggle()},performToggle:function(e,n){var o,a,i=this,c=document,l=e,r=l.dataset.toggleTarget,s="active";c.querySelectorAll(".show-modal").length||(i.clickedEl=c.activeElement),(o="next"===r?l.nextSibling:c.querySelector(r)).classList.contains(s)?o.dispatchEvent(constructionlandingpage.createEvent("toggle-target-before-active")):o.dispatchEvent(constructionlandingpage.createEvent("toggle-target-before-inactive")),a=l.dataset.classToToggle||s,e=0,o.classList.contains("cover-modal")&&(e=10),setTimeout(function(){var e=o.classList.contains("sub-menu")?l.closest(".menu-item").querySelector(".sub-menu"):o,t=l.dataset.toggleDuration;"slidetoggle"!==l.dataset.toggleType||n||"0"===t?e.classList.toggle(a):constructionlandingpageMenuToggle(e,t),("next"===r||o.classList.contains("sub-menu")?l:c.querySelector('*[data-toggle-target="'+r+'"]')).classList.toggle(s),constructionlandingpageToggleAttribute(l,"aria-expanded","true","false"),i.clickedEl&&-1!==l.getAttribute("class").indexOf("close-")&&constructionlandingpageToggleAttribute(i.clickedEl,"aria-expanded","true","false"),l.dataset.toggleBodyClass&&c.body.classList.toggle(l.dataset.toggleBodyClass),l.dataset.setFocus&&(e=c.querySelector(l.dataset.setFocus))&&(o.classList.contains(s)?e.focus():e.blur()),o.dispatchEvent(constructionlandingpage.createEvent("toggled")),o.classList.contains(s)?o.dispatchEvent(constructionlandingpage.createEvent("toggle-target-after-active")):o.dispatchEvent(constructionlandingpage.createEvent("toggle-target-after-inactive"))},e)},toggle:function(){var n=this;document.querySelectorAll("*[data-toggle-target]").forEach(function(t){t.addEventListener("click",function(e){e.preventDefault(),n.performToggle(t)})})}},constructionlandingpageDomReady(function(){constructionlandingpage.toggles.init(),constructionlandingpage.coverModals.init()});
  • construction-landing-page/1.3.9/languages/construction-landing-page.pot

    r223803 r228823  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Construction Landing Page 1.3.8\n"
     5"Project-Id-Version: Construction Landing Page 1.3.9\n"
    66"Report-Msgid-Bugs-To: "
    77"https://wordpress.org/support/theme/construction-landing-page\n"
    8 "POT-Creation-Date: 2024-03-28 12:36:49+00:00\n"
     8"POT-Creation-Date: 2024-05-23 07:14:56+00:00\n"
    99"MIME-Version: 1.0\n"
    1010"Content-Type: text/plain; charset=utf-8\n"
     
    174174msgstr ""
    175175
    176 #: inc/customizer.php:243
     176#: inc/customizer.php:242 inc/customizer.php:294 inc/customizer.php:368
     177#: inc/customizer.php:433 inc/customizer.php:525 inc/customizer.php:1519
     178#: inc/customizer.php:1573 inc/customizer.php:1625 inc/customizer.php:1679
     179#: inc/customizer.php:1791 inc/customizer.php:1976
     180msgid "%1$sThis feature is available in Pro version.%2$s %3$sUpgrade to Pro%4$s "
     181msgstr ""
     182
     183#: inc/customizer.php:329
    177184msgid "Header Settings"
    178185msgstr ""
    179186
    180 #: inc/customizer.php:261
     187#: inc/customizer.php:347
    181188msgid "Phone Number"
    182189msgstr ""
    183190
    184 #: inc/customizer.php:273
     191#: inc/customizer.php:403
    185192msgid "Home Page Settings"
    186193msgstr ""
    187194
    188 #: inc/customizer.php:274
     195#: inc/customizer.php:404
    189196msgid "Customize Home Page Settings"
    190197msgstr ""
    191198
    192 #: inc/customizer.php:282
     199#: inc/customizer.php:412
     200msgid "Home Page Drag and Drop"
     201msgstr ""
     202
     203#: inc/customizer.php:464
    193204msgid "Banner Section"
    194205msgstr ""
    195206
    196 #: inc/customizer.php:300
     207#: inc/customizer.php:482
    197208msgid "Enable Banner Section"
    198209msgstr ""
    199210
    200 #: inc/customizer.php:301
     211#: inc/customizer.php:483
    201212msgid ""
    202213"Check to enable banner on the front page. The featured image and content of "
     
    206217msgstr ""
    207218
    208 #: inc/customizer.php:320 inc/customizer.php:1328
     219#: inc/customizer.php:502 inc/customizer.php:1768
    209220msgid "Contact Form"
    210221msgstr ""
    211222
    212 #: inc/customizer.php:322 inc/customizer.php:1330
     223#: inc/customizer.php:504 inc/customizer.php:1770
    213224msgid ""
    214225"Enter the Contact Form Shortcode. Ex. [contact-form-7 id=\"186\" "
     
    216227msgstr ""
    217228
    218 #: inc/customizer.php:332
     229#: inc/customizer.php:560
    219230msgid "About Section"
    220231msgstr ""
    221232
    222 #: inc/customizer.php:350
     233#: inc/customizer.php:578
    223234msgid "Enable About Section"
    224235msgstr ""
    225236
    226 #: inc/customizer.php:368 inc/customizer.php:476 inc/customizer.php:577
    227 #: inc/customizer.php:740 inc/customizer.php:1182 inc/customizer.php:1307
     237#: inc/customizer.php:596 inc/customizer.php:704 inc/customizer.php:805
     238#: inc/customizer.php:968 inc/customizer.php:1410 inc/customizer.php:1746
    228239msgid "Select Page"
    229240msgstr ""
    230241
    231 #: inc/customizer.php:369 inc/customizer.php:370 inc/customizer.php:477
    232 #: inc/customizer.php:578 inc/customizer.php:741 inc/customizer.php:1183
    233 #: inc/customizer.php:1308
     242#: inc/customizer.php:597 inc/customizer.php:598 inc/customizer.php:705
     243#: inc/customizer.php:806 inc/customizer.php:969 inc/customizer.php:1411
     244#: inc/customizer.php:1747
    234245msgid ""
    235246"Title and description of selected page will display as section title and "
     
    237248msgstr ""
    238249
    239 #: inc/customizer.php:390 inc/customizer.php:597 inc/customizer.php:760
    240 #: inc/customizer.php:1202
     250#: inc/customizer.php:618 inc/customizer.php:825 inc/customizer.php:988
     251#: inc/customizer.php:1430
    241252msgid "Select Post/Page One"
    242253msgstr ""
    243254
    244 #: inc/customizer.php:409 inc/customizer.php:616 inc/customizer.php:779
    245 #: inc/customizer.php:1221
     255#: inc/customizer.php:637 inc/customizer.php:844 inc/customizer.php:1007
     256#: inc/customizer.php:1449
    246257msgid "Select Post/Page Two"
    247258msgstr ""
    248259
    249 #: inc/customizer.php:428 inc/customizer.php:635 inc/customizer.php:798
    250 #: inc/customizer.php:1240
     260#: inc/customizer.php:656 inc/customizer.php:863 inc/customizer.php:1026
     261#: inc/customizer.php:1468
    251262msgid "Select Post/Page Three"
    252263msgstr ""
    253264
    254 #: inc/customizer.php:439
     265#: inc/customizer.php:667
    255266msgid "Promotional Block Section"
    256267msgstr ""
    257268
    258 #: inc/customizer.php:457
     269#: inc/customizer.php:685
    259270msgid "Enable Promotional Block Section"
    260271msgstr ""
    261272
    262 #: inc/customizer.php:496
     273#: inc/customizer.php:724
    263274msgid "CTA Button Label"
    264275msgstr ""
    265276
    266 #: inc/customizer.php:514
     277#: inc/customizer.php:742
    267278msgid "CTA Button Link"
    268279msgstr ""
    269280
    270 #: inc/customizer.php:531
     281#: inc/customizer.php:759
    271282msgid "Open Link in New Tab"
    272283msgstr ""
    273284
    274 #: inc/customizer.php:541
     285#: inc/customizer.php:769
    275286msgid "Portfolio Section"
    276287msgstr ""
    277288
    278 #: inc/customizer.php:559
     289#: inc/customizer.php:787
    279290msgid "Enable Portfolio Section"
    280291msgstr ""
    281292
    282 #: inc/customizer.php:654 inc/customizer.php:817 inc/customizer.php:1259
     293#: inc/customizer.php:882 inc/customizer.php:1045 inc/customizer.php:1487
    283294msgid "Select Post/Page Four"
    284295msgstr ""
    285296
    286 #: inc/customizer.php:673 inc/customizer.php:836
     297#: inc/customizer.php:901 inc/customizer.php:1064
    287298msgid "Select Post/Page Five"
    288299msgstr ""
    289300
    290 #: inc/customizer.php:692 inc/customizer.php:855
     301#: inc/customizer.php:920 inc/customizer.php:1083
    291302msgid "Select Post/Page Six"
    292303msgstr ""
    293304
    294 #: inc/customizer.php:703
     305#: inc/customizer.php:931
    295306msgid "Services Section"
    296307msgstr ""
    297308
    298 #: inc/customizer.php:721
     309#: inc/customizer.php:949
    299310msgid "Enable Services Section"
    300311msgstr ""
    301312
    302 #: inc/customizer.php:874
     313#: inc/customizer.php:1102
    303314msgid "Select Post/Page Seven"
    304315msgstr ""
    305316
    306 #: inc/customizer.php:893
     317#: inc/customizer.php:1121
    307318msgid "Select Post/Page Eight"
    308319msgstr ""
    309320
    310 #: inc/customizer.php:905
     321#: inc/customizer.php:1133
    311322msgid "Clients Section"
    312323msgstr ""
    313324
    314 #: inc/customizer.php:923
     325#: inc/customizer.php:1151
    315326msgid "Enable Clients Section"
    316327msgstr ""
    317328
    318 #: inc/customizer.php:941
     329#: inc/customizer.php:1169
    319330msgid "Section Title"
    320331msgstr ""
    321332
    322 #: inc/customizer.php:961
     333#: inc/customizer.php:1189
    323334msgid "Upload a logo (One)"
    324335msgstr ""
    325336
    326 #: inc/customizer.php:980
     337#: inc/customizer.php:1208
    327338msgid "Logo Url (One)"
    328339msgstr ""
    329340
    330 #: inc/customizer.php:1000
     341#: inc/customizer.php:1228
    331342msgid "Upload a logo (Two)"
    332343msgstr ""
    333344
    334 #: inc/customizer.php:1019
     345#: inc/customizer.php:1247
    335346msgid "Logo Url (Two)"
    336347msgstr ""
    337348
    338 #: inc/customizer.php:1039
     349#: inc/customizer.php:1267
    339350msgid "Upload a logo (Three)"
    340351msgstr ""
    341352
    342 #: inc/customizer.php:1058
     353#: inc/customizer.php:1286
    343354msgid "Logo Url (Three)"
    344355msgstr ""
    345356
    346 #: inc/customizer.php:1078
     357#: inc/customizer.php:1306
    347358msgid "Upload a logo (Four)"
    348359msgstr ""
    349360
    350 #: inc/customizer.php:1097
     361#: inc/customizer.php:1325
    351362msgid "Logo Url (Four)"
    352363msgstr ""
    353364
    354 #: inc/customizer.php:1117
     365#: inc/customizer.php:1345
    355366msgid "Upload a logo (Five)"
    356367msgstr ""
    357368
    358 #: inc/customizer.php:1136
     369#: inc/customizer.php:1364
    359370msgid "Logo Url (Five)"
    360371msgstr ""
    361372
    362 #: inc/customizer.php:1146
     373#: inc/customizer.php:1374
    363374msgid "Testimonials Section"
    364375msgstr ""
    365376
    366 #: inc/customizer.php:1164
     377#: inc/customizer.php:1392
    367378msgid "Enable Testimonials Section"
    368379msgstr ""
    369380
    370 #: inc/customizer.php:1271
     381#: inc/customizer.php:1498
     382msgid "Pricing Section"
     383msgstr ""
     384
     385#: inc/customizer.php:1552
     386msgid "Teaam Section"
     387msgstr ""
     388
     389#: inc/customizer.php:1604
     390msgid "Counters Section"
     391msgstr ""
     392
     393#: inc/customizer.php:1658
     394msgid "One Page Menu Section"
     395msgstr ""
     396
     397#: inc/customizer.php:1710
    371398msgid "Contact Form Section"
    372399msgstr ""
    373400
    374 #: inc/customizer.php:1289
     401#: inc/customizer.php:1728
    375402msgid "Enable Contact Form Section"
    376403msgstr ""
    377404
    378 #: inc/customizer.php:1340
     405#: inc/customizer.php:1822
    379406msgid "Breadcrumb Settings"
    380407msgstr ""
    381408
    382 #: inc/customizer.php:1359
     409#: inc/customizer.php:1841
    383410msgid "Enable Breadcrumb"
    384411msgstr ""
    385412
    386 #: inc/customizer.php:1377
     413#: inc/customizer.php:1859
    387414msgid "Show current"
    388415msgstr ""
    389416
    390 #: inc/customizer.php:1387 inc/extras.php:294
     417#: inc/customizer.php:1869 inc/extras.php:294
    391418msgid "Home"
    392419msgstr ""
    393420
    394 #: inc/customizer.php:1395
     421#: inc/customizer.php:1877
    395422msgid "Breadcrumb Home Text"
    396423msgstr ""
    397424
    398 #: inc/customizer.php:1405 inc/extras.php:293
     425#: inc/customizer.php:1887 inc/extras.php:293
    399426msgid ">"
    400427msgstr ""
    401428
    402 #: inc/customizer.php:1413
     429#: inc/customizer.php:1895
    403430msgid "Breadcrumb Separator"
    404431msgstr ""
    405432
    406 #: inc/customizer.php:1425
     433#: inc/customizer.php:1907
    407434msgid "Exclude Category Settings"
    408435msgstr ""
    409436
    410 #: inc/customizer.php:1445
     437#: inc/customizer.php:1927
    411438msgid "Exclude Categories"
    412439msgstr ""
    413440
    414 #: inc/customizer.php:1446
     441#: inc/customizer.php:1928
    415442msgid "Check multiple categories to exclude from blog and archive page."
    416443msgstr ""
    417444
    418 #: inc/customizer.php:1456
     445#: inc/customizer.php:1938
    419446msgid "Footer Settings"
    420447msgstr ""
    421448
    422 #: inc/customizer.php:1473
     449#: inc/customizer.php:1955
    423450msgid "Copyright Info"
    424451msgstr ""
  • construction-landing-page/1.3.9/readme.txt

    r223803 r228823  
    44Requires at least: 4.7
    55Requires PHP: 5.6
    6 Tested up to: 6.4
    7 Stable tag: 1.3.8
     6Tested up to: 6.5
     7Stable tag: 1.3.9
    88License: GNU General Public License v3 or later
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    131131== Change Log ==
    132132
     133    1.3.9 - May 23, 2024
     134    * Fix: Minor refinements have been done in the dashboard links.
     135
    133136    1.3.8 - March 28, 2024
    134137    * Update: Fontawesome library has been updated supporting new Twitter logo
  • construction-landing-page/1.3.9/style.css

    r223803 r228823  
    55Author URI: https://rarathemes.com/
    66Description: Construction Landing Page is a free WordPress theme for construction company. It is a WordPress theme with a contact form on the homepage, and includes several Call-to-Action sections to create high converting landing pages for construction and building business websites.  Construction Landing Page is clean, responsive (mobile-friendly), speed optimized, and SEO friendly. It includes an attractive banner with a contact form, Services section, Portfolio section, Client Section, testimonial section, Banner with Call to Action Button (CTA), and social media. It is WooCommerce (online shop) compatible and translation ready. Though this theme is created to make construction companies websites, you can use to make all kinds of websites such as web agency, portfolio, e-commerce, photography, business, corporate, restaurant, video, real estate, travel, wedding, education, parallax business portfolio, hotel, church, event, music, review, fitness, affiliate, lawyer, community, sports, medical, cafe, spa, teams, band, food, hair salon, jewelry, political, football, school, university, bed and breakfast, pub, resort, squeeze page, reservation and winery websites. Check the demo at https://rarathemes.com/previews/?theme=construction-landing-page, documentation at https://docs.rarathemes.com/docs/construction-landing-page/, and get support at https://rarathemes.com/support-ticket/.
    7 Version: 1.3.8
    8 Tested up to: 6.4
     7Version: 1.3.9
     8Tested up to: 6.5
    99Requires PHP: 5.6
    1010Requires at least: 4.7
Note: See TracChangeset for help on using the changeset viewer.