I just installed the plugin and synced my WC clients and orders for the very first time (no products).
Turns out that in case of syncing orders to engagebay the first part of the email address (before the @), repectively the nickname is written into the name field, leaving last name empty.
As I do have a billing address with name and last name – is there an option to alter the mapping / change fields so that in case of orders the name and last name will be taken from the billing address?
]]>I’ve tried to pull in first and last name fields via a registration form using Paid Membership Pro in my Zero BS CRM. I can see that the data is being registered in WP – users are being created and first and last names are being created fine. However, it doesn’t pull through to the CRM even though I’ve chosen the fields and mapped them using the Contact Fields tab.
I’ve used the following filters as well:
function my_wpf_filter_registration( $user_meta, $user_id ) {
if( isset( $user_meta[‘first_name’] ) ) {
$user_meta[‘fname’] = $user_meta[‘first_name’];
}
if( isset( $user_meta[‘last_name’] ) ) {
$user_meta[‘lname’] = $user_meta[‘last_name’];
}
if( isset( $user_meta[‘street_name’] ) ) {
$user_meta[‘addr1’] = $user_meta[‘street_name’];
}
if( isset( $user_meta[‘house_number’] ) ) {
$user_meta[‘addr2’] = $user_meta[‘house_number’];
}
return $user_meta;
}
add_filter( ‘wpf_user_register’, ‘my_wpf_filter_registration’, 10, 2 );
function my_watch_meta_field( $fields ) {
$fields[] = ‘first_name’;
$fields[] = ‘last_name’;
$fields[] = ‘street_name’;
$fields[] = ‘house_number’;
$fields[] = ‘postcode’;
$fields[] = ‘town’;
$fields[] = ‘newsletter’;
return $fields;
}
add_filter( ‘wpf_watched_meta_fields’, ‘my_watch_meta_field’ );
I created the name fields with keys first_name and last_name using paid membership pros Register Helper Addon.
I have Push AND Push All checked in WP Fusion settings. The names only get pushed if I manually push all meta.
Can you help please?
Thanks
]]>Looking forward to your ideas.
Rob
Two things:
1) I installed the Top Bar plug-in yesterday, and the success message is not showing when a subscriber submits an email address. I’ve tested in Chrome and Firefox.
2) Is there a way to add fields for first and last name?
The first question was posted a few months ago, but there are no replies to it.
]]>My CRM won’t accept full name.
]]>I know that the name fields are getting picked up when a user enters them, it is indeed required for Pro Forms. However I can’t figure out why these aren’t being populated in the User’s page – it’s like they aren’t getting sent to the correct database. The %%first_name%% and %%last_name%% fields also don’t get sent in Admin Notification email.
You can find an example of one of my registration forms here: https://dsf.net.au/becoming-a-member/membership-families-individuals/
Any tips hugely appreciated.
Thanks
FInlay
https://www.ads-software.com/plugins/s2member/
]]>I’m trying to set up the Yoast plugin and particularly the Title & Metas section (screenshot: https://i.gyazo.com/b512a7788947eaa20fc346910cab26eb.png ), in particularly for the posts. And I have a question on the setup of the ‘Meta Description template’ pertaining to fetching data from a post.
Now, I have 4 different post formats: Audio, Quote, Image and Video. Now each post format obviously uses different type of input of data.
For instance, a quote post gives you the ability to create a title, add a quote, the author of the quote, optionally the source of the quote and that sort of thing. A
An Image post would allow you to set up the title and the image.
Audio post allows you to set up the title and put in the audio you would like to share, like a soundcloud link or something.
And video allows you to put in a title and obviously a video link like a youtube link.
So one thing they all have in common is that they all use a Title (which post doesn’t huh? ;)). So the %%sitle%% and %%sitename%% will always do their job right.
But when it comes to the description template for each postformat, how do I go about making sure that if for instance there is a Quote post, the meta description template would show the Quote and the Author of the quote (if the author of the quote is set up, cause specifying an author is optional in a quote post).
So for instance.
If my quote is:
“A quote to place here and something interesting to read for the viewer.”
Author: John Campbell
Title of the post: A Quote
See Screenshot of what kind of things you’d be able to put in for a quote post:
https://i.gyazo.com/afc52d8156d48e83ad7a59ce1b1538ed.png
Then I would want the SEO meta data to look like this:
https://i.gyazo.com/5446f8b7f96947fd1f995fbbc55f3f64.png
So the quote would go into the description with a – [Author]. How can I input this sort of thing in Yoast SEO? I mean I know the name fields of all the textareas that I input it in. But how do I get Yoast SEO to actually fetch the inputted data and display it.
Like for instance how I did it recently for a few social sites to fetch certain data, like twitter for example. I’d do it like this for a twitter button on a quote post:
<br />
elseif (has_post_format('quote'))<br />
{<br />
?><br />
<a href="void(0)">_quote_text . "\"" ) ;?>&url=<?php the_permalink();?>" class='twitter has-tooltip' data-title="<?php _e('Share on Twitter', 'Aruna');?>">twitter</a><br />
<?php<br />
}<br />
This is how twitter would show a share for that quote post:
https://i.gyazo.com/b5387a4d919be52794fdd0a778c78851.png
So this is the sort of thing I’m trying to get Yoast SEO to do as well. Fetch the specific fields into the description meta template depending on what type of post format it is. How would I go about doing this?
I know this is a long post and I could’ve probably made it shorter.
Thanks!
https://www.ads-software.com/plugins/wordpress-seo/
]]>I was successful getting my email capture set up with aweber and enews extend on WordPress.
However, I would like to just have one field on my website so people can just enter their email and don’t have to enter their first or last name.
So it would just say something like:
Subscribe to my email list!
Then the box for entering email.
No first name box or last name box.
Is that possible, and if so how?
Thanks!!
Stacey
https://www.ads-software.com/plugins/genesis-enews-extended/
]]>