ibanezrg770
Forum Replies Created
-
Forum: Plugins
In reply to: [Backup Migration] Restore says failedAlthough I do think the restore went properly, I had to restore the server from a backup as there were issues. I was just pointing out that the restore seemed to complete properly but I was prompted that if failed.
Forum: Plugins
In reply to: [WooCommerce] Change the display on only one coupon in the cartThank you very much! The first link: “Change WooCommerce coupon label for different coupon names in cart totals” allowed me to do what I needed.
Forum: Plugins
In reply to: [Object Sync for Salesforce] Malformed parameter when connecting to SFOK. No problem. Thank you for your help. We can mark this as resolved. ??
Forum: Plugins
In reply to: [Object Sync for Salesforce] Malformed parameter when connecting to SFJonathon,
I realized what it was, do you know how I can get around this?
First, I realized the error was on the WP side and not SF.
I then realized I had setup Minorange OAuth Single Sign On. I disabled that and Objectsync successfully authorized and connected to SF.
So my issues seems to be a conflict between SSO and Objectsync. Do you know a way I can resolve this to use both?Forum: Plugins
In reply to: [Object Sync for Salesforce] Malformed parameter when connecting to SFThats what I had thought and the reason I completely cleared the plugin. I double checked and made sure everything seemed correct when I reentered the information.
OK, I will try to delete the app in SF and set it up again. The error is coming from SF. I wanted to find out if it was something you came across and could pinpoint the issue.
Thanks for your help as always!Forum: Plugins
In reply to: [Object Sync for Salesforce] Malformed parameter when connecting to SFThanks Jonathan. I did disconnect the plugin from SF before I changed the info for the new sandbox and after I received the error the first time, deleted the plugin. I also checked both Objectsync DBs to see if there was any leftover information and to make sure they were created and they were both empty.
Forum: Plugins
In reply to: [Object Sync for Salesforce] Is there a way to pull SF checkbox value to WP ?Devarajan,
I am using the non pro version of ACF and instead of using the checkbox field type, used True/False. This still displays and works as a checkbox and syncs both ways with a checkbox field in SF. Hope this helps.Forum: Plugins
In reply to: [Object Sync for Salesforce] Initialization SyncThanks Jonathan, I will track the bulk import. Again, great job on the plugin.
- This reply was modified 4 years, 8 months ago by ibanezrg770.
Forum: Plugins
In reply to: [Object Sync for Salesforce] Fields in custom table come back as undefinedI believe I figured the part to insert the correct fields but now I get an undefined function error when the sync is triggered.
2020-03-19 21:34:27 +0000
unexpected shutdown: PHP Fatal error Uncaught Error: Call to undefined function sf_groups_id_plugin_create() in /var/www/wordpress/wp-content/plugins/object-sync-for-salesforce/classes/wordpress.php:2523 Stack trace: #0Here is my code if you could help:
add_filter( ‘object_sync_for_salesforce_wordpress_object_fields’, ‘add_field’, 10, 2 );
function add_field( $object_fields, $wordpress_object ) {
$object_fields[‘data’][] = array(
‘key’ => ‘id’,
‘table’ => ‘wp_sf_groups’,
‘methods’ => array (
‘create’ => ‘sf_groups_id_plugin_create’,
‘read’ => ‘sf_groups_id_plugin_read’,
‘update’ => ‘sf_groups_id_plugin_update’,
‘delete’ => ‘sf_groups_id_plugin_delete’
)
);
$object_fields[‘data’][] = array(
‘key’ => ‘sf_group_name’,
‘table’ => ‘wp_sf_groups’,
‘methods’ => array (
‘create’ => ‘sf_groups_plugin_create’,
‘read’ => ‘sf_groups_plugin_read’,
‘update’ => ‘sf_groups_plugin_update’,
‘delete’ => ‘sf_groups_plugin_delete’
)
);return $object_fields;
}Forum: Plugins
In reply to: [Object Sync for Salesforce] Missing user fields on subsite with WPO365 LoginYou can close, I stopped using mutlisite.