Changeset 3180572
- Timestamp:
- 11/03/2024 07:18:51 AM (17 months ago)
- Location:
- stockpack/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (2 diffs)
-
src/class-stockpackmedia.php (modified) (2 diffs)
-
stockpack.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
stockpack/trunk/readme.txt
r3151287 r3180572 4 4 Requires at least: 4.6 5 5 Tested up to: 6.6.2 6 Stable tag: 3.4. 36 Stable tag: 3.4.4 7 7 License: GPL 8 8 License URI: https://www.gnu.org/licenses/gpl-3.0.en.html … … 134 134 == Changelog == 135 135 136 = 3.4.4 = 137 Fixed backwards compatibility issue with DIVI 138 136 139 = 3.4.3 = 137 140 Updated WordPress compatibility -
stockpack/trunk/src/class-stockpackmedia.php
r3151287 r3180572 63 63 public function enqueue( $admin = true, $no_dialog = false ) { 64 64 global $pagenow; 65 if(did_action('wp_enqueue_media') || (isset($_GET['page']) && $_GET['page'] === 'stockpack') ) {65 if(did_action('wp_enqueue_media') || (isset($_GET['page']) && $_GET['page'] === 'stockpack') || stockpack_frontend_load()) { 66 66 $this->enqueue_scripts($admin); 67 67 $this->enqueue_styles($no_dialog); … … 229 229 public function templates() { 230 230 231 if (!did_action('wp_enqueue_media') || (isset($_GET['page']) && $_GET['page'] === 'stockpack') ) {231 if (!did_action('wp_enqueue_media') || (isset($_GET['page']) && $_GET['page'] === 'stockpack') || stockpack_frontend_load()) { 232 232 return; 233 233 } -
stockpack/trunk/stockpack.php
r3151287 r3180572 6 6 * Author: Derikon Development 7 7 * Author URI: https://derikon.com/ 8 * Version:3.4. 38 * Version:3.4.4 9 9 * Text Domain: stockpack 10 10 * Domain Path: /languages
Note: See TracChangeset
for help on using the changeset viewer.