Forum Replies Created
-
In reply to: Last reply link is broken – what to do?
I’m not much technical kind of guy. Can you give me more detailed instructions please?
In reply to: Last reply link is broken – what to do?Yes, I do.
In reply to: Last reply link is broken – what to do?In reply to: Last reply link is broken – what to do?@nesiditsa It doesn’t help.
Any idea why?
@casiepa Do not have test environment. Is this beta stable enough?C’mon, please!
Guys, please, help!
Problem still exists. Every time new reply is added to the topic, link’s URL brokes. Any idea how to fix it permanently?
Ok, I’ve found a solution Tools > Forums > Recalculate every post’s parent topic.
Topic can be closed.
In reply to: Adding username to replyI already use quote plugin. But I need different functionality:
I need a button, which will insert other user’s username to reply field.
Is it possible?In reply to: Increase pagination doesn’t workOh, thanks guys! My mistake.
Yes, it’s a replies pagination. I just changed bbp_topic_pagination to bbp_replies_pagination and it worked out!
Thank you!
In reply to: Adding username to replyCan somebody help me?
In reply to: Adding username to replyI mean when I click on “Reply” link under your post, it should instantly paste
[b]casiepa[b],
into reply field, so I can mention your name in the text.In reply to: add to wordpress comment the link to bb profileI am interested in it too. Please help.
In reply to: How to add user profile link to specific menu?It helped. Thank you very much!
In reply to: How to add user profile link to specific menu?Unfortunately, it didn’t help
In reply to: How to add user profile link to specific menu?Yes, thank you for help, I got the link on top menu. 🙂 The question is not actual anymore. Sorry if I was not clear. If you take a look at my post above, you’ll find:
Now I have profile link in top menu. But how can I make it first item in menu, not last?
So now question is: how to make profile link – first item in top menu? Because now it’s shown as last item.
In reply to: How to add user profile link to specific menu?I didn’t get. It’s same code you gave me above.
Can you please modify following code. This worked out for me before, but it added two links, to primary and to top-menu.
add_filter( 'wp_nav_menu_items', 'my_nav_menu_profile_link' ); function my_nav_menu_profile_link($menu) { if (!is_user_logged_in()) return $menu; else $current_user = wp_get_current_user(); $user=$current_user->user_nicename ; $profilelink = '<li><a href="/forum/profile/' . $user . '">Мой профиль</a></li>'; $menu = $profilelink . $menu; return $menu;
In reply to: How to add user profile link to specific menu?I’ve learned the code of theme locations tab and found the name of my top menu. It was “top-menu”
Now I have profile link in top menu. But how can I make it first item in menu, not last?
In reply to: How to add user profile link to specific menu?Where can I view additional menu arguments of a specific menu?