Eric Daams
Forum Replies Created
-
Hola @ahuertaisla,
¡Lo siento — entiendo solamente un poco español!
¿Es posible que tu comentario fuera sobre este tema?
https://themeforest.net/item/charitable-charity-nonprofit-organization-wordpress-theme/14568386
El tema Charitable es diferente a este plugin — no son lo mismo. El tema fue creado por una compañía diferente.
Ninguno de nuestros plugins en wpcharitable.com está descontinuado. Charitable el plugin no hay plugin para instalar un demo. Por eso pienso que te refieres a el tema. Puedes escribir un comentario sobre el tema en https://themeforest.net/item/charitable-charity-nonprofit-organization-wordpress-theme/reviews/14568386.
Por supuesto, si tu comentario es sobre nuestro plugin, estamos felices de ayudarte. ¿Puedes contactarnos a través de https://www.wpcharitable.com/support/?
Eric
—
Hi @ahuertaisla,
My Spanish is limited, so even though I did my best to respond above in Spanish, I’ll write my English response below in case I said something incorrect or confusing. 🙂
From your review, it sounds like you may be referring to the theme called Charitable:
https://themeforest.net/item/charitable-charity-nonprofit-organization-wordpress-theme/14568386
That theme was created by a different company and is completely separate from Charitable the plugin, which is what you posted your review about.
In your review you mentioned that some plugins were discontinued by their provider. We still support all the extensions for Charitable that we sell on http://www.wpcharitable.com — we haven’t discontinued any. You also referred to a demo installation plugin, which is not something we have.
Based on that, I’m pretty sure your review was probably intended for the theme instead. You can post your review about the theme on https://themeforest.net/item/charitable-charity-nonprofit-organization-wordpress-theme/reviews/14568386.
Of course, if you are referring to Charitable the plugin, we would be more than happy to help you resolve any issues you’ve had. Like I said, I don’t know about any demo installation plugin or discontinued plugins, but if that’s a problem you’re having, could you let us know via our support page on https://www.wpcharitable.com/support/?
Eric
- This reply was modified 6 years ago by Eric Daams.
This looks like a MailPoet bug to me. Posted an issue on Github here: https://github.com/mailpoet/mailpoet/issues/2719
Hi @devv963 and @nithesh123,
To be clear, are you both using Instamojo as your payment gateway? Charitable itself and none of our extensions trigger that particular error, so I’m guessing it may be an issue specifically related to the Instamojo integration.
If that’s the case, could you get in touch with that plugin’s developer?
https://wordpress.org/plugins/integrate-charitable-instamojo/
Cheers,
EricHi Simon,
Sorry for the delay in getting back to you. Where did you have the [charitable_logout] shortcode? I could see it in the sidebar, but I don’t really see how that would cause the menu to throw to the side.
Cheers,
EricHi @shripad1972 — great to see you were able to resolve this! If you need a hand with anything else, the quickest way to hear a response is via our support page:
https://www.wpcharitable.com/support/
Cheers,
EricHi Kevin,
I’m afraid that isn’t something we can help with; it’s not something that can be easily achieved at the moment.
Cheers,
EricHi @sonai,
Sorry for the delay getting back to you — we don’t monitor support requests as actively as ones sent directly via our support form:
https://www.wpcharitable.com/support/
Each of those phrases should definitely be translatable. For example, I just checked in Loco Translate on a test site and “First Name” returns a few phrases when editing the French translation of Charitable:
https://www.dropbox.com/s/ff993utm494ihsd/Screenshot%202019-12-11%2014.37.24.png?dl=0
I got to this by going to Loco Translate > Plugins > Charitable and then editing the French translation.
You might need to Sync the language source file by clicking on the Sync button in the Loco Translate plugin translation editor page.
Cheers,
EricHi @rootstone,
You may be able to do the customizations you want with just CSS. For example, if you’re wanting the suggested amounts to be smaller and a little closer together, you could try something like this:
.charitable-donation-form .donation-amounts .donation-amount { width: 100px; } .charitable-donation-form .donation-amounts .donation-amount { margin-right: 5px !important; } .charitable-donation-form .donation-amounts .custom-donation-amount.donation-amount { width: 150px; }I’m not sure what you mean about the Details/Payment parts being too long to fit on the donation page. Could you send me a link? There isn’t an easy way to shift those to a separate page.
Cheers,
Eric- This reply was modified 6 years, 5 months ago by Eric Daams.
FYI: I have a couple open issues related to UM compatibility at https://github.com/Charitable/Charitable/issues/710 & https://github.com/Charitable/Charitable/issues/711.
Hi @istanbulmmv,
I spotted the issue. The code you want is this:
function wg_customize_donation_form( $fields, Charitable_Donation_Form $form ) { if ( ! has_term( 'groups', 'campaign_category', $form->get_campaign()->ID ) ) { unset( $fields['receivers_email'] ); } return $fields; } add_filter( 'charitable_donation_form_user_fields', 'wg_customize_donation_form', 10, 2 );There were a couple problems with the original one you tried.
is_admin()should not be used as the donation form is processed via AJAX, which is an admin request — so the field remains part of the form at that point.The second issue was that you were using
get_the_ID().get_the_ID()returns the campaign ID in the donation form initially, but once the donation is getting processed, no idea what it would be — I haven’t tested that. Instead, you can use$form->get_campaign()->IDwhich will consistently give you the campaign’s ID.Cheers,
EricHi @istanbulmmv,
That all looks fine. How have you added this code? Did you add it in a custom plugin, or use Code Snippets, or some other way?
Good to hear it worked @istanbulmmv! I was looking at the code thinking it should work perfectly, so good to know I’m not going crazy 🙂
Cheers,
EricHi @janders16,
Sorry for missing your post!
You can remove the donation stats with a bit of code:
https://github.com/Charitable/library/blob/master/campaigns/remove-stats-summary-block.php
See https://www.wpcharitable.com/documentation/3-ways-to-add-code-customizations-to-your-site/ for a guide to adding this kind of code to your site.
Cheers,
Eric