Forum Replies Created
-
AuthorPosts
-
June 14, 2011 at 1:20 am in reply to: The affiliate sign up page is not forcing *required* details #33341
amin007
ParticipantThis is probably because of the Jquery code not being parsed correctly. It can happen if the “register” script gets corrupted. Please get a fresh build of the plugin from here and test out the signup before you do any modification:
If everything works then add your tweak to make the PayPal field required.
June 14, 2011 at 1:17 am in reply to: Affiliate sign up page has jquery code appearing below the Affiliate ID field #33349amin007
ParticipantThis issue is related to this post so we will address it there:
amin007
ParticipantWP eStore only offers “tax by provinces” option via PayPal regional tax feature. This article will explain how you can set this up:
How to Use/Configure Sales Tax (Regional or International) When Selling Through PayPal
After you make a sale the PayPal receipt will contain the location of the buyer. You can also add the following email tag in your “Email Body” field of eStore and eStore will send you the address of the buyer:
{shipping_info}All the available email tags are documented here:
http://www.tipsandtricks-hq.com/ecommerce/wp-estore-shortcodes-and-functions-reference-460
amin007
ParticipantOne of the easiest ways to do this is to show the shopping cart of the sidebar. This way the customer can view the content of the cart from every page. You can see an example of this on our site here:
http://www.tipsandtricks-hq.com/products
If you watch the video tutorial here it will show you how to add the shopping cart widget to the sidebar:
http://www.tipsandtricks-hq.com/ecommerce/?p=593
Making a view cart link is as easy as creating a link to your “Checkout page” with the word “View Cart” as your anchor.
amin007
ParticipantYou have the following issue on your site:
To be more specific if you do a “view source” on the page in question you will see that it has the following two lines (which are both adding the same JQuery library but different versions of them).
<script type='text/javascript' src='http://realestate.instantbizsystem.com/wp-includes/js/jquery/jquery.js?ver=1.4.4'></script>The above one is from WordPress which is good but the following one is loading an old version (a poorly coded plugin or theme is doing this):
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>You can do the test mentioned here to find out which theme or plugin is doing this:
https://support.tipsandtricks-hq.com/forums/topic/test-to-identy-a-conflicting-theme-or-plugin
amin007
ParticipantIt will simply deactivate the specific member’s account when a refund is issued to their original membership payment. WP eStore does not know anything about continuity program. When a member cancels their subscription to a member eStore simply deactivates that account.
amin007
ParticipantLook inside the following function in the “download.php” file. Apply your renaming preference for the file however you want it:
eStore_perform_save_as_file_name_massagingAlternatively, use the following option:
Open the “eStore_advanced_configs.php” file and search for the following line of code:
define('WP_ESTORE_ENABLE_ADVANCED_NGG_FILE_SERVE', false);Once you find it change it to the following:
define('WP_ESTORE_ENABLE_ADVANCED_NGG_FILE_SERVE', true);This will make it to where eStore will first look for the “.jpg_backup” version of the image at the time of download and serve that one to the customer if it finds it.
amin007
ParticipantTurned out that you didn’t place the following shortcode on that page as mentioned in the documentation:
[free_rego_with_email_confirmation]It looks like you placed some HTML form code on that page (not sure where you got that idea from). Or you have a plugin which is causing this weirdness. Please make sure you don’t have a plugin that changes WordPress’s shortcode (this is against WordPress’s coding guideline).
Anyway, please update that page with the above shortcode and it will behave as documented.
Basically, you need to make sure that when you edit that page in your WordPress’s editor all you see is the following line of code:
[free_rego_with_email_confirmation]This post might help you identify the problematic plugin:
https://support.tipsandtricks-hq.com/forums/topic/test-to-identy-a-conflicting-theme-or-plugin
amin007
ParticipantUploading a fresh build of the plugin fixed the issue.
amin007
ParticipantI have sent you an email to get site access so I can investigate this.
June 13, 2011 at 2:42 am in reply to: Cart fields have no borders & how to move PP checkout button to the right? #33312amin007
ParticipantThis post should help you with getting the checkout button right aligned:
Regarding the coupon field customization… open the “eStore_cart.php” file and look for the following block of code:
<form method="post" action="" >
<input type="text" name="coupon_code" id="coupon_code" value="" size="10" />
<input type="submit" class="eStore_apply_coupon" value="'.ESTORE_APPLY.'" />
<input type="hidden" name="eStore_apply_discount" value="1" />
</form>Once you find it change it with the following which will do what your theme developer suggested:
<div class="default-fields">
<form method="post" action="" >
<input type="text" name="coupon_code" id="coupon_code" value="" size="10" />
<input type="submit" class="eStore_apply_coupon" value="'.ESTORE_APPLY.'" />
<input type="hidden" name="eStore_apply_discount" value="1" />
</form>
</div>amin007
Participant“my custom field input is in a weird place” – I don’t see this… can you please give example of what you mean by weird?
This post should help you with getting the checkout button right aligned:
amin007
ParticipantHow will the operating system be able to read a “.jpg_backup” file extension? This is not a valid file extension which is why it can’t read it. That doesn’t mean eStore is not doing what it is supposed to do which is download the exact file from your server to the clients computer as it is. Remember, when you open that file in a browser it can read the image file so when you save it it saves it as a .jpg file and hence you can open the file in your OS. WP eStore is not an image reader… its job is to download the file securely from sellers server to customer’s computer! All you have to do is rename the “.jpg_backup” file to “.jpg” after you download it to your computer and the operating system will be able to read it fine.
With that said, I have now added an option in eStore which will check for file names with “.jpg_backup” and change the save as name to “.jpg_backup.jpg”. To enable this option open the “download.php” file of eStore plugin and search for the following line of code:
//$file_name = eStore_perform_save_as_file_name_massaging($file_name);Once you find it, change it to the following:
$file_name = eStore_perform_save_as_file_name_massaging($file_name);amin007
ParticipantWhen add a product from the following page I don’t go to 404 page:
http://cleverstreak.com/cleverbiz-system-2/e-products
It adds the item and shows me the cart. Did you fix this already?
-
AuthorPosts