Forum Replies Created
-
AuthorPosts
-
adminKeymaster
I am assuming you have good understanding of MySQL database and you also have access to WordPress from this script that you are modifying.
This is what you can use:
global$wpdb;
$products_table_name = WP_ESTORE_PRODUCTS_TABLE_NAME;
$retrieved_product = $wpdb->get_row("SELECT * FROM $products_table_name WHERE id = '$cart_item_number'", OBJECT);
$product_description = $retrieved_product->description;August 31, 2011 at 5:22 am in reply to: Looking to be able to sell a COLLECTION of items using one display #36050adminKeymasterPlease read the help text for the following field of eStore (the 2nd bullet point):
WP eStore Add/Edit Product -> Digital Product URL
Basically, enter the product IDs separated by comma (eg. 3,8,18) if making a bundled/packaged product.
adminKeymasterUpdated the calculation to work like the following:
Affiliate gets hist the cut fist (at 50%) = $8.50
Author and partners cut is calculated on the following amount:
(product price – affiliate’s cut for this product)
So, in your case The “house” and “author” should both receive $4.25
Please get a new build of eStore from here and test it out:
adminKeymasterThe manual checkout doesn’t do Analytics tracking because the payment is not confirmed in a manual checkout. Someone can submit the form and then not follow up with the payment.
I can add an option in the settings so it adds tracking for manual checkout even though the payment is not cleared.
adminKeymasterHi, you shouldn’t have to change any code to make the plugin work. Please get a fresh build from here and let me know ho you go after the update:
adminKeymasterIf you don’t hear from me in a few days then just bump this post
adminKeymasterI am not sure why you are trying to add the description into the sales table. A product description is already present in the products table (its not like the product description is going to change when the sale happens). So all you need to do is query the products table with the PRORUCT ID (this ID is unique and can be used to reference across tables) and retrieve the description from there when you need it.
adminKeymasterARB will be available in the “Payment Gateway Bundle” plugin in a few days:
http://www.tipsandtricks-hq.com/wp-payment-gateway-bundle-plugin
August 31, 2011 at 2:17 am in reply to: Can you forward "Buy Now" button to an external link to sales page/cart? #36047adminKeymasterYou are not forwarding the cart… you are simply redirecting the traffic to the target site with your affiliate ID.
In eStore simply add the URL in the following field of that product (where you want to redirect the visitor to when they click the button)
Button Redirect Target URL
Now, when you place an “Add to Cart” button for this product it will simply send the visitor to the URL you specified (your affiliate URL).
adminKeymasterWP eStore’s Pay Per View option is simple:
You pay for an item, you get to view it.
So, if you set the expiry to 365 days and the download counts to 12 you might be able to get what you are after but I wouldn’t recommend that.
A better way to handle this type of setup is to use a membership plugin. A membership plugin allows you to protect the section of a post or page. So you can have a teaser video (30 seconds long) that is available for everyone to see then just below it embed the full video but it is only available to a member. This lets you control which user can see what and for how long and stuff.
adminKeymasterNot sure how that banner got into this state but the following video tutorial will teach you how to manipulate data easily in the database:
How to Easily Import or Export any of Your WordPress Database Table Content
After checking the video tutorial go to your PHPMyAmdin and look inside the “wp_affiliates_banners_tbl” database table. Now you can delete any entry from here easily.
August 31, 2011 at 1:55 am in reply to: Lack of Registration Error Message upon username or email address already taken #35984adminKeymasterThere is most likely other Javascript conflict on that page. I have sent you an email to get site access so I can investigate this further.
August 31, 2011 at 1:51 am in reply to: Hiding content from registered users but not general public? #31668adminKeymasterYou can use PHP code in your template file so there is no need to use that shortcode. Simply use one of the functions to determine if a user is logged in or not… some examples here:
http://www.tipsandtricks-hq.com/wordpress-membership/wp-emember-miscellaneous-tweaks-248
adminKeymasterNope, thats not how subscription works.
What you are trying to do is called drip feed. You will need a membership plugin for that. So a user becomes a member of your site and then the membership plugin drips the content to the member (1 day at a time in your case).
August 31, 2011 at 1:34 am in reply to: Add button next to add to cart button in fancy stylish display 2 #36044adminKeymasterThe following two posts should tell you what code to modify:
– https://support.tipsandtricks-hq.com/forums/topic/some-styling-questions-in-fancy-2-display
– https://support.tipsandtricks-hq.com/forums/topic/how-do-i-remove-parts-of-the-fancy-2-display
-
AuthorPosts