itsmifred
Forum Replies Created
-
Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] Accept/refuse PopUp Bilingue ?One thing : I didn’t find the way to translate cookie banner’s links. Meaning the link to Cookie policy document for instance…
Best regards, Fred
Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] Accept/refuse PopUp Bilingue ?I got it, thank you very much, I found the way to do it with TranslatePress,
works fine !
Forum: Plugins
In reply to: [bbp style pack] Subscription management don’t worksHi Robin ! thank you so much for your kindness and responsiveness !
Forum: Plugins
In reply to: [bbp style pack] Subscription management don’t worksI tried staging and production site too and it is working as well too…
Good night Robin W !
Forum: Plugins
In reply to: [bbp style pack] Subscription management don’t worksthat was not abrupt, I understand… as I said yes it looks to be working and hope not necessary to make the change after next update ??
Forum: Plugins
In reply to: [bbp style pack] Subscription management don’t worksI tried and yes, looks to be working fine. No warning back !
I thanks you deeply and hope you’re going to be able to put these lines in the next update pack…
Please let me know…
- This reply was modified 8 months, 1 week ago by itsmifred.
Forum: Plugins
In reply to: [bbp style pack] Subscription management don’t worksEnglish is not my mother tongue and I’m not able to put all the right nuances into my exchanges. No offense intended, I hope. I’ll give this proposal a try and, in any case, I’d like to thank you again for your work…
Forum: Plugins
In reply to: [bbp style pack] Subscription management don’t worksI understand you are this plugin author and thanks for that !!
May be you could change line 707 of bbp-style-pack/includes/subscriptions_management.php
which is actually :
$allowable_roles = $bsp_style_settings_email[’email_roles’] ;
and put on place :
if (isset($array[’email_roles’])) {
$allowable_roles = $bsp_style_settings_email[’email_roles’] ;
echo $array[’email_roles’];
}
or is that a problem and if so, can you tell me why ?
Best regards Robin W
Forum: Plugins
In reply to: [bbp style pack] Subscription management don’t worksHi again, I just did an update bbp Style Pack to Version 5.8.8 and the f…… warning get back ! As I thought will probably happened… I did the same code modification and it works again but I’d like not to have to do that for each update…
Forum: Plugins
In reply to: [bbp style pack] Subscription management don’t worksHi again Robin,
I guess it is clear we are talking about bbp Style Pack for bbPress and would like to attach a screenshot I did before php code modification but it’s not possible here as far as I know…
Administration page subscriptions, you have to go in you WP admin > Forum > choose one and clic on Subscriptions… otherwise I cannot say anything else… You do not have such warning ? I did…
Forum: Plugins
In reply to: [bbp style pack] Subscription management don’t worksby the way, if you can clarify the following for me, I’d be happy :
Subscribe to a Forum doesn’t make user subscriber to any topic from that Forum ?
what’s the difference between subscribing to a topic and checking the “receive email notifications” box (which is checked by default in my case)?
Forum: Plugins
In reply to: [bbp style pack] Subscription management don’t worksHi Robin, before editing the file subscriptions_management.php
I got this warning : Warning: Undefined array key “email_roles” in?/home/clients/3db470ac3c186374a924a94534df90ab/sites/test-site.com/wp-content/plugins/bbp-style-pack/includes/subscriptions_management.php?on line?707
under each user line when I go to “subscription “
As I said, adding code in Bold “? if (isset($array[’email_roles’])) {
$allowable_roles = $bsp_style_settings_email[’email_roles’] ; ? ?echo $array[’email_roles’]; }
make this warning disappear.
So, I think it”s fixed but I worry about next update which is going probably to erase this add….
(sorry for my poor English)
Forum: Plugins
In reply to: [bbp style pack] Subscription management don’t worksHi again,
may be I found a way to fix it, do you think it’s correct ?
I changed PHP file like this ?:
it was :
function bsp_not_allowed_subscription_emails ($user_id, $user_management= false) { global $bsp_style_settings_email ; $allowable_roles = $bsp_style_settings_email['email_roles'] ; if (!empty ($allowable_roles) && is_array ($allowable_roles)) {
I add isset like this :
function bsp_not_allowed_subscription_emails ($user_id, $user_management= false) { global $bsp_style_settings_email ; ? if (isset($array['email_roles'])) { $allowable_roles = $bsp_style_settings_email['email_roles'] ; ? ?echo $array['email_roles']; } if (!empty ($allowable_roles) && is_array ($allowable_roles)) {
I guess I could have the need to check when bbp Style Pack will be updated ? is there a way to make update keeping this ?