Make WordPress Themes

Changeset 168941

Timestamp:
06/01/2022 10:04:00 AM (3 years ago)
Author:
themedropbox
Message:

New version of OceanWP - 3.3.2

Location:
oceanwp/3.3.2
Files:
7 edited
1 copied

Legend:

Unmodified
Added
Removed
  • oceanwp/3.3.2/README.md

    r168934 r168941  
    44**Requires at least:** WordPress 5.6
    55**Tested up to:** WordPress 6.0.0
    6 **Stable tag:** 3.3.1
     6**Stable tag:** 3.3.2
    77**Requires PHP:** 7.2
    88**License:** GPLv2 or later
  • oceanwp/3.3.2/changelog.md

    r168934 r168941  
    11# OceanWP Changelog
    22
    3 ### _2022.05.31._ - 3.3.1
     3### _2022.06.1._ - 3.3.2
     4- **Fixed**: Custom Templates: Conditional logic for Elementor plugin causing Fatal Error.
     5
     6### _2022.06.1._ - 3.3.1
    47- **Fixed**: Notice: "We made changes to our theme panel" cannot be dismissed if child theme in use.
    58- **Fixed**: Custom Templates: Content display issues when templates used on Elementor pages.
  • oceanwp/3.3.2/inc/helpers.php

    r168934 r168941  
    49724972
    49734973    global $post;
     4974    $elementor = get_post_meta( $post->ID, '_elementor_edit_mode', true );
    49744975
    49754976    if ( $is_gutenberg ) {
    4976         if ( ! \Elementor\Plugin::$instance->db->is_built_with_elementor( $post->ID ) ) {
     4977        if ( ! ( OCEANWP_ELEMENTOR_ACTIVE && $elementor ) ) {
    49774978            $content = apply_filters( 'the_content', do_blocks( $content ) );
    49784979        }
  • oceanwp/3.3.2/languages/oceanwp.pot

    r168934 r168941  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: OceanWP 3.3.1\n"
     5"Project-Id-Version: OceanWP 3.3.2\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/theme/oceanwp\n"
    7 "POT-Creation-Date: 2022-05-31 06:29:09+00:00\n"
     7"POT-Creation-Date: 2022-06-01 09:38:12+00:00\n"
    88"MIME-Version: 1.0\n"
    99"Content-Type: text/plain; charset=utf-8\n"
  • oceanwp/3.3.2/readme.txt

    r168934 r168941  
    22Contributors: oceanwp
    33Tested up to: 6.0.0
    4 Stable tag: 3.3.1
     4Stable tag: 3.3.2
    55Requires PHP: 7.2
    66License: GPLv2 or later
  • oceanwp/3.3.2/sass/style.scss

    r168934 r168941  
    33 * Theme Name:         OceanWP
    44 * Text Domain:        oceanwp
    5  * Version:            3.3.1
     5 * Version:            3.3.2
    66 * Tested up to:       6.0.0
    77 * Requires at least:  5.6
  • oceanwp/3.3.2/style.css

    r168934 r168941  
    22 * Theme Name:         OceanWP
    33 * Text Domain:        oceanwp
    4  * Version:            3.3.1
     4 * Version:            3.3.2
    55 * Tested up to:       6.0.0
    66 * Requires at least:  5.6
Note: See TracChangeset for help on using the changeset viewer.