gsamsmith
Forum Replies Created
-
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Can’t update Givepw formsHi there,
I’m going to mark this ticket as resolved, but if there is anything else you need don’t hesitate to reach out.
Thanks.
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Invalid donation amountHi there,
I took a look at the page, and there are some errors displaying that are likely causing this issue you’re having.
This is likely the result of an incompatibility with either your theme or a third-party plugin.
Here’s an article we wrote on a method for checking for plugin or theme incompatibility using the Health Check plugin: https://givewp.com/documentation/resources/troubleshoot-wordpress-websites-health-check/
Follow the steps there, and let us know if you can isolate what the conflict is. At that point, we’ll try to replicate the conflict and find a fix.
Thanks.
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Give form not on own pageHi there,
I’m going to mark this ticket as resolved, but if there is anything else you need don’t hesitate to reach out.
Thanks.
Hi there,
I’m going to mark this ticket as resolved, but if there is anything else you need don’t hesitate to reach out.
Thanks.
Hi there,
I’m going to mark this ticket as resolved, but if there is anything else you need don’t hesitate to reach out.
Thanks.
Hi there,
I’m going to mark this ticket as resolved, but if there is anything else you need don’t hesitate to reach out.
Thanks.
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Button ColorHi there,
I’m going to mark this ticket as resolved, but if there is anything else you need don’t hesitate to reach out.
Thanks.
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Button ColorHi there,
We have a code snippet that shows how to center elements on donation forms here:
https://github.com/impress-org/givewp-snippet-library/blob/master/form-customizations/css-customizations/horizontally-center-form.cssThanks!
Hi there,
To have the custom donation amount selected by default, we have a custom code snippet that can be implemented.
Give doesn’t allow this by default because we try to adhere to fundraising best practices. Suggesting an amount (using the default amount option) will dramatically increase the number and amount of donations your organization gives. Part of that is that the donor has fewer clicks before they donate. Another part is just the psychology: ask for a big amount. The folks who can, will, the folks who can’t will adjust to a level they can give.
Additionally, from a technical perspective, the form cannot be submitted at all with a zero amount for validation purposes.?
Finally, the page will auto-scroll to that spot on the page upon load if you use the custom snippet. That’s unavoidable.
Here’s that code snippet:
function set_give_default_dropdown_option() { ?> <script> jQuery(document).ready(function( $ ) { $("select.give-donation-levels-wrap").val('custom'); $("#give-amount").focus().val(''); }); </script> <?php } add_action('wp_footer', 'set_give_default_dropdown_option');
If you need assistance implementing custom code on your website we have this guide:
https://givewp.com/documentation/resources/adding-custom-functions-to-your-wordpress-website/We also highly recommend testing this first in a staging site or local development environment before trying this on your live site.?
If your host doesn’t support staging sites, I use and recommend WP Stagecoach for this purpose:?https://benlikes.us/wpstagecoach
Please note that this code snippet is provided as an example of how you can extend Give with code. It’s up to you to implement and customize to your liking. We cannot provide support for custom code on your website, only the code that we create and distribute.?
As for having the Custom Amount listed first, this can likely be achieved with combination of JavaScript and CSS. We currently don’t have a code snippet that can achieve this, but this is something a developer could get up and running for you.
Have a great rest of your day!
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Give and Caldera FormsHi there,
We’ve actually written an article on using Caldera Forms to create and control the settings within Give forms.
Here’s the link to this article:
https://givewp.com/create-a-peer-to-peer-give-campaign-with-caldera-forms/While this article and video don’t cover assigning a category specifically, this will be a great place to start for extending this further. Thanks!
- This reply was modified 5 years, 3 months ago by gsamsmith.
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Braintree limitationsHi there,
That is a question about one of our premium add-ons. The moderators of this forum do not allow questions for our paid products to be handled here. Please submit your ticket through our Priority Support form:
https://givewp.com/priority-supportForum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] All Forms page – renameHi there,
I’m going to mark this ticket as resolved, but if there is anything else you need don’t hesitate to reach out.
Thanks.
Hi there,
I’m going to mark this ticket as resolved, but if there is anything else you need don’t hesitate to reach out.
Thanks.
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Pin a formHi there,
I’m going to mark this ticket as resolved, but if there is anything else you need don’t hesitate to reach out.
Thanks.
Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Button ColorHi there,
To change the button color you’ll need to use CSS to target the submit button and change the color. Here’s an example of how that would look:
.give-submit { background-color: green; }
Here’s a link to an article that goes over adding CSS to your site:
https://givewp.com/documentation/resources/handling-custom-css-in-wordpress/As for the donation level buttons showing horizontally, this is the default layout and should already be displaying this way.
Could you please send over a link to a donation form you have live? Thanks.