Forum Replies Created
-
AuthorPosts
-
travin69Member
So do I need to check the box for 3rd party shopping cart integration?
travin69MemberI actually tried taking that out and it had no effect. That is a trust seal but the company doesn’t provide very good service on it. HonestE is the company, and I wouldn’t recommend them either. Their customer service is horrible.
travin69MemberHate to ask you but can you identify the error that is causing the issue for me? I am not that savy but it would help me be able to direct someone to fix the issue for me. Issues must be from the theme.
Thanks a lot for the help,
Daniel
travin69MemberOk, so a brand new copy is uploaded and the same issue appears. It happens inside the affiliate area as well when you login as an affiliate. It seems the form code or some part towards the end just isn’t playing well.
Thanks for the help.
Daniel
travin69MemberWould you be so kind as to give me an example of putting an echo statement in my code? I edit the functions.php code on a live site and test it my actually registering a new user.
Thanks in advance
travin69MemberOk. Here are my results so far:
API doesn’t seem to work for me. Here is my code I am using with Gravity Forms and your code combined. I put this in the fuctions.php file. Any help would be awesome.
// Add For Gravity Forms Post Submission
function gf_register_add_ons($user_id, $config, $entry, $user_pass)
{
//Check which gravity form was submitted and then execute the corresponding code if needed.
/* Only Execute the following code block for Gravity Form 1 (each Gravity Form your create has an ID so replace this number with the actual ID) */
/* TODO - Change 1 with the actual form ID */
if($form['id'] == 13)
{
$secret_key = "removed for security";
$first_name= $entry["13"];
$last_name= $entry["14"];
$email= $entry["15"];
$membership_level_id= "4";
$username= $entry["16"];
$password= $user_pass;
$prepared_data = "?secret_key=".$secret_key."&first_name=".$first_name."&last_name=". $last_name."&email=".$email."&membership_level_id=".$membership_level_id."&username=".$username."&password=".$password;
$get_url = "http://www.paylaterproducts.com/wp-content/plugins/wp-eMember/api/create.php".$prepared_data;
// Execute this GET Request
file_get_contents($get_url);
}
}
add_action("gform_user_registered", "gf_register_add_ons", 10, 3);travin69MemberAwesome. You guys are amazing.
travin69MemberGreat. This rocks. I will have the code soon that will allow Gravity Forms to interface with emember. I will post it once I have finished it and tested.
Thanks again.
travin69MemberThat would be awesome. I will do the theme test and report its results. The weird thing is that it does it only on that form, but not on the join-us page.
travin69MemberBeautiful. Two questions:
Since I want to pass the username and password that is generated, does it matter which order they go in the http string? I am assuming that they go at the end of the string, username first, password second. I plan on using these variables: $username, $password.
Is this line required and what goes in it: $prepared_data = “?
Also, do I send the password before the hash or after the hash?
Thanks. Excellent work.
travin69MemberThanks. Looking forward to it.
travin69MemberI use this feature currently. It appears that emember can also accept an http post with information that will allow it to create/delete a member as well. I want to use this feature so I can integrate the Gravity Forms plugin with emember.
I looked for an article for this but didn’t see it. Can you give me some direction on how to format the http string?
Thanks,
Daniel
travin69MemberThanks for the weekend reply. My gravity forms question is this:
I like using Gravity Forms to make all my forms. I have a very unique set up for my site. I use s2member and emember to control my site. I currently use Gravity forms to do all my registrations for my site using the WP user registration system and s2member. Since emember does not use the WP user tables, I am stuck using your forms to register my members, which limits my ability to add and capture additional information that I need to capture. I noticed that emember has the ability to accept an http post to create a member. This means that I can use a gravity forms filter/hook to perform actions when a form is submitted (or in my case when a user is registered) and then just post the info in a http post and make an emember member as well.
Can you provide me the exact form of an http string I would need to post in order to add a member to the emember system via the http post method? I make 3 levels of members,Free, Seller and Buyer.
Thanks in advance,
Daniel
travin69MemberHave you considered using Kunaki to burn your digital goods to. They ship within like 48 hours and could give you the shipping docs you need to fight the chargebacks. You would also qualify for seller protection since you are selling “physical goods”. I use this on several websites.
Some other options to piss people off that chargeback:
Capture their ip address and contact their ISP. Tell them that someone from that IP committed fraud against your company and you suffered a monetary loss. Many times the ISP will shut down the user at that IP. It only takes about 3 complaints before their internet gets dropped for good.
I have also filed police reports for theft before as well. It works as the police do use ip address, logs, and can contact the ISP for proof. Most of these idiots don’t mask their IP well enough anyways.
-
AuthorPosts