Sam De Francesco
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Manager Pro Stripe Gateway] Gateway weight or orderUnfortunately this is not possible at this point of time, as the events manager pro plugin provides no way to manipulate the order of the active gateways when displaying them on the form. I’ve provided a patch to the developers as a suggestion to implement this feature, if they apply it then I’ll update my plugin to handle it.
Forum: Plugins
In reply to: [Events Manager Pro Stripe Gateway] Nothing happensSorry to hear about your problems, can you tell me a little more about your settings? When you say “button”, do you mean you have the “Enable Quick Pay Buttons” option set? If so, these are for Paypal and offline payments only (i.e. Authorize and Stripe require CC information and therefore don’t work in Quick Pay button mode).
If not that, then we’ll get to the bottom of it.
Forum: Plugins
In reply to: [Events Manager Pro Stripe Gateway] Gateway weight or orderI’ll check out with the EMP plugin how the order is determined, and see if it can be changed. This would be handy for our own site as well.
Forum: Plugins
In reply to: [Events Manager Pro Stripe Gateway] Which API KeysSorry to hear about your problems, can you tell me a little more about your settings? When you say “button”, do you mean you have the “Enable Quick Pay Buttons” option set? If so, these are for Paypal and offline payments only (i.e. Authorize and Stripe require CC information and therefore don’t work in Quick Pay button mode).
If not that, then we’ll get to the bottom of it.
Forum: Plugins
In reply to: [Events Manager Pro Stripe Gateway] Which API KeysYou will need the secret keys to perform the operations required. According to the Stripe documentation:
Publishable API keys are meant solely to identify your account with Stripe, they aren’t secret. In other words, they can safely be published in places like your Stripe.js javascript code, or in an Android or iPhone app. Publishable keys only have the power to create tokens.
Secret API keys should never be published, and must be kept confidentially on your own servers. These keys can perform any API request to Stripe without restriction.
I’ve released version 1.0.5 of the plugin which should now run under PHP 5.2. Let me know how it goes.
To make it 5.2 compatible would not require a huge change in the code. I was in two minds when writing the plugin whether to support 5.2 or not, but given you are still running a 5.2 environment, and others perhaps, it may make sense for me to downgrade my minimum version required.
Thanks for the update, I’ll see about adding some dependency checking code.
Forum: Plugins
In reply to: [Cart66 Lite :: WordPress Ecommerce] add to cart button errorPerhaps the action is being called before the Cart66Common class is being defined. You might want to experiment with different priority levels as a third option to the “add_action()” function to make sure that it gets called after the cart66 classes.
Forum: Plugins
In reply to: [Cart66 Lite :: WordPress Ecommerce] add to cart button errorNo problem, perhaps add something like:
function remove_cart66_meta() { Cart66Common::removeCart66Meta(); } add_action('init', 'remove_cart66_meta');to your theme’s function.php file.
Forum: Plugins
In reply to: [Cart66 Lite :: WordPress Ecommerce] add to cart button errorYou could try calling Cart66Common::removeCart66Meta() from one of your init scripts.