135 comments found.
Hi, Can you use this template for selling only 1 product, without implementing the shopping cart?
Hi!
At the moment PayPal payment is available only via Checkout button in cart. Though can you please explain how you would like to use it? Do you want to Buy now button link directly to PayPal payment?
Thanks, createIT
Panowie Pozwólcie ,ze po Polsku
. Wlasnie zapalilo mi sie piekne, proste swiatelko. Mam taka,biedusia, “platforme blogowa” taki klonik tumblr. A tu widze proste i genialne rozwiazanie, do stworzenia zaje.. post typu dla userow. Robicie zlecenia dodatkowe rowniez? pozdrawiam
Dzie? Dobry!
Tak, robimy tak?e zlecenie indywidualne, nie tylko pluginy i szablony publikowane tutaj. Wi?cej informacji znajdzie Pan na naszymm profilu – tutaj.
Pozdrawiam!
Hello,
Big thanks to the author for this package! It’s so clean and aesthetically pleasing not to mention extremely helpful… I’m trying to make a site where my boyfriend’s stepmom can sell her (one of a kind) art online. This is perfect for that except for the issue that customers can purchase more than 1 of each item… how can I make it so that the customer can only add ONE of each item to his or her shopping cart? I look forward to your help!
Thanks, Emily
Hi Emily!
Thanks! We’re happy to hear that you like our script! Unfortunately our paypal shop does not have any option to limit purchase to only 1 item (it’s default PayPal functionality that you can sell more than 1 unit of each item). Though I think that you can just hide option to define more than one unit with CSS. Please try to use the following CSS code on your website:
.ct-cart-input {
display:none;
}
I hope it will help.
Thanks, createIT
Hi,
Is it possible to add a link for IPN?
Thanks ! Mick
Hi!
It supports IPN, though there isn’t any ready to use listener script attached in plugin files. Can you please tell me how exactly you would like to use it (for emails or maybe for other type of notification)? So we could think about adding some script for this?
Thanks, createIT
Hi,
Oops ! I did not receive your answer!
I would like to record the data received by the IPN in my database and to also receive the data by e-mail.
Does that seem to you coherent?
Thanks again! Mick
Hi!
Yes, I think it does make sense for us. We need to discuss details, though I believe it’s something we could implement.
Thanks for your feedback, createIT
Hi! We like your script but unfortunately we are kind of like a little dissapointed that (as already stated above from user @macrimas) it is not that possible to add shipping costs. Shouldn’t that be always part of a shop which sells material products since free shipping isn’t always what the seller offers?!?
Can we upgrade your script with the following please:
A select button besides the “check out” button which gives two (or more) options: For example: – “US shipping” ( x $) – “international shipping” ( xx $)
You can only hit “check out” when shipping method is chosen by the user.
Shipping costs are added to the total. Can you please upgrade your script with that? In our opinion this would add a huge value to your plugin and since there was already a similiar request a fews days ago, we think there are more people wanting this feature.
Thank you very much for your help.
Best regards imig
Hi!
Thanks for your feedback. I’ve added this already to our todo list, so we will update the plugin with this new feature. Though, due to other projects scheduled – we can’t guarantee any exact timeframe for this update, so if you don’t want to wait – feel free to contact premium@createit.pl about custom work.
Best Regards, createIT
Pls add coupon.
Hi!
We will think about adding this as a new feature.
Thanks for your feedback.
Best regards, createIT
hi where do we change PayPal I have tried following your instructions but how do we change PayPal address? I cant use your support yet because my page isn’t live
I have added this to the bottom of my page so far All the parameters seem to be in this file shop.js but there’s no mention of adding this file in your instructions pdf
<script src="js/jquery.min.js"></script>
<script src="js/shop.min.js"></script>
<script>
$('body').ctshop({
'permanent_total_value': 'true',
'permanent_cart_buttons': 'true',
'empty_disable': true,
'after_add_to_cart': function () {
$('.cart-message-container').append('<span class="cart-message alert alert-success">Added to Cart</span>');
$('.cart-message').each(function() {
var $this = $(this);
setTimeout(function () {
$this.animate({'opacity': '0'}, 500);
}, 500);
setTimeout(function () {
$this.remove();
}, 1000);
});
}
})
</script>
Hello,
Here is the list of options our plugin supports: http://paypalshop.codecanyon.createit.pl/demo/options.htmlIf this is not enough, please create a ticket in our support forum http://createit.support/
Thanks, createIT
Hi I know the options but how do I actually add the paypal address to the above code if you could just add it to where it should be that would help a lot, I cannot create a ticket as the site isn’t on a domain or server yet and it won’t let you create a ticket without ftp details
Add the line paypal: {business: example@gmail.com},
after ‘empty_disable’: true,
Your PayPal ID or an email address associated with your PayPal account. Email addresses must be confirmed.
Thanks, createIT
if I add it like this below its still showing errors in dreamweaver. also do I need to use shop.min.js and shop.js? because the email and other values will need to be changed in shop.min.js wont they? thanks
<script src="js/shop.min.js"></script>
<script>
$('body').ctshop({
'permanent_total_value': 'true',
'permanent_cart_buttons': 'true',
'empty_disable': true,
paypal: {business: example@gmail.com},
'after_add_to_cart': function () {
$('.cart-message-container').append(' Added to Cart ');
$('.cart-message').each(function() {
var $this = $(this);
setTimeout(function () {
$this.animate({'opacity': '0'}, 500);
}, 500);
setTimeout(function () {
$this.remove();
}, 1000);
});
</script>
}
})
Hello,
Email address should be put inside quote marks. Also your code is missing brackets at the end.
$(‘body’).ctshop({ ‘permanent_total_value’: ‘true’, ‘permanent_cart_buttons’: ‘true’, ‘empty_disable’: true, ‘paypal’: { ‘business’: ‘example@gmail.com‘ }, ‘after_add_to_cart’: function () { $(’.cart-message-container’).append(’ Added to Cart ‘); $(’.cart-message’).each(function() { var $this = $(this); setTimeout(function () { $this.animate({‘opacity’: ‘0’}, 500); }, 500); setTimeout(function () { $this.remove(); }, 1000); }); } });
Best Regards, createIT
thank you – do I need to use shop.min.js and shop.js?
No, you only need to use shop.min.js
thanks just one more question is it in shop.min.js I need to change all the values such as currency and the paypal email address etc? thanks
thanks just one more question is it in shop.min.js I need to change all the values such as currency and the paypal email address etc? thanks
Hello,
No, there should be no need to change this file. We provide options for that. Just like the options above you have:
currency: ”$”
and inside paypal node: currency_code: “USD”
If you still have issues setting it up, please create a new ticket in http://createit.support/ so we can help you better.
Thanks, createIT
The imac in your demo doesn’t add to cart here: http://paypalshop.codecanyon.createit.pl/corpress/index.html
I see it doesn’t have a price by it, is that why?
Hello,
We fixed the issue and it is now working, thanks 
createIT
Hi, happy i found your script. Before i purchase, i would like to know it it is possible to add shipping costs per order. Thank you for your answer.
Hello,
It’s not possible by default to calculate the shipping cost with our plugin. But, we have a couple of callbacks you can use in order to add this shipping cost automatically.
Best Regards, createIT
Since it will be a flat rate for shipping, will we be able to add a fix amount per order automatically?
Yes, you can use one of the callback to add this amount into the cart.
You have to write this part of the code tough. This is not part of our free support, but if you need help with that you can contact premium@createit.pl asking for a quote. It shouldn’t take us a lot of time to implement, if it’s just a flat rate for any shipment.
Best Regards, createIT
Hello,
Is it possible to add an additional variable (a color for example)?
Also a code promotion?
Thanks! Mick
Hi!
There isn’t any predefined method to add custom variables. We already have variables for editing colors, though if you need more advanced settings I think the easier would be to edit it with CSS.
We will discuss adding a new option to define promotional code in a cart. It should be available in next plugin update.
Thanks, createIT
In fact, I thought of the HTML Variables for Individual Items (weight, on0…)
https://developer.paypal.com/docs/classic/paypal-payments-standard/integration-guide/Appx_websitestandard_htmlvariables/Thanks again! Mick
Hi!
Some of variables here are deprecated, though if you would like to include some of them anyway – you can do it in main plugin javascript file (screenshot: here). Under paypal inputs for each item in cart you can add variables for individual items.
Thanks, createIT
Hi,
Is it possible to add a link for IPN?
Thanks again! Mick
Hello,
Is it possible to add an additional variable (a color for example)?
Also a code promotion?
Thanks! Mick
Hello,
Yes it is possible 
Best Regards, createIT
Hello,
Is it possible to add an additional variable (a color for example)?
Also a code promotion?
Thanks! Mick
Possible to change the payment instead of paypal?
Hi!
Plugin is integrated only with PayPal (as the name suggests :)), so unfortunately there is no option to use it for different payment method.
Thanks, createIT
Hello,
Unfortunately no. Our plugin is using Paypal API, so in order to support another payment method we need to add support for their own API.
If you wish, you can send us an email to premium@createit.pl asking for a quote. We might be able to add custom support to another API for you.
Best Regards, createIT
is it simple to move between sandbox & live for testing ?
Hi!
To integrate our plugin with Paypal account – you need to define your Paypal ID or email address with business variable (more information about options can be found here).
To test it with Sandbox you just need to change the following line in main plugin script:form.attr('action', 'https://www.paypal.com/cgi-bin/webscr');
to
form.attr('action', 'https://www.sandbox.paypal.com/cgi-bin/webscr');
(after testing you need to change it back to paypal url).
So I think this is quite simple
Thanks, createIT
Hello This works with Paypal Shop USD ($) Is it possible that it will work in in Euro?
Reiner
Hi!
Yes, it’s possible
You can define custom currency for prices with currency parameter and it will be converted by PayPal (plugin uses dedicated PayPal API for this).
Please check full list of options here.
Thanks, createIT