Solved -> Issue with login from WP side (Ultimate Member plugin)

User avatar
axew3
w3all User
w3all User
Posts: 2689
Joined: Fri Jan 22, 2016 5:15 pm
Location: Italy
Contact:

Re: Solved -> Issue with login from WP side (Ultimate Member plugin)

Post by axew3 »

Yes i see, the problem has come out due to a little addition into file addons/ext_plugin_fixes.php, that is in wrong place, you can remove it securely.
on the very bottom of the file ext_plugin_fixes.php you'll find:

Code: Select all

 add_action( 'init', 'wp_w3all_detect_login', 1 );
 unset($w3all_uap);
just remove:

Code: Select all

unset($w3all_uap);
so you'll have only:

Code: Select all

add_action( 'init', 'wp_w3all_detect_login', 1 );
save.
The online addons/ext_plugin_fixes.php on 1.5.7 will be updated in few minutes about this.

P.s NOTE To remember: i note/i see after, before to deactivate it on my test localhost, that if Ultimate member is active,
it REWRITE wp_w3all avatars on widget last post.
And If a profile photo is so set for user in ultimate member, it is used as avatar, and the phpBB avatar on last topics is replaced by UM plugin photo.
If no photo for user is set in UM, than default UM anon mystery icon is displayed into last topics widget.
That is maybe normal expected behavior.
It may also can be forced to display phpBB avatar instead, changing the action precedence about avatar on wp_w3all code.
Taouche
User w
User w
Posts: 17
Joined: Thu Jun 02, 2016 11:38 am

Re: Solved -> Issue with login from WP side (Ultimate Member plugin)

Post by Taouche »

Hi axew3,

file modified and works good.

Thanks for your perfect support 8-)

About the profil picture, what I remember is between Ultimate Member and phpbb profile's pictures are not linked.

User need to add a profile picture in phpbb even if he have one on Ultimate Member
User avatar
axew3
w3all User
w3all User
Posts: 2689
Joined: Fri Jan 22, 2016 5:15 pm
Location: Italy
Contact:

Re: Solved -> Issue with login from WP side (Ultimate Member plugin)

Post by axew3 »

User need to add a profile picture in phpbb even if he have one on Ultimate Member
because if not, nothing display on wp?
The user i've test had also avatar in phpBB in effect.
In theory for what the code do and i remember, the default WP avatar should display if there is not one on phpBB for the user. So if the default wp avatar is replaced by UM when it is installed, this will be displayed on last topics and as avatar in wp, as on my test i've see.
But i will test out better as i will put eyes on.
Taouche
User w
User w
Posts: 17
Joined: Thu Jun 02, 2016 11:38 am

Re: Solved -> Issue with login from WP side (Ultimate Member plugin)

Post by Taouche »

To be honest, I did not really look that closely.

I will take a look and keep you informed.

I just need a little support about one thing, I use your plugin in 2 different website. In the first one all works good about the iframe resizing.

But in the second, my forum page doesn't display correctly is shrinked in the footer; when the website turn into mobile size.

I did all the steps about edit overall_footer.html and copy the windown_miin.js in the root folder of phpbb. But always this issue.
Last edited by Taouche on Wed Jan 18, 2017 10:00 am, edited 1 time in total.
User avatar
axew3
w3all User
w3all User
Posts: 2689
Joined: Fri Jan 22, 2016 5:15 pm
Location: Italy
Contact:

Re: Solved -> Issue with login from WP side (Ultimate Member plugin)

Post by axew3 »

yes, normally this should be adjusted by changing a line on page-(forum or whatever).php.
search for:

Code: Select all

// heightCalculationMethod:'bodyScroll', // if page not resize to phpBB template bottom, uncomment this
there are also more methods to adjust if still not work.
uncomment the above:

Code: Select all

 heightCalculationMethod:'bodyScroll', // if page not resize to phpBB template bottom, uncomment this
save and try out.
Taouche
User w
User w
Posts: 17
Joined: Thu Jun 02, 2016 11:38 am

Re: Solved -> Issue with login from WP side (Ultimate Member plugin)

Post by Taouche »

Hi Axew3,

sorry, I just edited my last message, I just found that this issue exist when my website turn on mobile mode display.

I think I will decrease the width size of the mobile mod.
Locked