Published on April 30th, 2015 by goldstatusuk
Hello
I have been trying to find out a way to change my forums page title for about 10 hours now. I have created a forums page and added the forum index shortcode. I then added the title on that particular page using seo by yoast.
But it does not change the title.
Its so frustrating
Any help would be much appreciated
website: http://bit.ly/1Q3Zr1f
Published on April 30th, 2015 by ratherthanrunning
Hi –
My client has all his images on Photobucket. I’m building a new forum for him and he wants all his forum users to be able to paste the link from a photo sharing service (such as Photobucket and others) and have the forum topic automatically show the image.
Through researching this site, it looks like Photobucket is no longer supported in WordPress. Is there a workaround? In general, what should advice be for linking to images that are stored elsewhere?
Thanks –
Lara
Published on April 30th, 2015 by jesse09
Hey guys and gals
Hope all is well!
First off, thank you taking the time to help, it’s appreciated.
I’ve started to build a wordpress blog ( Fat Burner Depot ) It’s wordpress 4.2.1, if that helps.
I’ve seen a site where bbpress loads into a standard static wordpress page. Shouldn’t I be able to copy and paste the index code into the body of the page text? Just as long as the paths to the rest of bbpress files are right? Is there a better way to go about this?
Anyone can help me out?
Thank you!!
Published on April 30th, 2015 by nickofnight
Hi! I need to allow private groups to have the ability to set their forum to public so that anyone can post and ask them questions and they can share news etc through the forum.
Even if I set forum to Public that doesn’t help as the the group being private seems to override it.
Could you point me in the right direction to get this to work, as I really would like to be able to do this.
Published on April 30th, 2015 by kruglikov
I have old version 2.2.4 of bbpress installed on our site.
I have to use old version because already for a long time have problem that
if I update the plug-in forums page breaks!
From forums/ page disappears forums list but all subpages like forums and topics are working and I can access them in browser.
Forums page is created with Method 1 here https://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum/#method-1
I spent a whole day trying to find out what’s wrong with newer version but could not find the reason why Forums page disappeared.
Please help!
P.S. I found that forums/ page is registered when forum post type registration happened, but I could not find out where exactly in bbpress code forums page template is plased. Could anyoone at least help me with that?
Published on April 29th, 2015 by jazzedge
I’m not seeing an edit link on forum posts (even though I upped the edit time to 1440)
any ideas?
Published on April 29th, 2015 by marius.tankeu@reparetonpc.com
Hi,
I’m using now bbp_insert_topic but i want to know first if a topic with same title already exists.
Someone have and ansxer for that?
Thanks in advance!
Published on April 29th, 2015 by N3gATiVE
Hello
This is forums main page https://www.jkyog.org/forums/
and this is a sub-forum https://www.jkyog.org/forums/forum/yoga-meditation-2/
In Sub-forums Freshness is: 1 week, 2 days ago and in main forums page it display 4 weeks ago with some other random user..
When users are posting non stop then Freshness is coming correct but if i delete any spam replay, or if we don’t post anything from long time then main forums page Freshness will change itself into some random user and time..
Tried couple of things like:
All plugins disable expect bbpress
Caching disabled
Recalculate everything from Tools
Changed theme to default / All plugins, wordpress version etc updated to recent version
But no success will appreciate if someone can provide solution or hint!
Thanks.
Published on April 29th, 2015 by landshark
I’ve just recently converted to bbPess, my old forum had almost 70 forums.
I would like to consolidate and merge several forums together, is this possible?
I see where I can merge topics but not entire forums.
Published on April 29th, 2015 by CreativeWP
I am working on this website, I added this code (below) to have the profile redirect to our dashboard using WPML. The nav however is out of order, and I do not know how to arrange this nav.
So we have Home | About us | Logout | Profile
The profile is added by the code in the function.php (below), which means it is not arranged by the menu section on the WP. I have a conditional navigation. So when not login, I got Register | Login only. Once I login I have Home | About us |
So the logout and the profile are added by the code below. How do I arrange it that the logout will be at the end?
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_login ;
$profilelink = '<li><a href="' . bp_loggedin_user_domain( '/dashboard' ) . '">' . __('Profile') . '</a></li>';
$menu = $menu . $profilelink;
return $menu;
}
Please and thank you,