Changeset 2726841
- Timestamp:
- 05/19/2022 01:14:55 PM (3 years ago)
- Location:
- gallerya/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
gallerya/trunk/README.txt
r2725048 r2726841 4 4 Requires at least: 4.5 5 5 Tested up to: 5.6 6 Stable tag: 2.8. 46 Stable tag: 2.8.5 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 24 24 25 25 == Changelog == 26 27 = 2.8.5.= 28 2022-05-18 29 30 * Fixed fatal error in single product view. 26 31 27 32 = 2.8.4 = -
gallerya/trunk/package.json
r2725048 r2726841 1 1 { 2 2 "name": "gallerya", 3 "version": "2.8. 4",3 "version": "2.8.5", 4 4 "author": "netzstrategen <[email protected]>", 5 5 "repository": { -
gallerya/trunk/plugin.php
r2725048 r2726841 3 3 /* 4 4 Plugin Name: Gallerya 5 Version: 2.8. 45 Version: 2.8.5 6 6 Text Domain: gallerya 7 7 Description: Change the native post gallery to be displayed as a slider with lightbox support. -
gallerya/trunk/src/Video.php
r2631983 r2726841 172 172 global $product; 173 173 174 if (!$product ) {174 if (!$product || !is_a($product, 'WC_Product')) { 175 175 return $value; 176 176 } -
gallerya/trunk/src/WooCommerce.php
r2617278 r2726841 142 142 global $product; 143 143 144 if (!$product || $product->get_type() !== 'variable') {144 if (!$product || !is_a($product, 'WC_Product') || $product->get_type() !== 'variable') { 145 145 return $value; 146 146 }
Note: See TracChangeset
for help on using the changeset viewer.