2019-09-02, 05:57 AM
(This post was last modified: 2019-09-02, 06:01 AM by frostschutz. Edited 3 times in total.)

(2019-09-02, 05:11 AM)makpaolo Wrote: How can I embed the Google SEO User URL link in the welcomeblock_member? At the moment, it will redirect to the default member profile URL, however, not the Google SEO url I want it to be.
usually this problem lies with custom templates that hardcode member.php?$uid instead of using MyBB's own variables
well, in the welcome block it's part of $lang->welcome_back
https://github.com/mybb/mybb/blob/39bcce...l.php#L530
so you can use {$lang->welcome_back} and edit the language string if you want it to look different
https://github.com/mybb/mybb/blob/39bcce...ng.php#L36
if there is no usable variable you have to find a way (custom hook) to make one yourself. you can get the correct URL by calling the get_*_link() functions from inc/functions.php