Changeset 228823
- Timestamp:
- 05/23/2024 08:36:14 AM (18 months ago)
- Location:
- construction-landing-page/1.3.9
- Files:
-
- 24 added
- 13 edited
- 1 copied
- . (copied) (copied from construction-landing-page/1.3.8)
- images/pro (added)
- images/pro/colors.png (added)
- images/pro/counters-design.png (added)
- images/pro/counters.png (added)
- images/pro/drag-and-drop.png (added)
- images/pro/footer.png (added)
- images/pro/header-contents.png (added)
- images/pro/header-layout.png (added)
- images/pro/map.png (added)
- images/pro/one-page.png (added)
- images/pro/pricing-design.png (added)
- images/pro/pricing.png (added)
- images/pro/slider-contents.png (added)
- images/pro/slider-options.png (added)
- images/pro/static-banner.png (added)
- images/pro/team.png (added)
- images/pro/typography.png (added)
- inc/custom-controls (added)
- inc/custom-controls/note (added)
- inc/custom-controls/note/class-note-control.php (added)
- inc/custom-controls/radioimg (added)
- inc/custom-controls/radioimg/class-radio-image-control.php (added)
- inc/custom-controls/radioimg/radio-image.css (added)
- inc/custom-controls/radioimg/radio-image.js (added)
- inc/customizer.php (modified) (10 diffs)
- inc/demo-content.php (modified) (2 diffs)
- inc/getting-started/tabs/free-vs-pro-panel.php (modified) (1 diff)
- inc/getting-started/tabs/help-panel.php (modified) (3 diffs)
- inc/getting-started/tabs/link-panel.php (modified) (2 diffs)
- inc/getting-started/tabs/support-panel.php (modified) (2 diffs)
- inc/info.php (modified) (3 diffs)
- js/custom.min.js (modified) (1 diff)
- js/customizer.min.js (modified) (1 diff)
- js/modal-accessibility.min.js (modified) (1 diff)
- languages/construction-landing-page.pot (modified) (5 diffs)
- readme.txt (modified) (2 diffs)
- style.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
construction-landing-page/1.3.9/inc/customizer.php
r178078 r228823 225 225 ); 226 226 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 227 269 $wp_customize->get_section( 'title_tagline' )->panel = 'wp_default_panel'; 228 270 $wp_customize->get_section( 'colors' )->panel = 'wp_default_panel'; … … 234 276 $wp_customize->get_setting( 'background_image' )->transport = 'refresh'; 235 277 $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 236 322 /** Default Settings Ends */ 237 323 … … 262 348 'section' => 'construction_landing_page_phone_number', 263 349 '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 ) 264 394 ) 265 395 ); … … 275 405 ) 276 406 ); 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 ); 277 459 278 460 /** Banner Setting*/ … … 325 507 ); 326 508 } 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 327 555 328 556 /** About Section */ … … 1264 1492 ); 1265 1493 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 ); 1266 1705 1267 1706 /** Contact Form Section */ … … 1312 1751 ) 1313 1752 ); 1753 1314 1754 1315 1755 if( construction_landing_page_is_cf7_activated() ){ … … 1334 1774 } 1335 1775 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 1336 1818 /** BreadCrumb Settings */ 1337 1819 $wp_customize->add_section( … … 1476 1958 ) 1477 1959 ); 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 1478 2003 1479 2004 … … 1547 2072 add_action( 'customize_preview_init', 'construction_landing_page_customize_preview_js' ); 1548 2073 1549 2074 /** 2075 * Construction Landing Page Custom Control 2076 * 2077 * @package Construction_Landing_Page 2078 */ 2079 2080 if( ! function_exists( 'construction_landing_page_register_custom_controls' ) ) : 2081 /** 2082 * Register Custom Controls 2083 */ 2084 function 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 } 2092 endif; 2093 add_action( 'customize_register', 'construction_landing_page_register_custom_controls', 8 ); 2094 2095 /** 2096 * Sanitize radio button 2097 */ 2098 function 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 } 1550 2106 1551 2107 /** -
construction-landing-page/1.3.9/inc/demo-content.php
r223803 r228823 22 22 ); 23 23 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>' ); 25 25 26 26 $wp_customize->add_control( … … 41 41 } 42 42 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 />'; 44 44 45 45 $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 10 10 <div class="panel-aside"> 11 11 <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"> 13 13 <?php esc_html_e( 'View Pro', 'construction-landing-page' ); ?> 14 14 </a> -
construction-landing-page/1.3.9/inc/getting-started/tabs/help-panel.php
r223803 r228823 12 12 <h4><?php esc_html_e( 'View Our Documentation Link', 'construction-landing-page' ); ?></h4> 13 13 <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"> 15 15 <?php esc_html_e( 'View Documentation', 'construction-landing-page' ); ?> 16 16 </a> … … 19 19 <div class="panel-aside"> 20 20 <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"> 24 24 <?php esc_html_e( 'Contact Support', 'construction-landing-page' ); ?> 25 25 </a> … … 29 29 <h4><?php printf( esc_html__( 'View Our %1$s Demo', 'construction-landing-page' ), CONSTRUCTION_LANDING_PAGE_THEME_NAME ); ?></h4> 30 30 <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"> 32 32 <?php esc_html_e( 'View Demo', 'construction-landing-page' ); ?> 33 33 </a> -
construction-landing-page/1.3.9/inc/getting-started/tabs/link-panel.php
r223803 r228823 11 11 <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> 12 12 <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"> 14 14 <?php esc_html_e( 'Read more about the features here', 'construction-landing-page' ); ?> 15 15 </a> … … 21 21 <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> 22 22 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> 24 24 </div><!-- .panel-aside knowledge base --> 25 25 </div><!-- .panel-right --> -
construction-landing-page/1.3.9/inc/getting-started/tabs/support-panel.php
r223803 r228823 35 35 <h3 class="toggle-title"><?php esc_html_e( 'How do I change the copyright text?', 'construction-landing-page' ); ?></h3> 36 36 <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> 38 38 </div> 39 39 </div> … … 44 44 <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> 45 45 <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> 47 47 </div> 48 48 </div> -
construction-landing-page/1.3.9/inc/info.php
r137989 r228823 41 41 42 42 $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 />'; 46 46 $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 />'; 47 47 … … 143 143 144 144 <# 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> 146 146 <# } #> 147 147 </h3> … … 165 165 'priority' => 5, 166 166 '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') 168 168 ) 169 169 ) -
construction-landing-page/1.3.9/js/custom.min.js
r223803 r228823 1 /*! construction-landing-page 1.3. 8 2024-03-28 6:21:45PM */1 /*! construction-landing-page 1.3.9 2024-05-23 12:59:56 PM */ 2 2 jQuery(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:45PM */1 /*! construction-landing-page 1.3.9 2024-05-23 12:59:56 PM */ 2 2 !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:45PM */1 /*! construction-landing-page 1.3.9 2024-05-23 12:59:56 PM */ 2 2 var 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 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Construction Landing Page 1.3. 8\n"5 "Project-Id-Version: Construction Landing Page 1.3.9\n" 6 6 "Report-Msgid-Bugs-To: " 7 7 "https://wordpress.org/support/theme/construction-landing-page\n" 8 "POT-Creation-Date: 2024-0 3-28 12:36:49+00:00\n"8 "POT-Creation-Date: 2024-05-23 07:14:56+00:00\n" 9 9 "MIME-Version: 1.0\n" 10 10 "Content-Type: text/plain; charset=utf-8\n" … … 174 174 msgstr "" 175 175 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 180 msgid "%1$sThis feature is available in Pro version.%2$s %3$sUpgrade to Pro%4$s " 181 msgstr "" 182 183 #: inc/customizer.php:329 177 184 msgid "Header Settings" 178 185 msgstr "" 179 186 180 #: inc/customizer.php: 261187 #: inc/customizer.php:347 181 188 msgid "Phone Number" 182 189 msgstr "" 183 190 184 #: inc/customizer.php: 273191 #: inc/customizer.php:403 185 192 msgid "Home Page Settings" 186 193 msgstr "" 187 194 188 #: inc/customizer.php: 274195 #: inc/customizer.php:404 189 196 msgid "Customize Home Page Settings" 190 197 msgstr "" 191 198 192 #: inc/customizer.php:282 199 #: inc/customizer.php:412 200 msgid "Home Page Drag and Drop" 201 msgstr "" 202 203 #: inc/customizer.php:464 193 204 msgid "Banner Section" 194 205 msgstr "" 195 206 196 #: inc/customizer.php: 300207 #: inc/customizer.php:482 197 208 msgid "Enable Banner Section" 198 209 msgstr "" 199 210 200 #: inc/customizer.php: 301211 #: inc/customizer.php:483 201 212 msgid "" 202 213 "Check to enable banner on the front page. The featured image and content of " … … 206 217 msgstr "" 207 218 208 #: inc/customizer.php: 320 inc/customizer.php:1328219 #: inc/customizer.php:502 inc/customizer.php:1768 209 220 msgid "Contact Form" 210 221 msgstr "" 211 222 212 #: inc/customizer.php: 322 inc/customizer.php:1330223 #: inc/customizer.php:504 inc/customizer.php:1770 213 224 msgid "" 214 225 "Enter the Contact Form Shortcode. Ex. [contact-form-7 id=\"186\" " … … 216 227 msgstr "" 217 228 218 #: inc/customizer.php: 332229 #: inc/customizer.php:560 219 230 msgid "About Section" 220 231 msgstr "" 221 232 222 #: inc/customizer.php: 350233 #: inc/customizer.php:578 223 234 msgid "Enable About Section" 224 235 msgstr "" 225 236 226 #: inc/customizer.php: 368 inc/customizer.php:476 inc/customizer.php:577227 #: inc/customizer.php: 740 inc/customizer.php:1182 inc/customizer.php:1307237 #: 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 228 239 msgid "Select Page" 229 240 msgstr "" 230 241 231 #: inc/customizer.php: 369 inc/customizer.php:370 inc/customizer.php:477232 #: inc/customizer.php: 578 inc/customizer.php:741 inc/customizer.php:1183233 #: inc/customizer.php:1 308242 #: 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 234 245 msgid "" 235 246 "Title and description of selected page will display as section title and " … … 237 248 msgstr "" 238 249 239 #: inc/customizer.php: 390 inc/customizer.php:597 inc/customizer.php:760240 #: inc/customizer.php:1 202250 #: inc/customizer.php:618 inc/customizer.php:825 inc/customizer.php:988 251 #: inc/customizer.php:1430 241 252 msgid "Select Post/Page One" 242 253 msgstr "" 243 254 244 #: inc/customizer.php: 409 inc/customizer.php:616 inc/customizer.php:779245 #: inc/customizer.php:1 221255 #: inc/customizer.php:637 inc/customizer.php:844 inc/customizer.php:1007 256 #: inc/customizer.php:1449 246 257 msgid "Select Post/Page Two" 247 258 msgstr "" 248 259 249 #: inc/customizer.php: 428 inc/customizer.php:635 inc/customizer.php:798250 #: inc/customizer.php:1 240260 #: inc/customizer.php:656 inc/customizer.php:863 inc/customizer.php:1026 261 #: inc/customizer.php:1468 251 262 msgid "Select Post/Page Three" 252 263 msgstr "" 253 264 254 #: inc/customizer.php: 439265 #: inc/customizer.php:667 255 266 msgid "Promotional Block Section" 256 267 msgstr "" 257 268 258 #: inc/customizer.php: 457269 #: inc/customizer.php:685 259 270 msgid "Enable Promotional Block Section" 260 271 msgstr "" 261 272 262 #: inc/customizer.php: 496273 #: inc/customizer.php:724 263 274 msgid "CTA Button Label" 264 275 msgstr "" 265 276 266 #: inc/customizer.php: 514277 #: inc/customizer.php:742 267 278 msgid "CTA Button Link" 268 279 msgstr "" 269 280 270 #: inc/customizer.php: 531281 #: inc/customizer.php:759 271 282 msgid "Open Link in New Tab" 272 283 msgstr "" 273 284 274 #: inc/customizer.php: 541285 #: inc/customizer.php:769 275 286 msgid "Portfolio Section" 276 287 msgstr "" 277 288 278 #: inc/customizer.php: 559289 #: inc/customizer.php:787 279 290 msgid "Enable Portfolio Section" 280 291 msgstr "" 281 292 282 #: inc/customizer.php: 654 inc/customizer.php:817 inc/customizer.php:1259293 #: inc/customizer.php:882 inc/customizer.php:1045 inc/customizer.php:1487 283 294 msgid "Select Post/Page Four" 284 295 msgstr "" 285 296 286 #: inc/customizer.php: 673 inc/customizer.php:836297 #: inc/customizer.php:901 inc/customizer.php:1064 287 298 msgid "Select Post/Page Five" 288 299 msgstr "" 289 300 290 #: inc/customizer.php: 692 inc/customizer.php:855301 #: inc/customizer.php:920 inc/customizer.php:1083 291 302 msgid "Select Post/Page Six" 292 303 msgstr "" 293 304 294 #: inc/customizer.php: 703305 #: inc/customizer.php:931 295 306 msgid "Services Section" 296 307 msgstr "" 297 308 298 #: inc/customizer.php: 721309 #: inc/customizer.php:949 299 310 msgid "Enable Services Section" 300 311 msgstr "" 301 312 302 #: inc/customizer.php: 874313 #: inc/customizer.php:1102 303 314 msgid "Select Post/Page Seven" 304 315 msgstr "" 305 316 306 #: inc/customizer.php: 893317 #: inc/customizer.php:1121 307 318 msgid "Select Post/Page Eight" 308 319 msgstr "" 309 320 310 #: inc/customizer.php: 905321 #: inc/customizer.php:1133 311 322 msgid "Clients Section" 312 323 msgstr "" 313 324 314 #: inc/customizer.php: 923325 #: inc/customizer.php:1151 315 326 msgid "Enable Clients Section" 316 327 msgstr "" 317 328 318 #: inc/customizer.php: 941329 #: inc/customizer.php:1169 319 330 msgid "Section Title" 320 331 msgstr "" 321 332 322 #: inc/customizer.php: 961333 #: inc/customizer.php:1189 323 334 msgid "Upload a logo (One)" 324 335 msgstr "" 325 336 326 #: inc/customizer.php: 980337 #: inc/customizer.php:1208 327 338 msgid "Logo Url (One)" 328 339 msgstr "" 329 340 330 #: inc/customizer.php:1 000341 #: inc/customizer.php:1228 331 342 msgid "Upload a logo (Two)" 332 343 msgstr "" 333 344 334 #: inc/customizer.php:1 019345 #: inc/customizer.php:1247 335 346 msgid "Logo Url (Two)" 336 347 msgstr "" 337 348 338 #: inc/customizer.php:1 039349 #: inc/customizer.php:1267 339 350 msgid "Upload a logo (Three)" 340 351 msgstr "" 341 352 342 #: inc/customizer.php:1 058353 #: inc/customizer.php:1286 343 354 msgid "Logo Url (Three)" 344 355 msgstr "" 345 356 346 #: inc/customizer.php:1 078357 #: inc/customizer.php:1306 347 358 msgid "Upload a logo (Four)" 348 359 msgstr "" 349 360 350 #: inc/customizer.php:1 097361 #: inc/customizer.php:1325 351 362 msgid "Logo Url (Four)" 352 363 msgstr "" 353 364 354 #: inc/customizer.php:1 117365 #: inc/customizer.php:1345 355 366 msgid "Upload a logo (Five)" 356 367 msgstr "" 357 368 358 #: inc/customizer.php:1 136369 #: inc/customizer.php:1364 359 370 msgid "Logo Url (Five)" 360 371 msgstr "" 361 372 362 #: inc/customizer.php:1 146373 #: inc/customizer.php:1374 363 374 msgid "Testimonials Section" 364 375 msgstr "" 365 376 366 #: inc/customizer.php:1 164377 #: inc/customizer.php:1392 367 378 msgid "Enable Testimonials Section" 368 379 msgstr "" 369 380 370 #: inc/customizer.php:1271 381 #: inc/customizer.php:1498 382 msgid "Pricing Section" 383 msgstr "" 384 385 #: inc/customizer.php:1552 386 msgid "Teaam Section" 387 msgstr "" 388 389 #: inc/customizer.php:1604 390 msgid "Counters Section" 391 msgstr "" 392 393 #: inc/customizer.php:1658 394 msgid "One Page Menu Section" 395 msgstr "" 396 397 #: inc/customizer.php:1710 371 398 msgid "Contact Form Section" 372 399 msgstr "" 373 400 374 #: inc/customizer.php:1 289401 #: inc/customizer.php:1728 375 402 msgid "Enable Contact Form Section" 376 403 msgstr "" 377 404 378 #: inc/customizer.php:1 340405 #: inc/customizer.php:1822 379 406 msgid "Breadcrumb Settings" 380 407 msgstr "" 381 408 382 #: inc/customizer.php:1 359409 #: inc/customizer.php:1841 383 410 msgid "Enable Breadcrumb" 384 411 msgstr "" 385 412 386 #: inc/customizer.php:1 377413 #: inc/customizer.php:1859 387 414 msgid "Show current" 388 415 msgstr "" 389 416 390 #: inc/customizer.php:1 387inc/extras.php:294417 #: inc/customizer.php:1869 inc/extras.php:294 391 418 msgid "Home" 392 419 msgstr "" 393 420 394 #: inc/customizer.php:1 395421 #: inc/customizer.php:1877 395 422 msgid "Breadcrumb Home Text" 396 423 msgstr "" 397 424 398 #: inc/customizer.php:1 405inc/extras.php:293425 #: inc/customizer.php:1887 inc/extras.php:293 399 426 msgid ">" 400 427 msgstr "" 401 428 402 #: inc/customizer.php:1 413429 #: inc/customizer.php:1895 403 430 msgid "Breadcrumb Separator" 404 431 msgstr "" 405 432 406 #: inc/customizer.php:1 425433 #: inc/customizer.php:1907 407 434 msgid "Exclude Category Settings" 408 435 msgstr "" 409 436 410 #: inc/customizer.php:1 445437 #: inc/customizer.php:1927 411 438 msgid "Exclude Categories" 412 439 msgstr "" 413 440 414 #: inc/customizer.php:1 446441 #: inc/customizer.php:1928 415 442 msgid "Check multiple categories to exclude from blog and archive page." 416 443 msgstr "" 417 444 418 #: inc/customizer.php:1 456445 #: inc/customizer.php:1938 419 446 msgid "Footer Settings" 420 447 msgstr "" 421 448 422 #: inc/customizer.php:1 473449 #: inc/customizer.php:1955 423 450 msgid "Copyright Info" 424 451 msgstr "" -
construction-landing-page/1.3.9/readme.txt
r223803 r228823 4 4 Requires at least: 4.7 5 5 Requires PHP: 5.6 6 Tested up to: 6. 47 Stable tag: 1.3. 86 Tested up to: 6.5 7 Stable tag: 1.3.9 8 8 License: GNU General Public License v3 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 131 131 == Change Log == 132 132 133 1.3.9 - May 23, 2024 134 * Fix: Minor refinements have been done in the dashboard links. 135 133 136 1.3.8 - March 28, 2024 134 137 * Update: Fontawesome library has been updated supporting new Twitter logo -
construction-landing-page/1.3.9/style.css
r223803 r228823 5 5 Author URI: https://rarathemes.com/ 6 6 Description: 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. 88 Tested up to: 6. 47 Version: 1.3.9 8 Tested up to: 6.5 9 9 Requires PHP: 5.6 10 10 Requires at least: 4.7
Note: See TracChangeset for help on using the changeset viewer.