Plugin Directory

Changeset 3078837


Ignore:
Timestamp:
04/29/2024 03:51:43 PM (22 months ago)
Author:
svenl77
Message:

New version: 3.4.23

Location:
wc4bp
Files:
353 added
4 edited

Legend:

Unmodified
Added
Removed
  • wc4bp/trunk/class/core/wc4bp-redirect.php

    r3077893 r3078837  
    3232     */
    3333    public static function get_base_url() {
    34         $base_url = bp_members_get_user_url( bp_loggedin_user_id() ) . wc4bp_Manager::get_shop_slug() . '/';
     34        $base_url = bp_core_get_user_domain( bp_loggedin_user_id() ) . wc4bp_Manager::get_shop_slug() . '/';
    3535
    3636        if ( 'yes' === get_option( 'woocommerce_force_ssl_checkout' ) || is_ssl() ) {
  • wc4bp/trunk/class/wc4bp-myaccount.php

    r3077893 r3078837  
    4242                $endpoint = '/' . $endpoint;
    4343            }
    44             return bp_members_get_user_url( bp_loggedin_user_id() ) . wc4bp_Manager::get_shop_slug() . $endpoint;
     44            return bp_core_get_user_domain( bp_loggedin_user_id() ) . wc4bp_Manager::get_shop_slug() . $endpoint;
    4545        } catch ( Exception $exception ) {
    4646            WC4BP_Loader::get_exception_handler()->save_exception( $exception->getTrace() );
  • wc4bp/trunk/readme.txt

    r3077893 r3078837  
    44Requires at least: 4.9
    55Tested up to: 6.5.2
    6 Stable tag: 3.4.22
     6Stable tag: 3.4.23
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9696
    9797== Changelog ==
     98= 3.4.23 - 29 Apr 2024 =
     99* Fixed issue with function bp_members_get_user_url in BuddyBoss platform.
     100
    98101= 3.4.22 - 26 Apr 2024 =
    99102* Fixed issue with deprecated BP function.
  • wc4bp/trunk/wc4bp-basic-integration.php

    r3077893 r3078837  
    1010 * Author: ThemeKraft
    1111 * Author URI: https://themekraft.com/products/woocommerce-buddypress-integration/
    12  * Version: 3.4.22
     12 * Version: 3.4.23
    1313 * Licence: GPLv3
    1414 * Text Domain: wc4bp
     
    4646         * The plugin version
    4747         */
    48         const VERSION = '3.4.22';
     48        const VERSION = '3.4.23';
    4949
    5050        /**
Note: See TracChangeset for help on using the changeset viewer.