• Resolved ngabo12

    (@ngabo12)


    Let me first say that this is an awesome plugin.

    I have successfully connected Salesforce to wordpress but I kindly need help to Pull salesforce calendar fields(see below) to WordPress Tribe Events Plugin.

    Here are the fields:

    /services/data/v44.0/query/?q=SELECT+id+,+ EventApi__Display_Name__c +,+ EventApi__Start_Date_Time__c +,+ EventApi__End_Date_Time__c +,+ Type__c +,+ Event_URL__c +,+ EventApi__Status__c +from+ EventApi__Event__c +where+ EventApi__Status__c +=+’Active’

Viewing 4 replies - 16 through 19 (of 19 total)
  • @jonathanstegall
    I an doing an abject sync for salesforce and trying to figure out how to properly map out the fields to make the plugin happen on an events calendar? Do you know what can be done?

    Plugin Author Jonathan Stegall

    (@jonathanstegall)

    @michaellasalle No, I don’t. We don’t technically support any event plugins with this plugin, although generally it will work with The Events Calendar if you can configure it properly. Sometimes it requires some developer hooks.

    There are a number of posts about using that plugin in the support area here. You may be able to find what you need there. If you have very specific questions, you can ask (preferably in a separate thread). But again, we don’t technically support third party plugins, so it’s possible that you’ll have to figure it out on your own.

    Plugin Author Jonathan Stegall

    (@jonathanstegall)

    @ngabo12 were you able to fix this? If not, your best bet is probably to do an error log within your change_pull_params method:

    function change_pull_params( $params, $mapping, $object, $sf_sync_trigger, $use_soap, $is_new ) {
    error_log( ‘current params is ‘ . print_r( $params, true ) );
    return $params;
    }

    Then you can compare what the plugin is expecting to what you are trying to send it.

    Thread Starter ngabo12

    (@ngabo12)

    Hi Jonathan, thanks for the response. I solved it by creating a mapping object in Salesforce with value = publish . Thn I mapped that object of the wordpress object “post Status”

    Thanks for the great plugin, All works well with ai1ec

Viewing 4 replies - 16 through 19 (of 19 total)
  • The topic ‘Pull salesforce calendar fields to WordPress Tribe Events Plugin’ is closed to new replies.