Forum Replies Created
-
AuthorPosts
-
admin
KeymasterYou can tell eStore to forward the IPN to your script by specifying it here:
WP eStore Settings -> 3rd Party Integration tab -> POST IPN to a 3rd Party Application
admin
KeymasterWhat version of eStore are you using right now? Which version did you upgrade it from? What is your WordPress version?
admin
KeymasterWhich option of affiliate area are you using explained in this page?
admin
KeymasterYeah this widget is the same for all items. You can also just use a shopping cart shortcode on your sidebar. Add a Text widget to your sidebar then use the shortcode there.
January 8, 2012 at 6:00 am in reply to: Item Name, Quantity and Price are white (on white background) + Sidebar Widget #40502admin
KeymasterYour font color issue has been replied on this other thread you posted:
How to Change the Color of the "Product Name" links in the Shopping Cart
The images are not over stretched. Your theme is specifying a border and background so it is making every input field look like that.
Regarding the shopping cart on a narrow sidebar.. this post will help:
https://support.tipsandtricks-hq.com/forums/topic/shopping-cart-on-sidebar-wide
January 8, 2012 at 5:49 am in reply to: How to Change the Color of the "Product Name" links in the Shopping Cart #15769admin
KeymasterThis is stemming from bad coding. Your theme has the following definition for the table header (th) elements (line 86 of style.css):
th {background-color: #666; padding: 10px 10px; border-color: #666; font-weight: bold; color: #FFF; }
So the table header is suppose to be grey color and have white font but on line 370 of style.css file it has the following CSS:
#pricing_table td, tr, th { background:none; border:none; text-align:center;}
This is making the table header inside the “pricing_table” div to have no background. Now for some reason (most likely this whole page is wrapped inside that pricing_table div) your site is taking the definition of this table header background and making it an empty background with white font (so you are seeing white on white).
Basically, if you place a table inside your WordPress post or page it won’t have any table header background while the font color is defined as white (#FFF)!
Try changing the following line (line 86 of style.css file of the theme):
th {background-color: #666; padding: 10px 10px; border-color: #666; font-weight: bold; color: #FFF; }
to the following:
th {background-color: #666 !important; padding: 10px 10px; border-color: #666; font-weight: bold; color: #FFF; }
admin
KeymasterThe most common cause for this would be that you have broken HTML code on this theme. Most likely there are unclosed elements. When you have unclosed elements the issue cascade down and makes some other parts of your web page to not render correctly. We can only guarantee you that this issue is not coming from the affiliate plugin. We can’t fix your theme’s code. More details on this topic here:
admin
KeymasterThat error is only visible to users who are trying to access your download outside of the allowed time frame. It is not something your valid customers will see on a regular basis. If you still want to customize it you can open the “download.php” file from the eStore plugin and change it.
January 7, 2012 at 8:30 am in reply to: Hiding content that was published prior to subscription #40453admin
KeymasterWhen setting up a membership site with weekly or monthly content, users prefer to setup an auto upgrade scheme. This allows your member to start from week1 or month1 when they singup and then progressively get promoted to higher and higher levels which gives them access to later content:
Is that what you are after?
Or something like this?
http://www.tipsandtricks-hq.com/wordpress-membership/membership-site-for-selling-a-course-897
admin
KeymasterThank you I will look into it and give you an update.
January 7, 2012 at 7:04 am in reply to: How to Display Product list with thumbnail image and name only #40450admin
KeymasterThere are some directions here that might help:
https://support.tipsandtricks-hq.com/forums/topic/fancy-3-category-products-css
admin
KeymasterIt may be really easy to handle just by having a special page with explanation and additional instruction. You can create a WordPress page that explains how to create simple affiliate links then place a link to this page on your affiliate index page (the page where you explain how your affiliate program works). This way the affiliates who need additional guidance can read up on it.
All you need is information similar to what we have on this page but tailor it so your affiliate users can understand it:
http://www.tipsandtricks-hq.com/wordpress-affiliate/how-to-create-banners-for-affiliates-to-use-153
admin
KeymasterYou cannot send 50 emails with different links manually but you can create a self serving platform where the valid customers can generate links for the product and download it.
1. Create a WordPress page and place the following shortcode on it:
[wp_eStore_download_link_sender]
You get this shortcode from the extra eStore shortcodes plugin which can be found here:
http://www.tipsandtricks-hq.com/ecommerce/wp-estore-shortcodes-and-functions-reference-460
2. Now when that product is ready, all you need to do is send an email to your customers and tell them to go to the page created in step 1 and collect their item.
Alternatively, you can just use the time limited encrypted links (do not limit by counts) when you send this mass email to your customers.
admin
KeymasterThis post has details and suggestions for you:
http://www.tipsandtricks-hq.com/ecommerce/selling-large-files-with-wp-estore-796
admin
KeymasterOkay will do. Just to verify… you did save the email settings after you updated the plugin right? The new email messages for this feature are in the email settings menu.
-
AuthorPosts