Forum Replies Created
-
AuthorPosts
-
amin007
ParticipantWP eStore -> Admin Functions Menu -> Generate an encrypted link manually for the product
Then you can email that link out.
amin007
ParticipantYou can’t add products to your database from the admin side or you can’t add product to the shopping cart as a site visitor? What version of eStore and W3 total cache plugin do you have? Please post a link to your site.
June 17, 2011 at 1:41 am in reply to: Need to change the string of text after they have completed their registration. #33472amin007
ParticipantI think you have a wrong URL in the “registration complete” email. In your registration complete email you should point to the “Login Page URL” not the registration email.
Can you go to the email settings tab of eMember and check what you have in the “registration complete” email body? You can customize that email to say whatever you want to say (you don’t have to use the default text).
amin007
ParticipantThis post might help:
https://support.tipsandtricks-hq.com/forums/topic/just-lost-admin-privileges
If you totally deleted the admin user then you should be able to create another normal user (subscriber or something) then use the above method to give this user admin rights.
June 17, 2011 at 1:35 am in reply to: List of Plugins that Don't Play Nice (Conflicting Plugins) #21381amin007
ParticipantWell, ideally every plugin and theme should work together as long as the developer of the theme or plugin followed WordPress’s coding guideline so everyone can live in harmony. There is no magic in this… all you need is some dedication from the developer to develop a product nicely keeping in mind that the product will need to share the space with other products. This is why we try to explain exactly what mistake the developer made in the plugin that is conflicting in hopes that he/she might fix it one day.
So, to answer your question… I cannot tell you if a particular theme or plugin will work or not from the top of my head (if it doesn’t work then I can analyze it and tell you why it won’t work).
June 17, 2011 at 1:11 am in reply to: Plugin Not Showing up in Dashboard Correctly After Install #33418amin007
ParticipantVery weird… I have sent you an email to get site access so I can address this.
amin007
ParticipantThe fancy 5 shortcode comes from the extra shortcode plugin so please update that plugin from here and it will work fine:
http://www.tipsandtricks-hq.com/ecommerce/wp-estore-shortcodes-and-functions-reference-460
In your eStore settings menu look for the “Text/Image to show when cart is empty” field. That’s where you can specify the image URL of an image that you want to show when the cart is empty.
amin007
ParticipantThank you.. it looks like you have a CSS conflict. It’s moving the image from it’s normal potion to the center of the document. Lets identify the conflicting plugin first then we will be able to analyze it’s CSS and see what workarounds we can do. Please do this test mentioned here and let me know what you find:
https://support.tipsandtricks-hq.com/forums/topic/test-to-identy-a-conflicting-theme-or-plugin
amin007
ParticipantYes, the schema is capable of doing sub categories (I kept the option open when I created it because one day I am going to add this… managing time is the tricky part).
June 17, 2011 at 12:19 am in reply to: Remove Add to Cart button in [wp_eStore_all_products_stylish:end] view #33466amin007
ParticipantOpen the “eStore_misc_functions.php” file and search for the following line:
$output .= html_entity_decode($ret_product->description, ENT_COMPAT,"UTF-8");
Once you find it change it to something like the following;
$output .= '<div class="eStore_description">';
$output .= html_entity_decode($ret_product->description, ENT_COMPAT,"UTF-8");
$output .= '</div>';There will be a few occurrences so change them all. Now, you should be able to just target the description area and customize that via CSS.
June 17, 2011 at 12:11 am in reply to: Multiple free memberships with AWeber integration and automated account creation #32248amin007
ParticipantWe have worked on this and there is a solution for eMember in place that honza is using. It still needs documenting so it is not an advertised feature of eMember yet. Basically, this option will be introduced as our 4th registration/signup scenerio here:
http://www.tipsandtricks-hq.com/wordpress-membership/a-typical-member-registration-flow-96
June 17, 2011 at 12:06 am in reply to: Member Role not updating correctly w expired and on forums #22362amin007
Participantamin007
ParticipantI can definitely add that hook in eMember but that doesn’t look like an WordPress API to create user (as suggested originally). That looks like a custom hook that that the developer is using. Can you ask them for a link to the WordPress documentation for that hook if that is an official WordPress API/Hook?
For example, we use the following two API/Function because they are the official method of creating WordPress users (this is documented on WordPress’s site):
http://codex.wordpress.org/Function_Reference/wp_create_user
http://codex.wordpress.org/Function_Reference/wp_update_user
amin007
ParticipantHere is how you can set a payment gateway to be the default one (when you are offering multiple gateway options).
Add the following block of code in your theme’s functions.php file which will set authorize.net as the default selected option:
add_filter('eStore_cart_checkout_default_gateway', 'override_default_gateway');
function override_default_gateway($gateway)
{
$gateway = 'authorize';
return $gateway;
}Setting Another Payment Gateway as the Default
You can change the word
authorize
with one of the following to set a different gateway as the default option:paypal
(standard PayPal checkout)manual
(manual checkout)2co
(2checkout)authorize
(standard authorize.net checkout)gco
(Google checkout)pppro
(PayPal Pro checkout)auth_aim
(authorize.net AIM onsite checkout)ccbill
(CCBill checkout)stripe
(Stripe checkout)stripe_basic
(Stripe popup checkout)amin007
ParticipantShould not be hard to track. I have replied to this thread on this same issue:
Please let me know if simplepress can work fine when we use the following WordPress function to create the user or it needs something else:
wp_create_user
http://codex.wordpress.org/Function_Reference/wp_create_user
-
AuthorPosts