03 July 2021

How to get store data from WCFM(Best Multi Vendor Marketplace) Plugin?

 Get store data from WCFM(Best Multi Vendor Marketplace) Plugin.


global $WCFM, $WCFMmp, $wp, $WCFM_Query, $post;

$store_id = '';

if ( isset( $attr['id'] ) && !empty( $attr['id'] ) ) { $store_id = absint($attr['id']); }

if (  wcfm_is_store_page() ) {

$wcfm_store_url = get_option( 'wcfm_store_url', 'store' );

$store_name = apply_filters( 'wcfmmp_store_query_var', get_query_var( $wcfm_store_url ) );

$store_id  = 0;

if ( !empty( $store_name ) ) {

$store_user = get_user_by( 'slug', $store_name );

}

$store_id    = $store_user->ID;

}

$user_id = $store_id; 

$vendor_data = get_user_meta( $user_id, 'wcfmmp_profile_settings', true );

$street_1 = $vendor_data['address']['street_1'];

$street_2 = $vendor_data['address']['street_2'];

$city     = $vendor_data['address']['city'];

$zip      = $vendor_data['address']['zip'];

$country  = $vendor_data['address']['country'];

$state    = $vendor_data['address']['state'];

$store_email    = $vendor_data['store_email'];

$phone    = $vendor_data['phone'];

$store_location    = $vendor_data['store_location'];

No comments:

Post a Comment

How to create youtube videos slider with play and pause option in wordpress?

Create youtube videos slider with play and pause option in wordpress youtube videos slider Use this shortcode:- [punjab_today] function my_...