Title: Maruti Mohanty's Replies | WordPress.org

---

# Maruti Mohanty

  [  ](https://wordpress.org/support/users/marutim/)

 *   [Profile](https://wordpress.org/support/users/marutim/)
 *   [Topics Started](https://wordpress.org/support/users/marutim/topics/)
 *   [Replies Created](https://wordpress.org/support/users/marutim/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/marutim/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/marutim/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/marutim/engagements/)
 *   [Favorites](https://wordpress.org/support/users/marutim/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 656 total)

1 [2](https://wordpress.org/support/users/marutim/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/marutim/replies/page/3/?output_format=md)…
[42](https://wordpress.org/support/users/marutim/replies/page/42/?output_format=md)
[43](https://wordpress.org/support/users/marutim/replies/page/43/?output_format=md)
[44](https://wordpress.org/support/users/marutim/replies/page/44/?output_format=md)
[→](https://wordpress.org/support/users/marutim/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GiveWP - Donation Plugin and Fundraising Platform] Compatibility of the Give plugin with PHP 7.1](https://wordpress.org/support/topic/compatibility-of-the-give-plugin-with-php-7-1/)
 *  [Maruti Mohanty](https://wordpress.org/support/users/marutim/)
 * (@marutim)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/compatibility-of-the-give-plugin-with-php-7-1/#post-11614453)
 * Hi There,
 * Yes, GiveWP is compatible with PHP 7.1 and above.
 * Thank you!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GiveWP - Donation Plugin and Fundraising Platform] Duplicate radio buttons](https://wordpress.org/support/topic/duplicate-radio-buttons/)
 *  [Maruti Mohanty](https://wordpress.org/support/users/marutim/)
 * (@marutim)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/duplicate-radio-buttons/#post-11604909)
 * Happy to help 🙂
 * If you’re enjoying Give and have appreciated our support, we’d love a kind review
   from you here:
    [https://wordpress.org/support/view/plugin-reviews/give](https://wordpress.org/support/view/plugin-reviews/give)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GiveWP - Donation Plugin and Fundraising Platform] Delete Fields in the Donation Form](https://wordpress.org/support/topic/delete-fields-in-the-donation-form/)
 *  [Maruti Mohanty](https://wordpress.org/support/users/marutim/)
 * (@marutim)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/delete-fields-in-the-donation-form/#post-11599467)
 * Hi There,
 * There is no direct way to do that, but this can be accomplished in the following
   ways.
 * – The Zip code is a required field. Make it a NOT required field using a custom
   snippet.
    – Hide the Address 2 line and zip code using custom CSS.
 * You can make the ZIP code NOT required by adding the following custom snippet
   to your website.
 *     ```
       function give_dont_require_fields( $required_fields, $form_id ) {
   
       	if(isset($required_fields['card_zip'])) {
       		unset($required_fields['card_zip']);
       	}
   
       	return $required_fields;
       }
       add_filter( 'give_donation_form_required_fields', 'give_dont_require_fields', 10, 2 );
       ```
   
 * If you need any help in adding a custom snippet to your website, you can check
   this detailed doc here for more help: [https://givewp.com/documentation/resources/adding-custom-functions-to-your-wordpress-website/](https://givewp.com/documentation/resources/adding-custom-functions-to-your-wordpress-website/)
 * 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.
 * Then you can add the following custom CSS to your site to hide the fields.
 *     ```
       #give-card-address-2-wrap,
       #give-card-zip-wrap {
           display: none;
       }
       ```
   
 * Add that to the bottom of your theme’s styles.css file or go to “Appearance >
   Customize > Additional CSS” and add it to the bottom of that setting. For more
   detailed info on adding custom CSS, see here: [https://givewp.com/documentation/resources/handling-custom-css-in-wordpress/](https://givewp.com/documentation/resources/handling-custom-css-in-wordpress/)
 * Thank you!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GiveWP - Donation Plugin and Fundraising Platform] Duplicate radio buttons](https://wordpress.org/support/topic/duplicate-radio-buttons/)
 *  [Maruti Mohanty](https://wordpress.org/support/users/marutim/)
 * (@marutim)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/duplicate-radio-buttons/#post-11599381)
 * Hi There,
 * This seems like the styling of your theme is overriding the styling for the donation
   form.
 * You can fix this by adding the following custom CSS to your site.
 *     ```
       form[id*=give-form] #give-gateway-radio-list>li input[type=radio] {
           display: contents;
       }
       ```
   
 * Add that to the bottom of your theme’s styles.css file or go to “Appearance >
   Customize > Additional CSS” and add it to the bottom of that setting. For more
   detailed info on adding custom CSS, see here: [https://givewp.com/documentation/resources/handling-custom-css-in-wordpress/](https://givewp.com/documentation/resources/handling-custom-css-in-wordpress/)
 * Once you have added the above CSS, you should see the radio buttons as this: 
   [https://d.pr/free/i/EzTt5w](https://d.pr/free/i/EzTt5w)
 * Thank you!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GiveWP - Donation Plugin and Fundraising Platform] Checkbox for anonymous donation not localized](https://wordpress.org/support/topic/checkbox-for-anonymous-donation-not-localized/)
 *  [Maruti Mohanty](https://wordpress.org/support/users/marutim/)
 * (@marutim)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/checkbox-for-anonymous-donation-not-localized/#post-11069028)
 * Hi There,
 * You should be able to change the text by adding the following custom snippet 
   to your website.
 *     ```
       function vc_give_text_switcher( $translation, $text, $domain ) {
   
       	if ( 'give' === $domain && 'Make this an anonymous donation' === $text ) {
       		$translation = __( 'YOUR TEXT HERE1' );
       	}
   
       	// For the help text.
       	if ( 'give' === $domain && 'Would you like to prevent this donation from being displayed publicly?' === $text ) {
       		$translation = __( 'YOUR TEXT HERE2' );
       	}
   
       	return $translation;
       }
       add_filter( 'gettext', 'vc_give_text_switcher', 10, 3 );
       ```
   
 * If you need any help in adding a custom snippet to your website, you can check
   this detailed doc here for more help: [https://givewp.com/documentation/resources/adding-custom-functions-to-your-wordpress-website/](https://givewp.com/documentation/resources/adding-custom-functions-to-your-wordpress-website/)
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GiveWP - Donation Plugin and Fundraising Platform] Question about ‘Donation Upsells for WooCommerce’ Add On](https://wordpress.org/support/topic/question-about-donation-upsells-for-woocommerce-add-on/)
 *  [Maruti Mohanty](https://wordpress.org/support/users/marutim/)
 * (@marutim)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/question-about-donation-upsells-for-woocommerce-add-on/#post-11067735)
 * Hi there,
 * This question is regarding one of our paid add-ons. The moderators of this forum
   require that all inquiries about paid products happen elsewhere. Please use our
   Priority Support page for your inquiry and we’ll get back to you very soon:
    
   [https://givewp.com/priority-support](https://givewp.com/priority-support)
 * Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GiveWP - Donation Plugin and Fundraising Platform] donation link button – customise](https://wordpress.org/support/topic/donation-link-button-customise/)
 *  [Maruti Mohanty](https://wordpress.org/support/users/marutim/)
 * (@marutim)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/donation-link-button-customise/#post-11067732)
 * Very happy to help!
 * If you’re enjoying Give and appreciate our support, we’d love a kind review from
   you here:
    [https://wordpress.org/support/plugin/give/reviews/](https://wordpress.org/support/plugin/give/reviews/)
 * Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GiveWP - Donation Plugin and Fundraising Platform] Reveal button inactive when merging javascript](https://wordpress.org/support/topic/reveal-button-inactive-when-merging-javascript/)
 *  [Maruti Mohanty](https://wordpress.org/support/users/marutim/)
 * (@marutim)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/reveal-button-inactive-when-merging-javascript/#post-11065733)
 * Hi there,
 * We have had users in the past having a similar issue and taking of the Give scripts
   off that merging script or further minifying it would fix the issue.
 * Give scripts are very much optimized and should not be adding a much of time 
   to the website loading.
 * I would suggest leaving the Give scripts off that merge to fix this issue.
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GiveWP - Donation Plugin and Fundraising Platform] donation link button – customise](https://wordpress.org/support/topic/donation-link-button-customise/)
 *  [Maruti Mohanty](https://wordpress.org/support/users/marutim/)
 * (@marutim)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/donation-link-button-customise/#post-11065722)
 * Hi There,
 * You can add the following custom CSS to your website to change the shape/color
   of the Give Donate button on your website
 *     ```
       .give-btn-modal {
           color: #fff;
           background: #F4AB48;
           width: 100px;
       }
       ```
   
 * Add that to the bottom of your theme’s styles.css file or go to “Appearance >
   Customize > Additional CSS” and add it to the bottom of that setting.
 * PS: the above is just a reference code snippet, you could/should change the color/
   width (hex code [https://www.rapidtables.com/web/color/html-color-codes.html](https://www.rapidtables.com/web/color/html-color-codes.html))
   to best suit your need.
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GiveWP - Donation Plugin and Fundraising Platform] Mollie payment cancelation + directed page](https://wordpress.org/support/topic/mollie-payment-cancelation-directed-page/)
 *  [Maruti Mohanty](https://wordpress.org/support/users/marutim/)
 * (@marutim)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/mollie-payment-cancelation-directed-page/#post-11029548)
 * Hi There,
 * This support forum is only for the GiveWP plugin (free ).
 * Mollie is a premium add-on and hence we can not provide support for it here. 
   Please submit a ticket on our website and we will be happy to help you further.
 * Thank you 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GiveWP - Donation Plugin and Fundraising Platform] Donation complete – no payment triggered](https://wordpress.org/support/topic/donation-complete-no-payment-triggered/)
 *  [Maruti Mohanty](https://wordpress.org/support/users/marutim/)
 * (@marutim)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/donation-complete-no-payment-triggered/#post-10958620)
 * Marcel,
 * Glad to hear that.
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GiveWP - Donation Plugin and Fundraising Platform] Donation complete – no payment triggered](https://wordpress.org/support/topic/donation-complete-no-payment-triggered/)
 *  [Maruti Mohanty](https://wordpress.org/support/users/marutim/)
 * (@marutim)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/donation-complete-no-payment-triggered/#post-10958570)
 * Hi Marcel,
 * Looking at the details, this seems you are using Pronamic Pay settings using 
   this plugin [https://wordpress.org/plugins/pronamic-ideal/](https://wordpress.org/plugins/pronamic-ideal/)
 * Can you also check if you are facing any issues with donations via Paypal ( Give’s
   default payment gateway ) or any of other payment gateways add-on from Give?
 * If you are only having issues with Pronamic pay settings, I would suggest checking
   with their support here: [https://wordpress.org/support/plugin/pronamic-ideal](https://wordpress.org/support/plugin/pronamic-ideal)
 * Let me know how does it go.
 * Thanks! Have a good day and weekend ahead 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GiveWP - Donation Plugin and Fundraising Platform] Add donations manually?](https://wordpress.org/support/topic/add-donations-manually/)
 *  [Maruti Mohanty](https://wordpress.org/support/users/marutim/)
 * (@marutim)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/add-donations-manually/#post-10673061)
 * Hi Tina,
 * You can add donations to your donation form manually by using our Manual Donations
   add-on [https://givewp.com/addons/manual-donations/](https://givewp.com/addons/manual-donations/)
 * This will let you add the donation to any donation form from the admin dashboard
   and will let you choose the payment method, donor, date etc. This donation will
   also add up to the donation goal ( if you have enabled any ).
 * You can read the complete “how to” doc here: [https://givewp.com/documentation/add-ons/manual-donations/](https://givewp.com/documentation/add-ons/manual-donations/)
 * Let me know if you have any further questions.
 * Thank You 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GiveWP - Donation Plugin and Fundraising Platform] Stripe modal checkout shows incorrect amount when Currency switcher is on](https://wordpress.org/support/topic/bug-stripe-modal-checkout-shows-incorrect-amount-when-currency-switcher-is-on/)
 *  [Maruti Mohanty](https://wordpress.org/support/users/marutim/)
 * (@marutim)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/bug-stripe-modal-checkout-shows-incorrect-amount-when-currency-switcher-is-on/#post-10643244)
 * Hi There,
 * I understand you have had issue submitting the support form.
 * We have had users complaining about support form before but this has been intermittent
   and we have never been able to replicate this successfully.
 * I just tried to submit a ticket via our support form and could do it without 
   any issue.
 * As this issue you reported here has to do with a premium add-on for Give, we 
   can not provide support for it here. The forum rules require that we do not give
   support for premium add-ons here.
 * I would suggest trying the support form again, maybe from a different browser
   to see if that helps.
 * We will be happy to help you out via email.
 * Thanks so much!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GiveWP - Donation Plugin and Fundraising Platform] Error on Stripe payment](https://wordpress.org/support/topic/error-on-stripe-payment/)
 *  [Maruti Mohanty](https://wordpress.org/support/users/marutim/)
 * (@marutim)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/error-on-stripe-payment/#post-10632103)
 * Hi Ido,
 * I am working on your ticket right now at the premium support.
 * You will be hearing from me sooner.
 * I will be closing this ticket as we will continue communicating there.
 * Thanks

Viewing 15 replies - 1 through 15 (of 656 total)

1 [2](https://wordpress.org/support/users/marutim/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/marutim/replies/page/3/?output_format=md)…
[42](https://wordpress.org/support/users/marutim/replies/page/42/?output_format=md)
[43](https://wordpress.org/support/users/marutim/replies/page/43/?output_format=md)
[44](https://wordpress.org/support/users/marutim/replies/page/44/?output_format=md)
[→](https://wordpress.org/support/users/marutim/replies/page/2/?output_format=md)