Forum Replies Created
-
AuthorPosts
-
Admin
KeymasterIt is likely your theme is overriding the CSS. You can do the following test to isolate:
Test for Plugin and Theme Conflict Before Posting an Issue or a Bug
You can try using the
!important
tag to see if you can force the CSS to take. See the example below:.asp-multicurr-select{ font-size: 20px; color: red; padding: 15px !important; }
Admin
KeymasterYes, you should be able to use CSS tweaks to customize those elements. Below is an example to showing how.
You can add the following CSS tweaks in the
Appearance -> Customize -> Additional CSS
interface of your admin dashboard to make the font size bigger and change the color to blue:.asp-multicurr-select-container label { font-size: 20px; color: blue; } .asp-multicurr-select{ font-size: 20px; color: blue; } .asp-multicurr-submit-btn { font-size: 20px; color: blue; }
This is just an example. You can experiment with the different CSS values to see what you like.
Admin
KeymasterNo, our subscription addon doesn’t have SEPA option. We will add it to our wish list.
Admin
KeymasterThat will require a heavy setup on your server (due to the architecture that will be required). Something like that is best to be handled using a custom development job at this stage.
November 2, 2021 at 9:32 am in reply to: Add migration option to Stripe Payments plugin (or add-on). #4401Admin
KeymasterMigration can be very tricky based on the individual site’s setup. So migration is not something we can handle as part of standard plugin support. We will try to see if we can create an addon for it.
Admin
KeymasterPlease provide the following details:
What version of the main plugin are you using?
What version of the Custom fields addon?What value do you have in the “custom fields” settings of the individual product? Which radio options are checked in that section?
Admin
KeymasterNo, it can have other ramifications as it can lead to fraudulent activity. So stripe doesn’t allow you to change an existing plan that way. The customer has to explicitly Agree to the change of price. The cleanest way to ensure this happens is to create a new subscription plan with a new price. Then anyone that purchase that will be on the new price. This also allows you to keep the existing customers in the older price (grandfather them in) which is generally how most people prefer to use it.
Admin
KeymasterHi, Not at the moment. We have taken a very streamlined checkout and lightweight plugin approach for this solution. A cart requires a slightly different approach.
In the future, We may be able to create an option for it. We will perhaps create a solution with our following simple cart solution:
Admin
KeymasterWe will release this today. So you will be able to update the main plugin and the subscription addon soon. Then create a new subscription plan with this new option.
Admin
KeymasterWe have released a new version of the subscriptions addon that has an option for this. Please upgrade the subscriptions addon then you will be able to specify a minimum subscription donation amount.
Admin
KeymasterThe following page explains the notification email customization option:
Looks like you want to put some dynamic analytics tracking type link which is not possible to put in the email at this stage. Maybe, you can try the following analytics tracking addon which can give something close to what you are after?
https://s-plugins.com/stripe-payments-google-analytics-ecommerce-tracking-addon/Admin
KeymasterWe are going to make a couple of changes to address this issue. I will give you an update after we make the necessary code modifications to the plugin.
Admin
KeymasterHi, Are you doing the one time donation and a subscription donation all in one product? That seems to be causing an conflict. You need to delete that product then create a new product and pick the subscription type for it. Don’t select a “donation” type product then switch it to subscription.
Product types (one time, donation, subscription) are totally unique types. A NEW product needs to be created for each type of those.
September 11, 2021 at 12:26 am in reply to: Spammers Posted hundreds ‘card testing’ transactions #4306Admin
KeymasterThere are various different things the spammers try so I won’t be able to tell you exactly what happened in your scenario without looking at all the income server request data. The captcha will stop all of those anyway and solve the issue.
There is an additional price verification that is done by our plugin after a successful API response. The post payment processing script will look at the webhook data sent by Stripe and match the price value with the data saved in the database for that product. If that validation fails, it won’t add to the orders menu (since it is not a valid transaction).
There is a lot more technical stuff that happens underneath, if you are interested, use the contact form to email us and I will give you more info.
September 10, 2021 at 11:09 am in reply to: Spammers Posted hundreds ‘card testing’ transactions #4303Admin
KeymasterYou need to enable the following captcha feature asap. That will stop those spam bots:
It’s actually a recommended setup when you setup the plugin at first. However, some uses dismiss that message. So please enable that feature and let us know how it goes after that.
-
AuthorPosts