About notification i've take a look to release on this 1.6.0 (update!) but will be added as option on 1.6.1 or 2 .
As option because there is no way to do this into the query that already exist or i've still not see the right way to achieve it into one single.
I will see so better the thing. Like avatar, so, presumably it will be added as option to activate or not.
about
If an user register WP side and set Gravatar, this should be added into phpBB also.
And related gravatar update when he change gravatar into WP (and not only if it is done in phpBB).
it has been added but not as option into wp_w3all config page.
It is on file
class.wp.w3all-phpbb.php
Code: Select all
private static function create_phpBB_user($wpu){
just comment out the two lines of code
Code: Select all
//$uavatar = get_option('show_avatars') == 1 ? $wpu->user_email : '';
//$avatype = (empty($uavatar)) ? '' : 'avatar.driver.gravatar';
like this
Code: Select all
$uavatar = get_option('show_avatars') == 1 ? $wpu->user_email : '';
$avatype = (empty($uavatar)) ? '' : 'avatar.driver.gravatar';
1.6.0 resolve definitively the first login fail when user register first time in WP side, update resizer, and more minor fixes. 1.6.1 is coming soon.
About notification i've take a look to release on this 1.6.0 (update!) but will be added as option on 1.6.1 or 2 .
As option because there is no way to do this into the query that already exist or i've still not see the right way to achieve it into one single.
I will see so better the thing. Like avatar, so, presumably it will be added as option to activate or not.
about [quote]If an user register WP side and set Gravatar, this should be added into phpBB also.
And related gravatar update when he change gravatar into WP (and not only if it is done in phpBB).[/quote]
it has been added but not as option into wp_w3all config page.
It is on file [b]class.wp.w3all-phpbb.php[/b]
[code]private static function create_phpBB_user($wpu){[/code]
just comment out the two lines of code
[code]//$uavatar = get_option('show_avatars') == 1 ? $wpu->user_email : '';
//$avatype = (empty($uavatar)) ? '' : 'avatar.driver.gravatar';[/code]
like this
[code] $uavatar = get_option('show_avatars') == 1 ? $wpu->user_email : '';
$avatype = (empty($uavatar)) ? '' : 'avatar.driver.gravatar';[/code]
1.6.0 resolve definitively the first login fail when user register first time in WP side, update resizer, and more minor fixes. 1.6.1 is coming soon.