Changeset 2347189
- Timestamp:
- 07/27/2020 01:25:07 PM (6 years ago)
- Location:
- orderbee/trunk
- Files:
-
- 2 edited
-
README.txt (modified) (2 diffs)
-
orderbee.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
orderbee/trunk/README.txt
r2347170 r2347189 4 4 Requires at least: 4.0.1 5 5 Tested up to: 5.4.2 6 Stable tag: 1.2. 36 Stable tag: 1.2.4 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 38 38 == Changelog == 39 39 40 = 1.2.4 = 41 * Bug fixing : extra security for previous bug 42 40 43 = 1.2.3 = 41 44 * Bug fixing : updating products affected placing orders 42 43 45 44 46 = 1.2.2 = -
orderbee/trunk/orderbee.php
r2347170 r2347189 17 17 * Plugin URI: https://www.orderbee.be 18 18 * Description: This plugin makes a fast and safe connection between your Woocommerce and OrderBee. 19 * Version: 1.2. 319 * Version: 1.2.4 20 20 * Author: OrderBee 21 21 * Author URI: https://www.orderbee.be … … 35 35 * Rename this for your plugin and update it as you release new versions. 36 36 */ 37 define('ORDERBEE_VERSION', '1.2. 3');37 define('ORDERBEE_VERSION', '1.2.4'); 38 38 39 39 /** … … 266 266 * @since 1.2.0 267 267 */ 268 269 268 if (!function_exists('obfrwc_push_product_to_server')) { 270 269 function obfrwc_push_product_to_server( $product_id ) { 271 270 272 if ( !is_front_page() ) {271 if ( !is_front_page() && get_post_type(get_the_ID()) === 'product') { 273 272 $product_info = new WC_Product($product_id); 274 273 if($product_info->status === 'publish'){
Note: See TracChangeset
for help on using the changeset viewer.