Dwenaus
Forum Replies Created
-
I got the spanish, and it will be in the next update. nice work!
I’ve fixed the issue with the Email Options not translating. I changed it to Email Notifications and am getting Buddypress to translate it because it’s already part of buddypress. quick fix.Email options not showing up is not a translation issue – this happens with english also. It is a bug with WP 1.2.6! make these simple change to the core bp files to fix the issue: https://trac.buddypress.org/changeset/3374
This is now fixed – I should have tested this before the last update. Sorry about that. PLease email me all translation files so I can include them. I’ll look into the Email Options bug. I believe that is set before translation occurs.
awe shucks ??
hey, why not rate the plugin at www.ads-software.com
https://www.ads-software.com/extend/plugins/buddypress-group-email-subscription/ or consider a donation ??in a few minutes version 2.7.7 will be available so try it then. @stefrusso
please email me your italian version to [email protected] so I can include it in the next release. In versino 2.7.6 i made an error implementing the above code and just foolishly replaced the function with the new one, but the arguments are quite different. @stefrusso if you want to test your file go to file bp-activity-subscription.php and one line 41 change load_plugin_textdomain back to load_textdomain. that will work,
or you can try the better fix which is to change that whole function to
function activitysub_textdomain() { load_plugin_textdomain( 'bp-ass', false, dirname( plugin_basename( __FILE__ ) )$mofile ); } add_action( 'init', 'activitysub_textdomain' );
let me know if the second solution works.
it was dead code. so i’ve left your solution in there for future reference if we ever need to do a flexible schedule, but i’ve commented it out. it is now up as versino 2.7.6.
aha! I was looking in the wrong file. that function should not even exist!!! I will either implement your solution in the next update or delete that function altogether. thanks.
yes, but where is ass_digest_frequency set?
@satollo or @gvvaughan would either of you be so kind as to suggest some code to solve this problem. I don’t have the time to fix it now. I think satollo has the right solution in his last post.
this change will be going live with version 2.7.5 of this plugin. thanks @bluebird2
thanks for the post – i’ll fix this!
i did’t really follow your idea of why it didn’t work. But perhaps I need to change the plugin so that the function only gets called when activating the plugin – like the other plugins do. Which plugin should I install to get the bi-monthly to work?
(ps. I’m doing this for free, so any donation would be greatly appreciated (paypal [email protected])OK, i’ve made a change to the code so that I only add the weekly if it does not already exist.
function ass_cron_add_weekly( $schedules ) { if ( !isset( $schedules[ 'weekly' ] ) ) { $schedules['weekly'] = array( 'interval' => 604800, 'display' => __( 'Once Weekly', 'bp-ass' ) ); } return $schedules; } add_filter( 'cron_schedules', 'ass_cron_add_weekly' );
try it and see if it works.
sorry, your question is not understandable, so I can’t help you.