Jack Arturo
Forum Replies Created
-
Hey @omazon ,
Yes, definitely! We support all the popular WordPress form builder plugins in the full version of WP Fusion:
https://wpfusion.com/documentation/lead-generation/contact-form-7/
and
https://wpfusion.com/documentation/lead-generation/ninja-forms/You can grab a license here https://wpfusion.com/pricing/ 🙂
Hey @normsash ,
You can export all of your users to ActiveCampaign from the Advanced tab in the WP Fusion settings. Look for the “Export Users” batch operation.
For a single user, we don’t have a button, but there is a hidden URL parameter that does the trick. Just append &wpf_register=true to the user profile URL. For example
/wp-admin/user-edit.php?user_id=1839&wpf_register=trueThat will create a new record for just that user.
That works as well.
What we do in the full version of WP Fusion is
update_post_meta( $order_id, 'wpf_complete', true )and then check that value before proceeding with the API calls.
That way the order is locked and it can’t be sent a second time if for some reason the status gets toggled manually or by another plugin.
Hi @normsash ,
Close. I’ve found that
woocommerce_payment_completeisn’t the most reliable. What I would do isfunction func_refresh_ac_tags( $order_id) { $order = wc_get_order( $order_id ); $user_id = $order->get_user_id(); if( $user_id ){ $tags = wp_fusion()->user->get_tags( $user_id, true ); } } add_action( 'woocommerce_order_status_processing', 'func_refresh_ac_tags' ); add_action( 'woocommerce_order_status_completed', 'func_refresh_ac_tags' );That should run both after the order is initially placed, and when it’s manually marked Completed.
Hey @normsash,
That is how it’s supposed to work. My hunch is that a redirect might be getting in the way. Some plugins are quite aggressive with how they do login redirects, and if the redirect happens before WP Fusion gets a chance to run then the tags won’t be loaded.
You should be able to test that by logging in via the default /wp-login.php page. That’s less likely to get redirected.
You could also try this code, in your functions.php file:
if function_exists( 'wp_fusion' ) { add_action( 'wp_login', array( wp_fusion()->user, 'login' ), 1, 2 ); }That will cause the tags to be loaded earlier in the login process.
Hi @ss_aussie ,
I would start with turning on the WP Fusion logs (https://wpfusion.com/documentation/getting-started/activity-logs/) to see what kind of data is recorded.
If there are any error messages with specific users they’ll show up there.
Give that a try and let us know what you find.
Hey @mps1,
I couldn’t see your link, the screenshot was deleted. Could you upload it again?
If the popup is blocking something we can change how it’s positioned.
If you’re using WP Fusion Lite on a client site and just want it hidden you can do it with a bit of admin-side CSS, just use:
#wpf-pro {
display: none;
}Hey @soportemedialife ,
You can do it either way. After you’ve installed the plugin it will automatically send any new WordPress users on your site to Mailchimp (or Mailerlite).
If you want to export all of your existing users you can do that from the Advanced settings tab, look for the Export Users operation.
If you want to import contacts as new WordPress users you can do that from the Import tab.
Good luck!
JackHey @nicscott01,
Topics in Salesforce are a little funny. I assume you’re using Salesforce Lightning, correct?
To import a group of contacts you’ll need to assign a topic to any contacts you’d like to import. Here’s some more info on using Topics: https://help.salesforce.com/articleView?id=basics_topics_records_overview.htm&type=5
Hey @andrysalim,
The free version of the plugin is just designed to work with WordPress core. Which membership plugin are you using?
Membership plugins sometimes work if they use standard field names (first_name, last_name, user_email), but not always.
But the full version of the plugin supports 16 different membership plugins, and 60+ other plugins as well: https://wpfusion.com/documentation/membership/
You can check out our pricing here. You would need a Personal license: https://wpfusion.com/pricing/
Hi @moitah32,
That means that in the WP Fusion settings for “User Roles” on the main settings tab, you’ve set WP Fusion to *only* create contacts if they have one or more roles.
The user that just registered didn’t have one of the specified roles.
We’d generally recommend leaving this setting empty. That way all new users are added to Mautic.
Hey @officelovestormde,
Sounds like you’re getting a lot out of WP Fusion 🙂
We detect “core” WordPress fields automatically. For anything else WPF will scan your own admin user account to determine what meta to display (this is a lot faster than scanning all users).
So if you can set some data on your own account for those fields, they should show up under Additional Fields.
For example
update_user_meta( $user_id, 'ls_wp_capabilities', true );Then refresh the WPF settings page and you should see it.
No you shouldn’t enter /s after the URL. It should be the base URL to Mautic. For example http://mautic.verygoodplugins.com/.
Did you just enable the API? Sometimes you need to clear your Mautic cache before the API works properly. Here’s info on how to do that: https://www.mautic.org/docs/en/tips/troubleshooting.html
Then put in the correct URL and click Resync Tags & Fields to see if it connects properly.
Hi @otso,
I hadn’t heard of Teamgate before. It looks like it would work for an integration.
We prioritize feature requests from our paying customers, but if you’re interested in getting a license over at https://wpfusion.com/pricing/ we could get started on that for you.
Cheers
JackHi @ngrhd,
You won’t be able to sync a Rich Text field in Salesforce to an image type field in WordPress. That’s because the Rich Text field stores the data as HTML, but the ACF image field expects an “attachment” in the WordPress media library.
However I did just test this out with a WYSIWYG field in ACF and the Salesforce rich text data synced correctly, including the image.
If you want to use an image field and not a WYSIWYG field you will need to use the
wpf_pulled_user_metafilter to remove the HTML from the field data when it’s loaded by WP Fusion. We have a guide on that filter here:https://wpfusion.com/documentation/filters/wpf_pulled_user_meta/
Jack