Forum Replies Created
-
AuthorPosts
-
admin
KeymasterYou must have made some changes to your authorize.net profile which has triggered this. Your authorize.net is now asking for a relay response URL. This is a requirement from authorize.net so ask them why they want it and they will be able to answer your question.
Use the “Thank You” page URL of eStore in your authorize.net account’s relay response URL. That should address it.
We do have authorize.net subscription (ARB) for eStore. That functionality can be added to your site using the payment gateway bundle extension:
https://support.tipsandtricks-hq.com/forums/topic/wp-estore-and-payment-gateway-bundle
admin
KeymasterIf you are testing using the same email that you used earlier to subscribe, MailChimp won’t send you the confirmation. That is not an issue.
Let me know if the group data works after you change the hidden type. Remember that group data has to work with your standard MailChimp form (so test that first before testing the signup using this plugin).
February 2, 2016 at 1:41 am in reply to: WP eMember-Add Links (Social Media etc) to Member Profile & Sorting #72465admin
KeymasterThere is an HTML field in the form builder addon that you can use to let your members enter their social media links. You can add HTML code in that field to show the links however you want to.
The profile extended addon allows the member listing to be sorted using company name field also. Are you using the profile extended addon?
https://www.tipsandtricks-hq.com/wordpress-membership/wp-emember-profile-display-extended-addon-599
admin
KeymasterI just check your log file data. The signup seems to be working correctly. You have enabled BOTH the global signup and the membership level specific one. So that will cause 2 signups per registration. You should disable the global signup option if you are going to be using the level specific one.
The global one is mainly for people who doesn’t want to do individual list specific signup.
Do the following test please (so we can see if your groups info is setup correctly on MailChimp side.
Get the standard opt-in form code for that list (and group) from your MailChimp account. Put this form code on a test page then do a signup. Does the group info get added correctly in your MailChimp account?
admin
KeymasterThe following documentation tells you exactly what to do for stripe subscription. Please read it fully then do the steps (on a test page if you want) and that will help you learn how it works:
https://www.tipsandtricks-hq.com/ecommerce/wp-payment-gateway-bundle-stripe-subscription-setup-2764
January 31, 2016 at 11:10 pm in reply to: Looking for ways to change position of the stylish squeeze form #69370admin
KeymasterHow to center the stylish squeeze form
You can use the following technique to center the stylish squeeze form. Adjust the width value (depends on your page width) to different number so you can get the result you want:
Example 1
<div style="width: 300px; margin-left: auto; margin-right: auto;">
[wp_eStore_ssf id="1"]
</div>Example 2
<div style="width: 560px; margin-left: auto; margin-right: auto;">
[wp_eStore_ssf id="1" template="3"]
</div>Note: Make sure to enter this HTML code in the “text” mode of the editor.
January 31, 2016 at 11:05 pm in reply to: How to center the Stylish Sqeeze Form Template 3 on page #72456admin
KeymasterNot all HTML elements can be centered using the simple “center” tag.
You can use the following technique to center the stylish squeeze form. Adjust the width value to get the result you want:
<div style="width: 560px; margin-left: auto; margin-right: auto;">
[wp_eStore_ssf id=6 template=3]
</div>admin
KeymasterEach of the elements and fields in that form has CSS classes attached to it. So you can target the element and apply custom CSS.
Are you familiar with the following technique?
January 30, 2016 at 11:44 pm in reply to: WP Affiliate – Custom thank you page for affiliate registration #72445admin
Keymasterokay the best option is to use affiliate registration complete action hook. That way you are not modifying the core plugin code.
The following is an example snippet of code that shows you how to use this action hook. You can add it to your theme’s functions.php file OR your custom plugin.
add_action ('wp_aff_registration_complete', 'custom_affiliate_redirection');
function custom_affiliate_redirection()
{
//TODO - The affiliate registration is complete, do the redirection.
$url = 'www.example.com/custom-page';//Your redirection page URL
header('Location: ' . $url);
}January 30, 2016 at 11:23 pm in reply to: eMember Form Builder – Style and functionality not being applied to Registration #72453admin
KeymasterLooks like you have the “Free Members Must Confirm Email Address” option enabled. You need to get to the next step to see the registration form.
When you enable that option, it doesn’t allow your users to get to the MAIN registration form unless they click on the special link sent in their email.
If you just wanted to see how that form will look like (without going through the steps), just disable that “must confirm email address” option.
admin
KeymasterThe full name of the product search should show that product also. There is nothing that says the search keyword can only be one word long.
Do you have the keyword “blue beads” in your product name?
January 30, 2016 at 2:09 am in reply to: Affiliate Plugin – Can customer use different payment methods #72452admin
KeymasterYour customer doesn’t even have to know about the underlying affiliate structure. They do the checkout normally (based on what you offer in your e-commerce solution)
The following documentation should be useful for you:
https://www.tipsandtricks-hq.com/wordpress-affiliate/managing-affiliate-commission-payouts
You can pay your affiliates however you want to. The plugin will create a payment report file telling you exactly how much you need to pay to which affiliate. You can send them payment your way then just mark the payment as paid.
admin
KeymasterWP eStore plugin has an option that lets you collect customer input for a particular product at purchase time (for example you need to collect a name). To use this option simply check the “Collect Customer Input” checkbox when configuring the product.
January 30, 2016 at 12:44 am in reply to: WP Affiliate – Custom thank you page for affiliate registration #72443admin
KeymasterSo you want to redirect to that custom thank you page after the registration is complete?
Which affiliate portal option are you using?
https://www.tipsandtricks-hq.com/wordpress-affiliate/setting-up-the-affiliate-viewarea-315
admin
KeymasterYou don’t need to activate the license manually. “pending” means that the license is ready to be activated by the user (it hasn’t be activated by the user yet). As soon as the customer user the license key and activate your product, the license manager will change the status of the license key to “active”.
-
AuthorPosts