Changeset 261174
- Timestamp:
- 02/27/2025 08:33:19 AM (9 months ago)
- Location:
- oceanwp/4.0.6
- Files:
-
- 14 edited
- 1 copied
- . (copied) (copied from oceanwp/4.0.5)
- README.md (modified) (1 diff)
- changelog.md (modified) (1 diff)
- inc/customizer/helpers.php (modified) (4 diffs)
- inc/customizer/options/footer-copyright.php (modified) (1 diff)
- inc/customizer/webfonts.php (modified) (1 diff)
- inc/themepanel/theme-panel.php (modified) (1 diff)
- inc/themepanel/views/layout/top-bar.php (modified) (2 diffs)
- inc/themepanel/views/panes/integration.php (modified) (2 diffs)
- inc/third/class-gutenberg.php (modified) (1 diff)
- languages/oceanwp.pot (modified) (8 diffs)
- readme.txt (modified) (1 diff)
- sass/style.scss (modified) (1 diff)
- style.css (modified) (1 diff)
- woocommerce/single-product/product-image.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
oceanwp/4.0.6/README.md
r257469 r261174 3 3 **Contributors:** The OceanWP Team 4 4 **Requires at least:** WordPress 5.6 5 **Tested up to:** WordPress 6.7. 16 **Stable tag:** 4.0. 55 **Tested up to:** WordPress 6.7.2 6 **Stable tag:** 4.0.6 7 7 **Requires PHP:** 7.4 8 8 **License:** GPLv2 or later -
oceanwp/4.0.6/changelog.md
r257469 r261174 1 1 # OceanWP Changelog 2 3 ### _2025.02.27_ - 4.0.6 4 - **Added**:: Turnstile integration for Popup Login and Elementor Widgets. 5 - **Added**:: Google Fonts: Funnel Sans and Funnel Display. 6 - **Updated**:: Template: woocommerce/single-product/product-image.php (version number for compatibility with WooCommerce 9.7). 7 - **Fixed**:: PHP Warning: Undefined variable $gutenberg_css in ...inc/third/class-gutenberg.php** on line 60. 2 8 3 9 ### _2025.01.27_ - 4.0.5 -
oceanwp/4.0.6/inc/customizer/helpers.php
r246878 r261174 363 363 </ul> 364 364 365 <a href="<?php echo esc_url( 'https:// oceanwp.org/core-extensions-bundle/' ) ?>" target="_blank" class="button button-secondary">Upgrade to OceanWP Pro</a>365 <a href="<?php echo esc_url( 'https://see.oceanwp.org/tcheader-bundle-upgrade' ) ?>" target="_blank" class="button button-secondary">Upgrade to OceanWP Pro</a> 366 366 </div> 367 367 <?php … … 388 388 </ul> 389 389 390 <a href="<?php echo esc_url( 'https:// oceanwp.org/core-extensions-bundle/' ) ?>" target="_blank" class="button button-secondary">Upgrade to OceanWP Pro</a>390 <a href="<?php echo esc_url( 'https://see.oceanwp.org/tctopbar-bundle-upgrade' ) ?>" target="_blank" class="button button-secondary">Upgrade to OceanWP Pro</a> 391 391 </div> 392 392 <?php … … 414 414 </ul> 415 415 416 <a href="<?php echo esc_url( 'https:// oceanwp.org/core-extensions-bundle/' ) ?>" target="_blank" class="button button-secondary">Upgrade to OceanWP Pro</a>416 <a href="<?php echo esc_url( 'https://see.oceanwp.org/tcblog-bundle-upgrade' ) ?>" target="_blank" class="button button-secondary">Upgrade to OceanWP Pro</a> 417 417 </div> 418 418 <?php … … 440 440 </ul> 441 441 442 <a href="<?php echo esc_url( 'https://oceanwp.org/core-extensions-bundle/' ) ?>" target="_blank" class="button button-secondary">Upgrade to OceanWP Pro</a> 442 <a href="<?php echo esc_url( 'https://see.oceanwp.org/tcfwidgets-bundle-upgrade' ) ?>" target="_blank" class="button button-secondary">Upgrade to OceanWP Pro</a> 443 </div> 444 <?php 445 return ob_get_clean(); 446 } 447 } 448 449 if ( ! function_exists( 'owp_render_footer_copyright_upsell_notice' ) ) { 450 451 function owp_render_footer_copyright_upsell_notice() { 452 $check_icon = '<svg height="24px" viewBox="0 -960 960 960" width="24px" fill="currentColor"><path d="M400-304 240-464l56-56 104 104 264-264 56 56-320 320Z"/></svg>'; 453 ob_start(); 454 ?> 455 <div class="ocean-upsell-container"> 456 <h3 class="upsell-heading"><?php echo esc_html__( 'Make Your Site Stand Out with OceanWP Pro Bundle!', 'oceanwp' ); ?></h3> 457 <p><?php echo esc_html__( 'Why Upgrade to Pro?', 'oceanwp' ); ?></p> 458 <ul class="upsell-content"> 459 <li><?php echo $check_icon; ?> <?php echo esc_html__( 'Footer CTA', 'oceanwp' ); ?></li> 460 <li><?php echo $check_icon; ?> <?php echo esc_html__( 'Sticky Footer', 'oceanwp' ); ?></li> 461 <li><?php echo $check_icon; ?> <?php echo esc_html__( 'Sticky Custom Footer', 'oceanwp' ); ?></li> 462 <li><?php echo $check_icon; ?> <?php echo esc_html__( 'Cookie Notice', 'oceanwp' ); ?></li> 463 <li><?php echo $check_icon; ?> <?php echo esc_html__( 'Elementor Sections', 'oceanwp' ); ?></li> 464 <li><?php echo $check_icon; ?> <?php echo esc_html__( 'Full Site Templates', 'oceanwp' ); ?></li> 465 <li><?php echo $check_icon; ?> <?php echo esc_html__( 'Dedicated Support', 'oceanwp' ); ?></li> 466 </ul> 467 468 <a href="<?php echo esc_url( 'https://see.oceanwp.org/tccopyright-bundle-upgrade' ) ?>" target="_blank" class="button button-secondary">Upgrade to OceanWP Pro</a> 443 469 </div> 444 470 <?php -
oceanwp/4.0.6/inc/customizer/options/footer-copyright.php
r245943 r261174 630 630 'ocean_copyright_upsell_notice' => [ 631 631 'type' => 'ocean-content', 632 'isContent' => owp_render_footer_ upsell_notice(),632 'isContent' => owp_render_footer_copyright_upsell_notice(), 633 633 'section' => 'ocean_footer_bottom', 634 634 'class' => 'description', -
oceanwp/4.0.6/inc/customizer/webfonts.php
r245943 r261174 525 525 'Fugaz One', 526 526 'Fuggles', 527 'Funnel Sans', 528 'Funnel Display', 527 529 'Fustat', 528 530 'Fuzzy Bubbles', -
oceanwp/4.0.6/inc/themepanel/theme-panel.php
r222387 r261174 542 542 */ 543 543 public function banner_upgrade_link() { 544 return 'https:// oceanwp.org/core-extensions-bundle/';544 return 'https://see.oceanwp.org/bundle-pro-upgrade'; 545 545 } 546 546 -
oceanwp/4.0.6/inc/themepanel/views/layout/top-bar.php
r168468 r261174 1 1 <?php 2 $diamond_link = "https:// oceanwp.org/core-extensions-bundle/";2 $diamond_link = "https://see.oceanwp.org/bundle-pro-upgrade"; 3 3 $star_link = "https://wordpress.org/support/theme/oceanwp/reviews/#new-post"; 4 4 $help_link = "#help"; … … 14 14 <a href="<?php echo esc_url( $star_link ); ?>" target="_blank" class="top-bar-links"> 15 15 <img class="oceanwp-top-panel-image" src="<?php echo esc_url( OCEANWP_THEME_PANEL_URI . '/assets/images/icons/star.png' ); ?>" /> 16 </a> 16 </a> 17 17 <a href="<?php echo esc_url( $help_link ); ?>" class="top-bar-links oceanwp-tp-topbar-link"> 18 18 <img class="oceanwp-top-panel-image" src="<?php echo esc_url( OCEANWP_THEME_PANEL_URI . '/assets/images/icons/life-saver.png' ); ?>" /> -
oceanwp/4.0.6/inc/themepanel/views/panes/integration.php
r188595 r261174 6 6 $please_install_oe_text_link = oceanwp_theme_panel()->please_install_oe_text_link(); 7 7 $install_oe_upgrade_core_extensions_bundle_text_link = oceanwp_theme_panel()->install_oe_upgrade_core_extensions_bundle_text_link(); 8 $opl_log_version = defined( 'OPL_PLUGIN_VERSION' ) ? OPL_PLUGIN_VERSION : ''; 9 $oew_log_version = defined( 'OWP_ELEMENTOR_VERSION' ) ? OWP_ELEMENTOR_VERSION : ''; 8 10 ?> 9 11 … … 71 73 </div> 72 74 75 <?php if ( $extra_mode_actived && $ocean_popup_login_activated && version_compare( $opl_log_version, '2.2.1', '>=' ) 76 || $extra_mode_actived && $ocean_elementor_widgets_actived && version_compare( $oew_log_version, '2.4.7', '>=' ) ) : ?> 77 <!-- Cloudflare Turnstile --> 78 <div class="oceanwp-tp-wide-block"> 79 <div class="oceanwp-tp-block-outer"> 80 <img class="oceanwp-tp-wide-block-image" src="<?php echo esc_url( OCEANWP_THEME_PANEL_URI . '/assets/images/icons/google-recaptcha.png' ); ?>" /> 81 <h2 class="oceanwp-tp-block-title"><?php esc_html_e( 'Cloudflare Turnstile', 'oceanwp' ); ?></h2> 82 </div> 83 <h3 class="oceanwp-tp-block-description"><?php esc_html_e( 'Adds Cloudflare Turnstile.', 'oceanwp' ); ?></h3> 84 85 <?php oceanwp_theme_panel()->print_pane( 'integration-cloudflare-turnstile' ); ?> 86 </div> 87 <?php endif; ?> 88 73 89 <!-- MailChimp --> 74 90 <div class="oceanwp-tp-wide-block"> -
oceanwp/4.0.6/inc/third/class-gutenberg.php
r257469 r261174 55 55 $links_color = get_theme_mod( 'ocean_links_color', '#333333' ); 56 56 $links_color_hover = get_theme_mod( 'ocean_links_color_hover', '#13aff0' ); 57 58 $gutenberg_css = ''; 57 59 58 60 // Links color. -
oceanwp/4.0.6/languages/oceanwp.pot
r257469 r261174 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: OceanWP 4.0. 5\n"5 "Project-Id-Version: OceanWP 4.0.6\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/oceanwp\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-0 1-27T08:55:29+00:00\n"12 "POT-Creation-Date: 2025-02-27T05:42:59+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.11.0\n" … … 603 603 #: inc/customizer/helpers.php:405 604 604 #: inc/customizer/helpers.php:431 605 #: inc/customizer/helpers.php:457 605 606 msgid "Why Upgrade to Pro?" 606 607 msgstr "" … … 633 634 #: inc/customizer/helpers.php:412 634 635 #: inc/customizer/helpers.php:438 636 #: inc/customizer/helpers.php:464 635 637 msgid "Full Site Templates" 636 638 msgstr "" … … 656 658 #: inc/customizer/helpers.php:413 657 659 #: inc/customizer/helpers.php:439 660 #: inc/customizer/helpers.php:465 658 661 msgid "Dedicated Support" 659 662 msgstr "" … … 677 680 #: inc/customizer/helpers.php:411 678 681 #: inc/customizer/helpers.php:437 682 #: inc/customizer/helpers.php:463 679 683 msgid "Elementor Sections" 680 684 msgstr "" 681 685 682 686 #: inc/customizer/helpers.php:430 687 #: inc/customizer/helpers.php:456 683 688 msgid "Make Your Site Stand Out with OceanWP Pro Bundle!" 684 689 msgstr "" 685 690 686 691 #: inc/customizer/helpers.php:433 692 #: inc/customizer/helpers.php:459 687 693 msgid "Footer CTA" 688 694 msgstr "" 689 695 690 696 #: inc/customizer/helpers.php:434 697 #: inc/customizer/helpers.php:460 691 698 #: inc/themepanel/views/panes/free-vs-pro.php:75 692 699 msgid "Sticky Footer" … … 694 701 695 702 #: inc/customizer/helpers.php:435 703 #: inc/customizer/helpers.php:461 696 704 msgid "Sticky Custom Footer" 697 705 msgstr "" 698 706 699 707 #: inc/customizer/helpers.php:436 708 #: inc/customizer/helpers.php:462 700 709 #: inc/themepanel/views/panes/free-vs-pro.php:84 701 710 msgid "Cookie Notice" 702 711 msgstr "" 703 712 704 #: inc/customizer/helpers.php:4 57713 #: inc/customizer/helpers.php:483 705 714 #: inc/customizer/options/blog.php:172 706 715 #: inc/customizer/options/blog.php:234 … … 9524 9533 msgstr "" 9525 9534 9526 #: inc/themepanel/views/panes/integration.php: 189535 #: inc/themepanel/views/panes/integration.php:20 9527 9536 msgid "SVG Support" 9528 9537 msgstr "" 9529 9538 9530 #: inc/themepanel/views/panes/integration.php:2 79539 #: inc/themepanel/views/panes/integration.php:29 9531 9540 msgid "Enable SVG file support for your WordPress Media Library. This option allows you to safely upload any SVG file to the Media Library as all files are sanitized upon upload." 9532 9541 msgstr "" 9533 9542 9534 #: inc/themepanel/views/panes/integration.php:3 79543 #: inc/themepanel/views/panes/integration.php:39 9535 9544 msgid "Google Maps" 9536 9545 msgstr "" 9537 9546 9538 #: inc/themepanel/views/panes/integration.php:4 09539 #: inc/themepanel/views/panes/integration.php:4 69547 #: inc/themepanel/views/panes/integration.php:42 9548 #: inc/themepanel/views/panes/integration.php:48 9540 9549 msgid "Display the Google map on your website and help visitors locate your business." 9541 9550 msgstr "" 9542 9551 9543 #: inc/themepanel/views/panes/integration.php: 589552 #: inc/themepanel/views/panes/integration.php:60 9544 9553 msgid "Google reCAPTCHA" 9545 9554 msgstr "" 9546 9555 9547 #: inc/themepanel/views/panes/integration.php:6 19548 #: inc/themepanel/views/panes/integration.php:6 79556 #: inc/themepanel/views/panes/integration.php:63 9557 #: inc/themepanel/views/panes/integration.php:69 9549 9558 msgid "Adds Google reCAPTCHA." 9550 9559 msgstr "" 9551 9560 9552 #: inc/themepanel/views/panes/integration.php:77 9561 #: inc/themepanel/views/panes/integration.php:81 9562 msgid "Cloudflare Turnstile" 9563 msgstr "" 9564 9565 #: inc/themepanel/views/panes/integration.php:83 9566 msgid "Adds Cloudflare Turnstile." 9567 msgstr "" 9568 9569 #: inc/themepanel/views/panes/integration.php:93 9553 9570 msgid "MailChimp" 9554 9571 msgstr "" 9555 9572 9556 #: inc/themepanel/views/panes/integration.php: 859573 #: inc/themepanel/views/panes/integration.php:101 9557 9574 msgid "Add newsletter subscription to your website and grow your contact list." 9558 9575 msgstr "" 9559 9576 9560 #: inc/themepanel/views/panes/integration.php: 879577 #: inc/themepanel/views/panes/integration.php:103 9561 9578 msgid "to unlock this feature." 9562 9579 msgstr "" 9563 9580 9564 #: inc/themepanel/views/panes/integration.php: 969581 #: inc/themepanel/views/panes/integration.php:112 9565 9582 msgid "Adobe Fonts (TypeKit)" 9566 9583 msgstr "" 9567 9584 9568 #: inc/themepanel/views/panes/integration.php:1 029585 #: inc/themepanel/views/panes/integration.php:118 9569 9586 msgid "Get your creativity flowing and dive into thousands of wonderful fonts from the world's leading type foundries." 9570 9587 msgstr "" -
oceanwp/4.0.6/readme.txt
r257469 r261174 1 1 == OceanWP == 2 2 Contributors: oceanwp 3 Tested up to: 6.7. 14 Stable tag: 4.0. 53 Tested up to: 6.7.2 4 Stable tag: 4.0.6 5 5 Requires PHP: 7.4 6 6 License: GPLv2 or later -
oceanwp/4.0.6/sass/style.scss
r257469 r261174 3 3 * Theme Name: OceanWP 4 4 * Text Domain: oceanwp 5 * Version: 4.0. 56 * Tested up to: 6.7. 15 * Version: 4.0.6 6 * Tested up to: 6.7.2 7 7 * Requires at least: 5.6 8 8 * Requires PHP: 7.4 -
oceanwp/4.0.6/style.css
r257469 r261174 2 2 * Theme Name: OceanWP 3 3 * Text Domain: oceanwp 4 * Version: 4.0. 55 * Tested up to: 6.7. 14 * Version: 4.0.6 5 * Tested up to: 6.7.2 6 6 * Requires at least: 5.6 7 7 * Requires PHP: 7.4 -
oceanwp/4.0.6/woocommerce/single-product/product-image.php
r234745 r261174 13 13 * @see https://docs.woocommerce.com/document/template-structure/ 14 14 * @package WooCommerce\Templates 15 * @version 9. 0.015 * @version 9.7.0 16 16 */ 17 17
Note: See TracChangeset for help on using the changeset viewer.