Plugin Directory

Changeset 3168564


Ignore:
Timestamp:
10/14/2024 12:27:11 PM (6 months ago)
Author:
wpclever
Message:

Update 8.1.2

Location:
woo-product-bundle
Files:
69 added
7 edited

Legend:

Unmodified
Added
Removed
  • woo-product-bundle/trunk/includes/class-helper.php

    r3155104 r3168564  
    3131        }
    3232
    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 ) {
    3434            if ( self::get_setting( 'bundled_price_from', 'sale_price' ) === 'regular_price' ) {
    3535                if ( $product->is_type( 'variable' ) ) {
    3636                    if ( $min_or_max === 'max' ) {
    37                         $price = $product->get_variation_regular_price( 'max' );
     37                        $price = $product->get_variation_regular_price( 'max', $for_display );
    3838                    } else {
    39                         $price = $product->get_variation_regular_price( 'min' );
     39                        $price = $product->get_variation_regular_price( 'min', $for_display );
    4040                    }
    4141                } else {
     
    4545                if ( $product->is_type( 'variable' ) ) {
    4646                    if ( $min_or_max === 'max' ) {
    47                         $price = $product->get_variation_price( 'max' );
     47                        $price = $product->get_variation_price( 'max', $for_display );
    4848                    } else {
    49                         $price = $product->get_variation_price( 'min' );
     49                        $price = $product->get_variation_price( 'min', $for_display );
    5050                    }
    5151                } else {
  • woo-product-bundle/trunk/includes/class-product.php

    r3103660 r3168564  
    267267
    268268                    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
    269277                        $_product = wc_get_product( $item['id'] );
    270278
    271279                        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 ) ) {
    272284                            continue;
    273285                        }
  • woo-product-bundle/trunk/includes/class-woosb.php

    r3155104 r3168564  
    28102810
    28112811            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() ) {
    28132813                    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' ) ) ) {
    28142814                        $weight += 0;
     
    33503350                <div class="woosb-price-ori">
    33513351                    <?php
    3352                     $ori_price = (float) $product->get_price();
     3352                    $ori_price = (float) WPCleverWoosb_Helper()->round_price( $product->get_price() );
    33533353                    $get_price = (float) WPCleverWoosb_Helper()->get_price( $product );
    33543354
  • woo-product-bundle/trunk/includes/dashboard/wpc-dashboard.php

    r3095425 r3168564  
    9393                    'request' => serialize( $args )
    9494                ];
    95                 //https://codex.wordpress.org/WordPress.org_API
     95                // https://codex.wordpress.org/WordPress.org_API
    9696                $url      = 'http://api.wordpress.org/plugins/info/1.0/';
    9797                $response = wp_remote_post( $url, [ 'body' => $request ] );
     
    149149            $get_suggestion = '';
    150150
    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>';
    171207                }
    172208            }
  • woo-product-bundle/trunk/languages/woo-product-bundle.pot

    r3155104 r3168564  
    33msgid ""
    44msgstr ""
    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"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woo-product-bundle\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"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"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.5.0\n"
  • woo-product-bundle/trunk/readme.txt

    r3155104 r3168564  
    55Requires at least: 4.0
    66Tested up to: 6.6
    7 Version: 8.1.1
    8 Stable tag: 8.1.1
     7Version: 8.1.2
     8Stable tag: 8.1.2
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6767== Changelog ==
    6868
     69= 8.1.2 =
     70* Updated: Optimized the code
     71
    6972= 8.1.1 =
    7073* Updated: Optimized the code
  • woo-product-bundle/trunk/wpc-product-bundles.php

    r3155104 r3168564  
    44Plugin URI: https://wpclever.net/
    55Description: 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.1
     6Version: 8.1.2
    77Author: WPClever
    88Author URI: https://wpclever.net
     
    1818defined( 'ABSPATH' ) || exit;
    1919
    20 ! defined( 'WOOSB_VERSION' ) && define( 'WOOSB_VERSION', '8.1.1' );
     20! defined( 'WOOSB_VERSION' ) && define( 'WOOSB_VERSION', '8.1.2' );
    2121! defined( 'WOOSB_LITE' ) && define( 'WOOSB_LITE', __FILE__ );
    2222! defined( 'WOOSB_FILE' ) && define( 'WOOSB_FILE', __FILE__ );
Note: See TracChangeset for help on using the changeset viewer.