eppu
Forum Replies Created
-
Forum: Plugins
In reply to: [User Sync ActiveCampaign] Action to delete userForum: Plugins
In reply to: [User Sync ActiveCampaign] Create user vs edit userHi,
Also when auto syncing the function should first check if the email address/user already exists in AC and if he/she does then update existing instead of creating a new one.
Thank you for your time
Sincerely
-EppuForum: Plugins
In reply to: [User Sync ActiveCampaign] Create user vs edit userHi,
Yeah I might be able to help.
Thank you
-EppuForum: Plugins
In reply to: [User Sync ActiveCampaign] Action to delete userHi,
If you could add couple of lines of code to your next update. So that the ID gets saved to the database.
First we could add to the ID when adding new users.
Inside file rus-activecampaign.php on line 206 inside function rusac_send_data_to_ac add:
update_user_meta( $user_id, '_rusac_synced_user_id', $result['subscriber_id']);
And second would be when auto syncing users in function sync_active_campaign_list insert line after line 396:
update_user_meta( $user->ID, '_rusac_synced_user_id', $result['subscriber_id']);
inside the if statementif (!empty($result['result_code']) && $result['result_code'] == 1) {
This would fix the problem and all the user would have the id that is required for removal of the user from AC.
Thank you for your time.
Sincerely
EppuForum: Plugins
In reply to: [User Sync ActiveCampaign] Action to delete userHi,
Do you have any update on this?
Thank you for your time
Sincerely
EppuForum: Plugins
In reply to: [User Sync ActiveCampaign] Action to delete userHi,
User delete works wonderfully except if the user is newly created or auto synced.
I found out that the autosync and rusac_add_new_address do not add _rusac_synced_user_id to databace so the user cannot be deleted.
Thank you for your time
-EppuForum: Plugins
In reply to: [User Sync ActiveCampaign] Contacts not being added to Active CampaignHi,
First you need to create the list in the ActiveCampaign for auto sync to work.
Also if you don’t have auto sync on you have to add little bit of code to you child theme to get new users to show up in AC.
This also needs the list to be created in AC first.
Here is the example.
function custom_new_user_function ( $user_id ) {
do_action( ‘rusac_add_new_address’ , $user_id );
}
add_action( ‘user_register’, ‘custom_new_user_function’ );Any opinions from the developer?
Yeah if I switch back to version 5.8 and re-enable the breadcrumb the translation starts working again.
When I switch to 7.1 I don’t have to re-enable the breadcrumb and the URL is correct but the translation stops working. When I switch back to 5.8 I have to re-enable the breadcrumb but the translation starts working again.
Hmm chancing the theme did not help I just accidentally linked myself to production environment and thought that it worked. hehe
Still looking for solution.
Thanks for the swift reply.
Disabled my child theme and the problem was gone.
Now I have to hunt down the actual bug.
Thank you for your help
It seems that the iframe did not work so here is a link to the image.
https://drive.google.com/file/d/1xbaUwwE429NgtBqopY6UzXXUNWW5rYcQ/view
Forum: Plugins
In reply to: [User Email Verification for WooCommerce] Does the verification link expire?@lindabenefield from the users table in admin panel.
For future if you asking something different than what the the topic is about you should start a thread.
Forum: Plugins
In reply to: [User Email Verification for WooCommerce] Does the verification link expire?What if the link is stored in browser history and the browser is compromised?