Forum Replies Created
-
AuthorPosts
-
amin007
ParticipantThanks Tink
amin007
ParticipantThe product ID cannot be changed as it needs to be unique so a record can be identified from the database with the ID being the key. So the plugin automatically generates ID as an incremental number (this leaves no room for any mistake).
If you want to associate the code “BUSTED01” with that product you can put it in the product name like the following for example:
Test Product Name (BUSTED01)
The other option is that I can add another database field that lets you store a special product code with every product.
amin007
ParticipantThose shortcodes are implemented using WordPress filter (this is how shortcodes were implemented before WordPress introduced the new shortcode functionality).
What this means is that when the page is filtered it doesn’t even see the shortcode that you have inside the shortcode so it doesn’t filter it.
So the simple answer is that you can’t do it but if you are up for some challenge then I can give you another shortcode implementation that uses the new shortcode functions of WordPress and I think you should be able to do the shortcode nesting (shortcode inside a shortcode).
amin007
ParticipantYes, you can use a simple PayPal button (e.g. Buy Now or Subscribe) as long as you know about the PayPal’s IPN feature. I will provide you with the IPN handling script so all you have to do is use that script from your button. I will send you an email to explain more.
amin007
ParticipantHi Bill, The footer section of the fancy display 2 option is fixed. I had to make it fixed to make everything align so when you have more than one variation it looks crappy as it pushes everything down.
I will take a look at the CSS to see if I can make it expand depending on the number of variations… in the meantime can you please use fancy display option 1 (this option will tackle your scenerio).
amin007
ParticipantThis post explains how the shipping works:
amin007
ParticipantYou can tweak the code a bit so it doesn’t show the available qty in the fancy display option.
Open the “eStore_misc_functions.php” and search for the following:
if (!empty($ret_product->available_copies))
once you find it delete that line and the line immediately below it and that should do it (there will two occurrences of this).
February 21, 2010 at 3:00 am in reply to: IPN sent to the plugin (example, WP eStore) are failing #18200amin007
ParticipantI am not certain if the problem is with Godaddy or some other software that you are using on your server but from PayPal’s point of view they are having issue reaching your server.
I tried to send a test IPN from PayPal sandbox to your server and it gave me the following error:
“IPN delivery failed. Unable to connect to the specified URL. Please verify the URL and try again.”
The URL you mentioned is the URL where paypal sends the payment notification (The plugin then reads it and does it’s post payment stuff)
Basically, something is blocking PayPal from reaching your server… if you happen to have another hosting from some other company you can quickly prove this theory by setting up the eStore on that server.
amin007
ParticipantNow when a customer’s payment is in “Pending” status it will send them an email saying the product will be delivered when the funds clear (no download link is provided at this state). They will automatically get another email with the download link when the fund clears
amin007
ParticipantDid you verify and make sure there is no error in the URL that you entered in the “Digital Product URL” field? Do you get a download if you enter that URL directly in the address bar? if you don’t then it means that there is a typo in the URL and plugin won’t be able to download it either.
amin007
Participant“I am going to end up with lots of pages in my eStore” – you mean the pages in your website or you are going to have lots of product in eStore?
If you meant wordpress pages then using the WP Pagination plugin can help. You are not likely to have any plugin compatibility issue with eStore if you stick with most of the major well known/widely used plugins.
“I read somewhere that I should only load 20 items per page” – this is not true.
February 21, 2010 at 2:31 am in reply to: Shopping Cart Showing The Same Product On All Carts #18329amin007
ParticipantHi Annabel, all 6 shopping cart? I am not sure I understand the scenerio… can you please explain.. maybe post a link too?
February 21, 2010 at 2:06 am in reply to: Content Protection Not Set for Pages on Different Tabs #17752amin007
ParticipantI will send you an email and you will be able to reply to it with the new language file. I will also take a look at your system to see what the issue with the eMember plugin is
amin007
ParticipantThere are many different types of shortcodes in WP eStore so adding them to the editor is not viable.
There is a plugin called Post Snippets that will allow you to do exactly what you are after:
http://wordpress.org/extend/plugins/post-snippets/
Let me know if this helps.
amin007
Participant@RKJohnson2, The easiest way to identify the issue is to enable debug and run a test transaction. The following URL will help you:
Let me know how it goes.
-
AuthorPosts