Pravin Durugkar
Forum Replies Created
-
Forum: Plugins
In reply to: [User Sync ActiveCampaign] Sync’ing usersIt will sync automatically.
It works with Cron Jobs so wait for next cron run and it will sync that user to active campaign.
Also make sure that you haven’t disabled the cron jobs.
Forum: Plugins
In reply to: [User Sync ActiveCampaign] Syncronize Phone NumberHello @tirachew
Hi if you are using wocommerce for checkout then try this code placing in your functions.php
add_filter('rusac_fetch_registered_user_data', 'customize_user_data', 2); function customize_user_data($user_data, $user_id) { $user_data['phone'] = get_user_meta( $user_id, 'billing_phone', true ); // if phone number is getting stored in the billing_phone field usually it works for woocommerce return $user_data; }
if you are not using wocommerce then just find out the contact field and replace it with billing_phone
Thank you please do not forget to rate the plugin
Forum: Plugins
In reply to: [User Sync ActiveCampaign] Update user emailThe sync will be done if the user is present in the wordpress site, need not necessarily present on AC list.
It will create new AC contact in the list.If you want change the information on profile update generally plugin handles this, but if you have written custom codes to update user information then you can trigger extra action
rusac_edit_address
.for ex. <?php do_action( ‘rusac_edit_address’ , $user_id ); ?>
Thank you please do not forget to rate this plugin.
Forum: Plugins
In reply to: [User Sync ActiveCampaign] Active Campaign site tracking supportRight now, It does not support site tracking feature.
Neither it disturbs your site tracking code.But in future releases I am planning to implement the site tracking.
Thank you for asking.
Forum: Plugins
In reply to: [User Sync ActiveCampaign] Action to delete userHello @eppu
I will add this lines and will test the plugin, Thanks for your support
Forum: Plugins
In reply to: [User Sync ActiveCampaign] Error with syncinghey @ntertainme
Can you turn on debug and send the debug file?
please send the screenshot of settings page.So that I can help you.
Forum: Plugins
In reply to: [User Sync ActiveCampaign] Create user vs edit userForum: Plugins
In reply to: [User Sync ActiveCampaign] Action to delete userHello @eppu
I have updated this feature check in this new version.
Please do not forget to rate this plugin if you like it. ??
Forum: Plugins
In reply to: [Post Gallery Facebook] Access Token ErrorHello @adventure07
Thank You for reporting this issue,Forum: Plugins
In reply to: [User Sync ActiveCampaign] Contacts not being added to Active Campaignhi @checksoverstripes
Is you problem resolved now?@eppu
Thank you for nice explanation.Please do not forget to rate this plugin if you find it useful.
- This reply was modified 4 years, 7 months ago by Pravin Durugkar.
Forum: Plugins
In reply to: [User Sync ActiveCampaign] Action to delete userhi @eppu
This is very good Idea.. I will update this into the plugin and let you know.Please do not forget to rate this plugin if you like it. ??
Forum: Plugins
In reply to: [User Sync ActiveCampaign] Contacts not being added to Active CampaignHi @checksoverstripes
Can you tell me what errors are you getting.Have you tried debug window?
Forum: Plugins
In reply to: [User Sync ActiveCampaign] More than one list for different user typesHi @nichetorich
It will be better to pass this to your developer.Forum: Plugins
In reply to: [User Sync ActiveCampaign] More than one list for different user typesYou need to replace the condition here
user_id is job poster
To place this condition i’ll need to look into the database system and the website, that how this users are separated into job seeker and job poster.
If you don’t have coding knowledge please provide this to you developer.
Forum: Plugins
In reply to: [User Sync ActiveCampaign] More than one list for different user typesThis code should be in your functions.php
place your proper conditions in if and else if block and place this code in your active theme’s functions.php
- This reply was modified 4 years, 10 months ago by Pravin Durugkar.