Code: Select all
$sql_where .= 'WHERE ' . $db->sql_in_set('LOWER(user_follow_name)', array_unique($matches1[1]));
Code: Select all
$sql_where .= 'WHERE ' . $db->sql_in_set('LOWER(user_follow_name)', array_map('utf8_clean_string', array_unique($matches1[1])));
Code: Select all
$find = array(
'@' . strtolower($row['user_follow_name']),
'@[' . $row['username'] . ']',
'@[' . $row['username_clean'] . ']',
);
Code: Select all
$find = array(
'@' . strtolower($row['user_follow_name']),
'@[' . strtolower($row['username']) . ']',
'@[' . strtolower($row['username_clean']) . ']',
);
Code: Select all
<dt>{L_GENDER}:</dt> <dd>{USER_GENDER_IMG}</dd>
<dt>{L_AL_LIKE_COUNT_TEXT}:</dt> <dd>{LIKES} <!-- IF postrow.LIKES > 1 -->{L_AL_POSTS_TEXT}<!-- ELSE -->{L_AL_POST_TEXT}<!-- ENDIF --></dd>
<dt>{L_AL_LIKED_COUNT_TEXT}:</dt> <dd>{LIKED} <!-- IF postrow.LIKED > 1 -->{L_AL_POSTS_TEXT}<!-- ELSE -->{L_AL_POST_TEXT}<!-- ENDIF --></dd>
Code: Select all
.row-shared, #user-action-list, #fwdialog {
position: absolute;
display: none;
left: 0px !important;
top: 0px !important;
}
Thank you, but I tried this solution and I have a problem with another special character: "µ".canidev wrote:Ok, try this:
[...]
So far I've succcessfully been able to expand the profile by editing follower.php and right_side_body.html.TheDani wrote:Is it possible to add more data to right_side_body.html? I have ajaxlike MOD and genders MOD and tried to add thisbut no like counts and no gender image shows. Seems the template variables doesn't work there. Same with POSTER_TOPICS (number of topics the user has created).Code: Select all
<dt>{L_GENDER}:</dt> <dd>{USER_GENDER_IMG}</dd> <dt>{L_AL_LIKE_COUNT_TEXT}:</dt> <dd>{LIKES} <!-- IF postrow.LIKES > 1 -->{L_AL_POSTS_TEXT}<!-- ELSE -->{L_AL_POST_TEXT}<!-- ENDIF --></dd> <dt>{L_AL_LIKED_COUNT_TEXT}:</dt> <dd>{LIKED} <!-- IF postrow.LIKED > 1 -->{L_AL_POSTS_TEXT}<!-- ELSE -->{L_AL_POST_TEXT}<!-- ENDIF --></dd>
In addition I'd love to add Add/Remove Friend or Foe, Skype (MOD), Groups, Online status, Board style and Signature in user's profile.
Hi Canidev, sorry for the bump, but I hope you can help me with this issue.fifahub wrote:Thank you, but I tried this solution and I have a problem with another special character: "µ".canidev wrote:Ok, try this:
[...]
I'm sorry to ask you help again but, for the moment, this strange user with this very strange name continues to not be able to be tagged.
Thank you so much!
Try with this:fifahub wrote:Hi Canidev, sorry for the bump, but I hope you can help me with this issue.fifahub wrote:Thank you, but I tried this solution and I have a problem with another special character: "µ".canidev wrote:Ok, try this:
[...]
I'm sorry to ask you help again but, for the moment, this strange user with this very strange name continues to not be able to be tagged.
Thank you so much!
This is the username of that user: "MÅNµ-94-µÇH‡HÅ"
Do you have a suggestion of how i can solve this problem?
Thanks for your appreciated help.
Code: Select all
$text = preg_replace('#((?:^|\s)+@)([^<>\s]+)#e', "'\$1' . strtolower('\$2')", $text);
Code: Select all
$text = preg_replace('#((?:^|\s)+@)([^<>\s]+)#e', "'\$1' . utf8_strtolower('\$2')", $text);
Code: Select all
$sql_where .= 'WHERE ' . $db->sql_in_set('LOWER(user_follow_name)', array_map('utf8_clean_string', array_unique($matches1[1])));
Code: Select all
$sql_where .= 'WHERE ' . $db->sql_in_set('LOWER(user_follow_name)', array_unique($matches1[1]));
Code: Select all
$find = array(
'@' . strtolower($row['user_follow_name']),
'@[' . strtolower($row['username']) . ']',
'@[' . strtolower($row['username_clean']) . ']',
);
Code: Select all
$find = array(
'@' . utf8_strtolower($row['user_follow_name']),
'@[' . utf8_strtolower($row['username']) . ']',
'@[' . utf8_strtolower($row['username_clean']) . ']',
);
There are now more people complaining that they are receiving unwanted emails each time a user they follow posts. Does anyone else have issue with receiving unwanted emails ?TheDani wrote:Help.
One of my users that is following me, complains that he is getting a new email every time I post. He has set "When a user that I follow post a message" and "When a user that I follow post an topic" to "no notify". Any other suggestions?
I check this problem in a test forum and this error no appears.TheDani wrote:There are now more people complaining that they are receiving unwanted emails each time a user they follow posts. Does anyone else have issue with receiving unwanted emails ?TheDani wrote:Help.
One of my users that is following me, complains that he is getting a new email every time I post. He has set "When a user that I follow post a message" and "When a user that I follow post an topic" to "no notify". Any other suggestions?
I don't find the problem for the moment but, i try to solve it as soon as possible.TheDani wrote:So far 3 normal/registered users have reported that they receive unwanted emails. I, who is an admin, do not receive any unwanted mails. They have confirmed to me that they have set "No notify" to both "When a user that I follow post an topic" and to "When a user that I follow post a message".
The mails contains the text: "New post Notification - Hi username, You are receiving this because someOtherUser has p..."
I don't know how to turn it off in ACP.
Edit: I did set Notifications allowed in ACP to Only send PM notifications. Think that dirty fix seems to be the solution here, at least temporary.
In a test forum i no find any problem.TheDani wrote:A new little issue: hashtags aren't parsed, meaning they are not linked when you write a hashtag in a post. Any idea about this?