Plugin Directory

Changeset 2962293


Ignore:
Timestamp:
09/03/2023 11:38:26 PM (2 years ago)
Author:
svenl77
Message:

New version: 3.4.17

Location:
wc4bp
Files:
354 added
3 edited

Legend:

Unmodified
Added
Removed
  • wc4bp/trunk/class/wc4bp-redefine-functions.php

    r2736061 r2962293  
    1414    function is_cart() {
    1515        $wc4bp_options = get_option( 'wc4bp_options' );
    16 
    17         if ( is_user_logged_in() && ! isset( $wc4bp_options['tab_cart_disabled'] ) ) {
     16        $current_user = wp_get_current_user();
     17        if ( ! empty( $current_user ) && ! isset( $wc4bp_options['tab_cart_disabled'] ) ) {
    1818            if ( bp_is_current_component( wc4bp_Manager::get_shop_slug() ) && ! bp_action_variables() ) {
    1919                return true;
  • wc4bp/trunk/readme.txt

    r2934858 r2962293  
    33Tags: woocommerce my account, woocommerce buddypress, woocommerce profile, woocommerce member pages, buddyboss
    44Requires at least: 4.9
    5 Tested up to: 6.2.2
    6 Stable tag: 3.4.16
     5Tested up to: 6.3.1
     6Stable tag: 3.4.17
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9696
    9797== Changelog ==
     98= 3.4.17 - 03 Sep 2023 =
     99* Fixed issue with undefined function.
     100* Tested up to WordPress 6.3.1
     101
    98102= 3.4.16 - 05 Jul 2023 =
    99103* Fixed XSS vulnerability.
  • wc4bp/trunk/wc4bp-basic-integration.php

    r2934858 r2962293  
    1010 * Author: ThemeKraft
    1111 * Author URI: https://themekraft.com/products/woocommerce-buddypress-integration/
    12  * Version: 3.4.16
     12 * Version: 3.4.17
    1313 * Licence: GPLv3
    1414 * Text Domain: wc4bp
     
    4848         * The plugin version
    4949         */
    50         const  VERSION = '3.4.16' ;
     50        const  VERSION = '3.4.17' ;
    5151        /**
    5252         * Minimum required WP version
Note: See TracChangeset for help on using the changeset viewer.