Hello Vijay @globalit0159! Thanks for your message.
I’ve watched the video, but I think it’s not uploaded completely as it stops in the middle of your speech for some reason. Maybe you could try and re-upload it for me.
However, I think I understand the general idea behind this issue and I am able to help you 🙂
-
This reply was modified 6 years, 1 month ago by
BogdanFix.
Hi Sir,
thanks for your reply.
here I have recorded the issue again –
https://www.loom.com/share/c0d894988081470faf43a00be146efc0
Please help me to solve the issue
thanks
vijay
Hi Vijay @globalit0159!
Could you describe how the submitting
into your listings works?
Is there a checkout process?
Technically, we need to submit different list IDs to
subscribe customers to different lists, when customer
submits to one of your listings.
Cheers,
Bogdan
Hi there,
thanks for your reply.
here I have explained the issue- https://www.loom.com/share/e83bb40c5ec947dd85fc321c9b68d2e3
also, you can go to ishoplgbt.com and see the pricing table, that I want to collect lead from and send to send fox.
thanks
vijay
Hi Vijay @globalit0159.
Okay, I understand your request.
You need to add this somewhere to your “submit listing” process,
probably before it goes to payment.
$contact = array(
'email' => '',
'lists' => array(
1234 // your SendFox list ID
),
'first_name' => '',
'last_name' => '',
);
gb_sf4wp_add_contact( $contact );
You need to modify this code and add your data from “submit listing” form.
And you need to have different list IDs for different submissions like Free, Monthly Premium, Yearly Premium.
gb_sf4wp_add_contact is a wrapper function that makes an API request to SendFox and adds a subscriber to the right list.
-
This reply was modified 6 years, 1 month ago by
BogdanFix.