camrinp
Forum Replies Created
-
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] Error Shortcode Visual ComposerI’m having this issue as well.
Forum: Plugins
In reply to: [Redirection] Redirect Match IssueAny ideas???
Forum: Plugins
In reply to: [WooCommerce] Change Payment Method Label on CheckoutThank you for your help! That did the trick.
Forum: Plugins
In reply to: Variation SKU must be unique — but it is!I had the same issue and used a solution such as :
SELECT * FROM wp_postmeta WHERE meta_key LIKE ‘_sku’ AND
meta_value
= ‘NTW-14-1’NTW-14-1 being the SKU and then I ran:
SELECT * FROM
wp_posts
WHEREID
= 4955Deleted both results from both queries.
Forum: Plugins
In reply to: [Price Based on Country for WooCommerce] Plugin QuestionWe are using PayPal
Forum: Plugins
In reply to: [The Events Calendar] Calendar DateActually sorry we need it to go back to 1986.
Forum: Plugins
In reply to: [Appointments] When trying to book, just spinning iconHi Jeffrey, my issue was related to another plugin but I figured the solution may be similar. I ended up resolving it already. Thanks for the follow-up.
Forum: Plugins
In reply to: [Appointments] When trying to book, just spinning iconHow did you fix this?
Forum: Plugins
In reply to: [User Profile Picture] Issue to Upload Pictures WP 4.1.1I am experiencing the same issue as well. Do you have any further suggestions? I looked at the dev console and I do not see any errors being logged. I am on the most recent version of WordPress.
Thanks for your assistance.
Fixed trash issue, now just stuck on the registration issue…
I managed to find the issue with the user role not being assigned on registration, it appears the user that works as expected has:
a:2:{s:11:”classifieds”;b:1;s:21:”aamrole_532dbbfa34f77″;b:1;} in the yjtaadz1t_capabilities.
The user that does not seem to work properly has:
a:1:{s:11:”classifieds”;b:1;}
Once I copied the working users yjtaadz1t_capabilities over to the newly created user in the database I am now able to access everything properly. How do I make this work so that the new user is assigned the role properly?
Currently I am assigning the users role programatically using:
//update meta data when registration form is submitted function register_role($user_id, $password="", $meta=array()) { $userdata = array(); $userdata['ID'] = $user_id; $userdata['role'] = $_POST['role']; $userdata['first_name'] = $_POST['first_name']; $userdata['last_name'] = $_POST['last_name']; $userdata['address'] = $_POST['address']; $userdata['city'] = $_POST['city']; $userdata['province'] = $_POST['province']; $userdata['country'] = $_POST['country']; $userdata['postal_code'] = $_POST['postal_code']; $userdata['phone_number'] = $_POST['phone_number']; $userdata['cellphone_number'] = $_POST['cellphone_number']; // allow if a role is selected if ( $userdata['role'] ){ wp_update_user($userdata); } }
I haven’t been able to figure out the trash issue unfortunately ??
What was your solution?
Forum: Plugins
In reply to: NextGEN Gallery: Gallery Select Dropdown is empty or disappearsI am having the same issue. Have u had any luck resolving this?