Changeset 194257
- Timestamp:
- 06/14/2023 10:54:32 AM (2 years ago)
- Location:
- oceanwp/3.4.5
- Files:
-
- 8 edited
- 1 copied
- . (copied) (copied from oceanwp/3.4.4)
- README.md (modified) (1 diff)
- changelog.md (modified) (1 diff)
- readme.txt (modified) (1 diff)
- sass/style.scss (modified) (1 diff)
- style.css (modified) (1 diff)
- woocommerce/cart/mini-cart.php (modified) (2 diffs)
- woocommerce/content-single-product.php (modified) (1 diff)
- woocommerce/loop/loop-start.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
oceanwp/3.4.5/README.md
r192353 r194257 5 5 **Tested up to:** WordPress 6.2.2 6 6 ======= 7 **Stable tag:** 3.4. 47 **Stable tag:** 3.4.5 8 8 **Requires PHP:** 7.2 9 9 **License:** GPLv2 or later -
oceanwp/3.4.5/changelog.md
r192353 r194257 1 1 # 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. 2 5 3 6 ### _2023.05.23_ - 3.4.4 -
oceanwp/3.4.5/readme.txt
r192353 r194257 2 2 Contributors: oceanwp 3 3 Tested up to: 6.2.2 4 Stable tag: 3.4. 44 Stable tag: 3.4.5 5 5 Requires PHP: 7.2 6 6 License: GPLv2 or later -
oceanwp/3.4.5/sass/style.scss
r192353 r194257 3 3 * Theme Name: OceanWP 4 4 * Text Domain: oceanwp 5 * Version: 3.4. 45 * Version: 3.4.5 6 6 * Tested up to: 6.2.2 7 7 * Requires at least: 5.6 -
oceanwp/3.4.5/style.css
r192353 r194257 2 2 * Theme Name: OceanWP 3 3 * Text Domain: oceanwp 4 * Version: 3.4. 44 * Version: 3.4.5 5 5 * Tested up to: 6.2.2 6 6 * Requires at least: 5.6 -
oceanwp/3.4.5/woocommerce/cart/mini-cart.php
r173371 r194257 14 14 * 15 15 * @see https://docs.woocommerce.com/document/template-structure/ 16 * @package WooCommerce /Templates17 * @version 5.2.016 * @package WooCommerce\Templates 17 * @version 7.8.0 18 18 */ 19 19 … … 54 54 <?php if ( empty( $product_permalink ) ) : ?> 55 55 <h3> 56 <?php echo $product_name; ?>56 <?php echo wp_kses_post( $product_name ); ?> 57 57 </h3> 58 58 <?php else : ?> 59 59 <h3> 60 60 <a href="<?php echo esc_url( $product_permalink ); ?>"> 61 <?php echo $product_name; ?>61 <?php echo wp_kses_post( $product_name ); ?> 62 62 </a> 63 63 </h3> -
oceanwp/3.4.5/woocommerce/content-single-product.php
r173371 r194257 12 12 * 13 13 * @see https://docs.woocommerce.com/document/template-structure/ 14 * @package WooCommerce /Templates14 * @package WooCommerce\Templates 15 15 * @version 3.6.0 16 16 */ -
oceanwp/3.4.5/woocommerce/loop/loop-start.php
r173371 r194257 3 3 * Product Loop Start 4 4 * 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 8 16 */ 9 17
Note: See TracChangeset for help on using the changeset viewer.