Forum Replies Created
-
AuthorPosts
-
admin
KeymastereStore won’t process a payment/sale if the verification fails. So for those two sales go to the add/edit customers menu and add the record manually. You can also do it in SQL DB too.
What you need to do is make sure the caching doesn’t cause the problem in the future. We do have workaround for the 2 popular caching plugins. Have you applied these changes?
Super Cache – https://support.tipsandtricks-hq.com/forums/topic/using-the-plugins-together-with-wp-super-cache-plugin
W3 Total Cache – https://support.tipsandtricks-hq.com/forums/topic/using-the-plugins-with-w3-total-cache-plugin
admin
KeymasterI will take a look inside your site. I have sent you an email for it.
admin
Keymasterokay. At the moment there is no option to do HTML email with that. We prefer plain email for the following reason:
https://support.tipsandtricks-hq.com/forums/topic/why-use-plain-text-email-instead-of-html-email
Down the path if we get many people asking for it, we will make a change.
admin
KeymasterWe now have a custom addon for Kunaki integration.
admin
KeymasterWe now have the following gift certificate addon:
http://www.tipsandtricks-hq.com/ecommerce/wp-estore-gift-voucher-addon-1687
admin
KeymasterYou can also check this addon:
http://www.tipsandtricks-hq.com/ecommerce/wp-estore-gift-voucher-addon-1687
December 3, 2013 at 11:57 pm in reply to: Understanding the url for affiliates. (automatic affilliate links in creatives) #32688admin
KeymasterUsing the Creatives feature of this plugin is how you can do that. Check the following documentation and you will see how it works (there is a video there):
http://www.tipsandtricks-hq.com/wordpress-affiliate/how-to-create-creatives-for-affiliate-to-use-836
December 3, 2013 at 11:37 pm in reply to: No encrypted links in Admin Functions generated emails #42537admin
KeymasterHi Antonio, Have you configured the “Digital Product URL” field for the product in question? For integration method 1, you need to configure each eStore product with the downloadable image URL. Have you done that?
admin
KeymasterHi, I would recommend you to load a fresh copy of eMember first (since we recently upgraded the JS libraries for latest WordPress compatibility). The following post will guide you:
https://support.tipsandtricks-hq.com/forums/topic/re-install-or-load-a-fresh-build-of-the-plugins
If an error is coming from the Optimizepress theme then you will need to post the issue on their forum/support to get help. We can only guarantee that our plugin doesn’t have any javascript errors (from the error details you will be able to tell which plugin or theme an error is coming from).
admin
KeymasterYou will be able to translate using this method for eMember:
https://support.tipsandtricks-hq.com/forums/topic/plugin-language-translation
admin
KeymasterYou want to list users from a secondary level or you want to show the user’s secondary level in the details page?
admin
KeymasterI will add a filter in our auth_check_post function for the next version. So that function will look like the following:
function auth_check_post($content){
global $post;
$id = $post->ID;
if(empty($id)) return $content;
$id = apply_filters( 'emember_auth_check_post_id', $id);
return check_post_content($id, $content);
}You can then add the following code in your functions.php or a custom plugin:
add_filter( 'emember_auth_check_post_id', 'custom_get_wpml_parent_id' );
function custom_get_wpml_parent_id( $id ) {
if ( function_exists( 'icl_object_id' ) == true ) {
return icl_object_id( $id, 'post', false, 'it' );
}
return $id;
}admin
KeymasterYeah that behavior is very weird. I will take a look inside your site. I have sent you an email.
admin
KeymasterYou could also create a duplicate product and use a longer expiry date on this new product. Then give that customer access to this product.
Usually when you want to apply restriction based on the user/member, you use it with a membership plugin:
http://www.tipsandtricks-hq.com/wordpress-emember-easy-to-use-wordpress-membership-plugin-1706
admin
KeymasterCan you please share a link to your registration page so I can check it? I have a feeling there are some JavaScript errors on your site that is messing up eMember’s registration form validation.
-
AuthorPosts