Forum Replies Created
-
AuthorPosts
-
amin007Participant
You could use the revenue sharing feature (the charity being the author) to keep track of the money that needs to be given to charity later:
amin007ParticipantYeah this should be doable for subscribe button too. No one ever asked for it… I will look into it.
amin007Participantamin007ParticipantPlease post a link to the page in question so I can see what you mean by the “ART BOX border”.
amin007ParticipantThis forum post is similar. Can you please take a look and let me know if that helps with your situation?
https://support.tipsandtricks-hq.com/forums/topic/no-from-address-in-welcome-member-email
amin007ParticipantYou did not answer the 2nd question but if that plugin took care of the issue then thats good.
August 16, 2011 at 12:17 am in reply to: Prevent user/member password sharing for membership site? #35519amin007ParticipantYes, Go to WP eMember settings and set a value in the “Login Restriction by IP Address” field.
amin007ParticipantWhen you use the 2nd NextGen gallery integration method the price for every item is the same. Users prefer to have a heading/title on this page (in large font) that says each item in this gallery costs $Y. This is why the template does not show the price to accommodate that kind of customization.
Remember, anything you place in the image caption (using the gallery) for the image will show up underneath the thumbnail. So you can list your price there too.
The other option is to modify the template code so that it reads the price from the database and shows it where you want. Add the following code somewhere at the beginning of the template:
$product_id = get_option('eStore_ngg_template_product_id');
global $wpdb;
$products_table_name = WP_ESTORE_PRODUCTS_TABLE_NAME;
$ret_product = $wpdb->get_row("SELECT * FROM $products_table_name WHERE id = '$product_id'", OBJECT);
$product_price = $ret_product->price;Now you can add the following anywhere on this template to show the price of for each item:
<?php echo "<span>Price: ".$product_price."</span>"; ?>
amin007ParticipantThe URL looks fine to me. Can you please load a fresh build of eStore from here:
https://support.tipsandtricks-hq.com/update-request
Let me know how you go after that.
amin007ParticipantWhat shopping cart are you using? When I checked your site it didn’t look like WP eStore to me. Do you have an exact link to the page where you have placed a product and shopping cart using the eStore plugin?
amin007ParticipantThe inventory is only updated after the customer confirms the payment. Many people will hit checkout then abandon the cart right before they enter their credit card info. You don’t want the inventory to update before the payment because you actually haven’t sold anything.
amin007ParticipantNo, eStore and eMember do not have any option to use any credit system.
August 15, 2011 at 11:25 pm in reply to: Product name in cyrillic (product name getting messed up in the email) #35509amin007ParticipantIs your database created in UTF-8 format? You can log into your PHPMyAdmin and check the charset type for your database tables. If you never used PHPMyAdmin then this article should help:
amin007ParticipantCheck the “index.php” file in your public_html directory and make sure there is no funny and unwanted characters there. You site may have been hacked. The error tells me that there is an “eval” function in the index.php file which it shouldn’t.
-
AuthorPosts