Changeset 3168564
- Timestamp:
- 10/14/2024 12:27:11 PM (6 months ago)
- Location:
- woo-product-bundle
- Files:
-
- 69 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
woo-product-bundle/trunk/includes/class-helper.php
r3155104 r3168564 31 31 } 32 32 33 public static function get_price( $product, $min_or_max = 'min' ) {33 public static function get_price( $product, $min_or_max = 'min', $for_display = false ) { 34 34 if ( self::get_setting( 'bundled_price_from', 'sale_price' ) === 'regular_price' ) { 35 35 if ( $product->is_type( 'variable' ) ) { 36 36 if ( $min_or_max === 'max' ) { 37 $price = $product->get_variation_regular_price( 'max' );37 $price = $product->get_variation_regular_price( 'max', $for_display ); 38 38 } else { 39 $price = $product->get_variation_regular_price( 'min' );39 $price = $product->get_variation_regular_price( 'min', $for_display ); 40 40 } 41 41 } else { … … 45 45 if ( $product->is_type( 'variable' ) ) { 46 46 if ( $min_or_max === 'max' ) { 47 $price = $product->get_variation_price( 'max' );47 $price = $product->get_variation_price( 'max', $for_display ); 48 48 } else { 49 $price = $product->get_variation_price( 'min' );49 $price = $product->get_variation_price( 'min', $for_display ); 50 50 } 51 51 } else { -
woo-product-bundle/trunk/includes/class-product.php
r3103660 r3168564 267 267 268 268 foreach ( $items as $item ) { 269 $_qty = (float) $item['qty']; 270 $_optional = ! empty( $item['optional'] ); 271 $_min = ! empty( $item['min'] ) ? (float) $item['min'] : 0; 272 273 if ( $_optional ) { 274 $_qty = $_min; 275 } 276 269 277 $_product = wc_get_product( $item['id'] ); 270 278 271 279 if ( ! $_product || $_product->is_type( 'woosb' ) || ! $_product->get_manage_stock() || ( $exclude_unpurchasable && ( ! $_product->is_purchasable() || ! WPCleverWoosb_Helper()->is_in_stock( $_product ) ) ) ) { 280 continue; 281 } 282 283 if ( WPCleverWoosb_Helper()->is_in_stock( $_product ) && WPCleverWoosb_Helper()->has_enough_stock( $_product, $_qty ) ) { 272 284 continue; 273 285 } -
woo-product-bundle/trunk/includes/class-woosb.php
r3155104 r3168564 2810 2810 2811 2811 foreach ( WC()->cart->get_cart() as $cart_item ) { 2812 if ( $cart_item['data']->has_weight() ) {2812 if ( isset( $cart_item['data'] ) && is_a( $cart_item['data'], 'WC_Product' ) && $cart_item['data']->has_weight() ) { 2813 2813 if ( ( ! empty( $cart_item['woosb_parent_id'] ) && ( get_post_meta( $cart_item['woosb_parent_id'], 'woosb_shipping_fee', true ) !== 'each' ) ) || ( ! empty( $cart_item['woosb_ids'] ) && ( get_post_meta( $cart_item['data']->get_id(), 'woosb_shipping_fee', true ) === 'each' ) ) ) { 2814 2814 $weight += 0; … … 3350 3350 <div class="woosb-price-ori"> 3351 3351 <?php 3352 $ori_price = (float) $product->get_price();3352 $ori_price = (float) WPCleverWoosb_Helper()->round_price( $product->get_price() ); 3353 3353 $get_price = (float) WPCleverWoosb_Helper()->get_price( $product ); 3354 3354 -
woo-product-bundle/trunk/includes/dashboard/wpc-dashboard.php
r3095425 r3168564 93 93 'request' => serialize( $args ) 94 94 ]; 95 // https://codex.wordpress.org/WordPress.org_API95 // https://codex.wordpress.org/WordPress.org_API 96 96 $url = 'http://api.wordpress.org/plugins/info/1.0/'; 97 97 $response = wp_remote_post( $url, [ 'body' => $request ] ); … … 149 149 $get_suggestion = ''; 150 150 151 if ( false === ( $suggestion = get_transient( 'wpclever_suggestion' ) ) ) { 152 $request = wp_remote_get( 'https://api.wpclever.net/suggestion.json' ); 153 154 if ( is_wp_error( $request ) ) { 155 return false; 156 } 157 158 $body = wp_remote_retrieve_body( $request ); 159 $suggestion = json_decode( $body, true ); 160 161 if ( is_array( $suggestion ) && count( $suggestion ) > 0 ) { 162 set_transient( 'wpclever_suggestion', $suggestion, 24 * HOUR_IN_SECONDS ); 163 } 164 } 165 166 if ( is_array( $suggestion ) && count( $suggestion ) > 0 ) { 167 shuffle( $suggestion ); 168 169 foreach ( $suggestion as $sg ) { 170 $get_suggestion .= ! empty( $sg['desc'] ) ? '<div>' . $sg['desc'] . '</div>' : ''; 151 if ( false === ( $plugins_arr = get_transient( 'wpclever_plugins' ) ) ) { 152 $plugins_arr = []; 153 $args = (object) [ 154 'author' => 'wpclever', 155 'per_page' => '120', 156 'page' => '1', 157 'fields' => [ 158 'slug', 159 'name', 160 'version', 161 'downloaded', 162 'active_installs', 163 'last_updated', 164 'rating', 165 'num_ratings', 166 'short_description' 167 ] 168 ]; 169 $request = [ 170 'action' => 'query_plugins', 171 'timeout' => 30, 172 'request' => serialize( $args ) 173 ]; 174 // https://codex.wordpress.org/WordPress.org_API 175 $url = 'http://api.wordpress.org/plugins/info/1.0/'; 176 $response = wp_remote_post( $url, [ 'body' => $request ] ); 177 178 if ( ! is_wp_error( $response ) ) { 179 $plugins = unserialize( $response['body'] ); 180 181 if ( isset( $plugins->plugins ) && ( count( $plugins->plugins ) > 0 ) ) { 182 foreach ( $plugins->plugins as $pl ) { 183 $plugins_arr[] = [ 184 'slug' => $pl->slug, 185 'name' => $pl->name, 186 'version' => $pl->version, 187 'downloaded' => $pl->downloaded, 188 'active_installs' => $pl->active_installs, 189 'last_updated' => strtotime( $pl->last_updated ), 190 'rating' => $pl->rating, 191 'num_ratings' => $pl->num_ratings, 192 'short_description' => $pl->short_description, 193 ]; 194 } 195 } 196 197 set_transient( 'wpclever_plugins', $plugins_arr, 24 * HOUR_IN_SECONDS ); 198 } 199 } 200 201 if ( is_array( $plugins_arr ) && ( count( $plugins_arr ) > 0 ) ) { 202 array_multisort( array_column( $plugins_arr, 'last_updated' ), SORT_DESC, $plugins_arr ); 203 $plugins_arr = array_slice( $plugins_arr, 0, 5 ); 204 205 foreach ( $plugins_arr as $sg ) { 206 $get_suggestion .= '<div><a href="' . esc_url( 'https://wordpress.org/plugins/' . $sg['slug'] . '/' ) . '" target="_blank">' . esc_html( $sg['name'] ) . '</a> - ' . esc_html( $sg['short_description'] ) . '</div>'; 171 207 } 172 208 } -
woo-product-bundle/trunk/languages/woo-product-bundle.pot
r3155104 r3168564 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: WPC Product Bundles for WooCommerce 8.1. 1\n"5 "Project-Id-Version: WPC Product Bundles for WooCommerce 8.1.2\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woo-product-bundle\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2024- 09-20T10:09:03+00:00\n"12 "POT-Creation-Date: 2024-10-14T12:24:29+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.5.0\n" -
woo-product-bundle/trunk/readme.txt
r3155104 r3168564 5 5 Requires at least: 4.0 6 6 Tested up to: 6.6 7 Version: 8.1. 18 Stable tag: 8.1. 17 Version: 8.1.2 8 Stable tag: 8.1.2 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 67 67 == Changelog == 68 68 69 = 8.1.2 = 70 * Updated: Optimized the code 71 69 72 = 8.1.1 = 70 73 * Updated: Optimized the code -
woo-product-bundle/trunk/wpc-product-bundles.php
r3155104 r3168564 4 4 Plugin URI: https://wpclever.net/ 5 5 Description: WPC Product Bundles is a plugin help you bundle a few products, offer them at a discount and watch the sales go up! 6 Version: 8.1. 16 Version: 8.1.2 7 7 Author: WPClever 8 8 Author URI: https://wpclever.net … … 18 18 defined( 'ABSPATH' ) || exit; 19 19 20 ! defined( 'WOOSB_VERSION' ) && define( 'WOOSB_VERSION', '8.1. 1' );20 ! defined( 'WOOSB_VERSION' ) && define( 'WOOSB_VERSION', '8.1.2' ); 21 21 ! defined( 'WOOSB_LITE' ) && define( 'WOOSB_LITE', __FILE__ ); 22 22 ! defined( 'WOOSB_FILE' ) && define( 'WOOSB_FILE', __FILE__ );
Note: See TracChangeset
for help on using the changeset viewer.