mikeapm
Forum Replies Created
-
We were able to create a php snippet that fixes the problem.
add_filter('wt_sc_alter_giveaway_product_price', 'fix_giveaway_price', 10, 2);
function fix_giveaway_price($product_price, $product) {
if(class_exists('WWP_Wholesale_Prices')) {
$pricesInstance = WWP_Wholesale_Prices::getInstance();
$rolesInstance = WWP_Wholesale_Roles::getInstance();
$user_wholesale_role = $rolesInstance->getUserWholesaleRole();
if ( ! empty( $user_wholesale_role ) )
{
$product_price = $pricesInstance->get_product_raw_wholesale_price( $product->get_id(), $user_wholesale_role );
}
}
return $product_price;
}I think i found my answer and it can’t be done because the groups are not actually user meta, and are in their own table “wp_promag_groups”.
I have a Pro license btw, and opened a ticket yesterday for this.
Nevermind I found the setting
I don’t. I deleted the plugin and all of it’s data. I give up. Thank you though for trying to help.
Be well
I dont need public-facing profile pages. Im trying to build it so that all data is private to only website administrators and the users themselves. Sort of a Human Resources/Workplace website.
I want a single private account page where the user can update their address, email address and all custom field data. The site also uses Woocommerce and don’t want them having a second account area just for Woocommerce. So I’m in a bind here.
Thanks for tryingp @missveronicatv, i really appreciate it!
I see they are taking a few days off. I cant wait and will just find another solution while I wait for a refund.
Seems odd this is not part of the settings, as is partly the reason I purchased the Pro Bundle, so I wouldn’t have to play with code.
Still does not work.
Heres all that appears https://prnt.sc/25n5kdv
Does not seem to work.
My meta keys from Jetengine and the form are a match with the keys in the registration form, the data from the form properly populates the user account in the default WordPress “Edit User” interface, however, the My Account tab of UM Account does not show any of this data.