Make WordPress Themes

Changeset 194257

Timestamp:
06/14/2023 10:54:32 AM (2 years ago)
Author:
themedropbox
Message:

New version of OceanWP - 3.4.5

Location:
oceanwp/3.4.5
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • oceanwp/3.4.5/README.md

    r192353 r194257  
    55**Tested up to:** WordPress 6.2.2
    66=======
    7 **Stable tag:** 3.4.4
     7**Stable tag:** 3.4.5
    88**Requires PHP:** 7.2
    99**License:** GPLv2 or later
  • oceanwp/3.4.5/changelog.md

    r192353 r194257  
    11# OceanWP Changelog
     2
     3### _2023.06.14_ - 3.4.5
     4- **Updated**: WooCommerce: Templates (mini-cart.php, loop-start.php, content-single-product.php) version number for compatibility to dismiss WooCommerce potential outdated templates notification.
    25
    36### _2023.05.23_ - 3.4.4
  • oceanwp/3.4.5/readme.txt

    r192353 r194257  
    22Contributors: oceanwp
    33Tested up to: 6.2.2
    4 Stable tag: 3.4.4
     4Stable tag: 3.4.5
    55Requires PHP: 7.2
    66License: GPLv2 or later
  • oceanwp/3.4.5/sass/style.scss

    r192353 r194257  
    33 * Theme Name:         OceanWP
    44 * Text Domain:        oceanwp
    5  * Version:            3.4.4
     5 * Version:            3.4.5
    66 * Tested up to:       6.2.2
    77 * Requires at least:  5.6
  • oceanwp/3.4.5/style.css

    r192353 r194257  
    22 * Theme Name:         OceanWP
    33 * Text Domain:        oceanwp
    4  * Version:            3.4.4
     4 * Version:            3.4.5
    55 * Tested up to:       6.2.2
    66 * Requires at least:  5.6
  • oceanwp/3.4.5/woocommerce/cart/mini-cart.php

    r173371 r194257  
    1414 *
    1515 * @see     https://docs.woocommerce.com/document/template-structure/
    16  * @package WooCommerce/Templates
    17  * @version 5.2.0
     16 * @package WooCommerce\Templates
     17 * @version 7.8.0
    1818 */
    1919
     
    5454                                <?php if ( empty( $product_permalink ) ) : ?>
    5555                                    <h3>
    56                                         <?php echo $product_name; ?>
     56                                        <?php echo wp_kses_post( $product_name ); ?>
    5757                                    </h3>
    5858                                <?php else : ?>
    5959                                    <h3>
    6060                                        <a href="<?php echo esc_url( $product_permalink ); ?>">
    61                                             <?php echo $product_name; ?>
     61                                            <?php echo wp_kses_post( $product_name ); ?>
    6262                                        </a>
    6363                                    </h3>
  • oceanwp/3.4.5/woocommerce/content-single-product.php

    r173371 r194257  
    1212 *
    1313 * @see     https://docs.woocommerce.com/document/template-structure/
    14  * @package WooCommerce/Templates
     14 * @package WooCommerce\Templates
    1515 * @version 3.6.0
    1616 */
  • oceanwp/3.4.5/woocommerce/loop/loop-start.php

    r173371 r194257  
    33 * Product Loop Start
    44 *
    5  * @author    WooThemes
    6  * @package   WooCommerce/Templates
    7  * @version   9999
     5 * This template can be overridden by copying it to yourtheme/woocommerce/loop/loop-start.php.
     6 *
     7 * HOWEVER, on occasion WooCommerce will need to update template files and you
     8 * (the theme developer) will need to copy the new files to your theme to
     9 * maintain compatibility. We try to do this as little as possible, but it does
     10 * happen. When this occurs the version of the template file will be bumped and
     11 * the readme will list any important changes.
     12 *
     13 * @see         https://docs.woocommerce.com/document/template-structure/
     14 * @package     WooCommerce\Templates
     15 * @version     3.3.0
    816 */
    917
Note: See TracChangeset for help on using the changeset viewer.