thomasazar
Forum Replies Created
-
What was your solution to this, I recently installed the same plugin and getting the same error.
Forum: Plugins
In reply to: [Object Sync for Salesforce] Pull from Salesforce and filterThanks @jonathanstegall for your help. I believe we are getting close but I do have one more question…
When syncing this way and a member becomes inactive the hook will no longer sync with records. But how do we delete the custom post for that member that was created automatically?Forum: Plugins
In reply to: [Object Sync for Salesforce] Pull from Salesforce and filterWe are trying to sync members within salesforce to wordpress. Because we have multiple contacts and memberships in salesforce we need to filter on these.
We created a custom post type and are wanting to pull these members in as a post to be used for a directory.
We also need to pull existing members and periodically check for new members to push to wordpress. At this time no data will be needed to push to sf.
Looking for assistance with this and would like to hire someone to help get this accomplished. Please let me know if interested or have any suggestions of someone that can help. Thanks!
Forum: Plugins
In reply to: [Object Sync for Salesforce] Pull from Salesforce and filterAfter getting it all setup I am getting closer…
i set the data field to “last modified date”
Set it to run 1 every 60 minutes. Manually ran it also. But it just says 1 in queue.
Any suggestions on what to do next?
Forum: Plugins
In reply to: [Object Sync for Salesforce] Pull from Salesforce and filterThanks @jonathanstegall for the quick reply! I am no developer but willing to give it my best go. I have updated the filter with the intention of pulling all contacts where the custom field “Contact_s_MembershipsList_aa__c” contains “NTL – Civil Plaintiff – Top 100” then pull those contacts. I updated the filter on ‘salesforce-pull.php to be as…
add_filter( ‘object_sync_for_salesforce_pull_object_allowed’, ‘check_user’, 10, 5 );
// can always reduce this number if all the arguments are not necessary
function check_user( $pull_allowed, $object_type, $object, $sf_sync_trigger, $salesforce_mapping ) {
if ( $object_type === ‘Contact’ && $object[‘Contact_s_MembershipsList_aa__c’] === ‘NTL – Civil Plaintiff – Top 100’ ) {
$pull_allowed = true;
}
return $pull_allowed;
}Do you see any issues with this?
- This reply was modified 3 years, 10 months ago by thomasazar.
Forum: Plugins
In reply to: [WP GoToWebinar] Something’s not working errorI’m using the free version at this time to test with.