| @@ -128,15 +128,20 @@ | ||
| 128 | 128 | // if ($category_image == 'on') { |
| 129 | 129 | require BDTUPK_INC_PATH . 'ultimate-post-kit-metabox.php'; |
| 130 | 130 | // } |
| 131 | 131 | |
| 132 | - if ( ! class_exists( 'BdThemes_Duplicator' ) ) { | |
| 133 | - if ( $duplicator == 'on' ) { | |
| 134 | - require BDTUPK_PATH . 'includes/class-duplicator.php'; | |
| 135 | - } | |
| 132 | + // The class is namespaced, so the old unqualified class_exists() check never | |
| 133 | + // matched and the file could be loaded alongside a sibling plugin's duplicator. | |
| 134 | + // Also skip our copy entirely when Live Copy Paste is providing the same feature, | |
| 135 | + // since both provide the same duplicate-post admin action. | |
| 136 | + if ( $duplicator == 'on' | |
| 137 | + && ! class_exists( '\\UltimatePostKit\\Includes\\BdThemes_Duplicator' ) | |
| 138 | + && ! class_exists( '\\ElementPack\\Includes\\BdThemes_Duplicator' ) | |
| 139 | + && ! class_exists( '\\BdThemes_Duplicator' ) ) { | |
| 140 | + require BDTUPK_PATH . 'includes/class-duplicator.php'; | |
| 136 | 141 | } |
| 137 | 142 | |
| 138 | - if ( ! class_exists( 'BdThemes_Live_Copy' ) ) { | |
| 143 | + if ( ! class_exists( '\\UltimatePostKit\\Includes\\LiveCopy\\BdThemes_Live_Copy' ) ) { | |
| 139 | 144 | if ( ( $live_copy == 'on' ) && ( ! is_plugin_active( 'live-copy-paste/live-copy-paste.php' ) ) ) { |
| 140 | 145 | require_once BDTUPK_PATH . 'includes/live-copy/class-live-copy.php'; |
| 141 | 146 | } |
| 142 | 147 | } |
| @@ -182,12 +187,12 @@ | ||
| 182 | 187 | public function register_site_scripts() { |
| 183 | 188 | |
| 184 | 189 | // $suffix = '.min'; |
| 185 | 190 | |
| 186 | - wp_register_script( 'goodshare', BDTUPK_ASSETS_URL . 'vendor/js/goodshare.min.js', [ 'jquery' ], '4.1.2', true ); | |
| 187 | - wp_register_script( 'scrolline', BDTUPK_ASSETS_URL . 'vendor/js/jquery.scrolline.min.js', [ 'jquery' ], '4.1.2', true ); | |
| 191 | + wp_register_script( 'goodshare', BDTUPK_ASSETS_URL . 'vendor/js/goodshare.min.js', [ 'jquery' ], '6.3.0', true ); | |
| 192 | + wp_register_script( 'scrolline', BDTUPK_ASSETS_URL . 'vendor/js/jquery.scrolline.min.js', [ 'jquery' ], BDTUPK_VER, true ); | |
| 188 | 193 | wp_register_script( 'news-ticker-js', BDTUPK_ASSETS_URL . 'vendor/js/newsticker.min.js', [ 'jquery' ], BDTUPK_VER, true ); |
| 189 | - wp_register_script( 'fslightbox', BDTUPK_ASSETS_URL . 'vendor/js/fslightbox.min.js', [], '3.4.1', true ); | |
| 194 | + wp_register_script( 'fslightbox', BDTUPK_ASSETS_URL . 'vendor/js/fslightbox.min.js', [], '3.8.0', true ); | |
| 190 | 195 | wp_register_script( 'upk-animations', BDTUPK_ASSETS_URL . 'js/extensions/upk-animations.min.js', [ 'jquery' ], BDTUPK_VER, true ); |
| 191 | 196 | |
| 192 | 197 | wp_register_script( 'upk-ajax-loadmore', BDTUPK_ASSETS_URL . 'js/extensions/upk-ajax-loadmore.min.js', [ 'jquery' ], BDTUPK_VER, true ); |
| 193 | 198 | |