Search Results for 'bbpress'
-
Search Results
-
Hi,
best practices about site speed optimization recommend to load the external javascript on the bottom of an HTML page.
I see that bbPress adds some “inline” JavaScript (for the widget or the editor), and this JavaScript requires jQuery.Since that JavaScript is added in to the head it’s not possible to move the jQuery load on bottom of the page. Could you fix bbPress to add that Javascript on the footer so even jQuery con be load at the bottom of the page?
Thank you, Stefano Lissa.
Topic: Forum Page
I just installed this plugin and I went through these steps
and I can’t get the list of forums to show up on the forum page.
I named the page forum and then I also tried adding the extra code as outlined in step 2 [bbp-forum-index] but neither create a list of the forums that I have created. I have two set up.
http://massagepracticebuilder.com/forums/
This is one of the forums I set up just to test. http://massagepracticebuilder.com/forums/forum/diy-websites/
And why does that have the address forums/forum ??
I just went and followed the directions to set up a forum.
thanks
JulieTopic: Members can't post on forum.
Help! I’ve been at this for hours and am going out of my mind…
I have the latest of everything, bbpress, buddypress and have deactivated all plugins except for buddypress, bbpress, members and akismet. I actually even deleted and reinstalled buddypress, bbpress and members. I deactivated my theme and am using the default buddypress one.
The site is visually a mess: http://www.tafaforum.com/
I am the only one who can post on the forums. Everything was fine until yesterday when several plugins updated, including bbpress. I had also been mucking around with trying to get a tinymce plugin to work for the forums.
If I disable everything and just have bbpress, I can post (as a fake member). Add buddypress, and I get a “You cannot reply to this topic” message at the bottom.
I messed around with roles and have enabled everything possible that could contribute to this, but the one thing that I notice is that the members all have an author role for their wordpress roles (as I want them to post on our blog), and even though they all show participant for their forum roles on the Users Page, when I go into the settings for the roles, I only see the author role as having any users, not the participant one.
Yes, this could be a buddypress or members issue, but bbpress is the one that had the latest update, so I figure that the problem starts here. If not, please send me where I need to go….
I’m running wordpress 3.7.1, using Twenty-twelve, and Bbpress 2.5.1.have my site is http://www.theholisticchatterbox.com If you go to this page and click on any of the “recent Reply” links, it will take you to the first page of the replies. You have to click on the page numbers above to get to the last page. It started doing this after the last update. How can I fix it? I’ve looked in the widget & appearance menus. I’ve removed it and reinstalled it. Please help?
Topic: Forum Search Bar Location
Hi
I’m trying to set my forum so that a non-member can view the list of topics in a forum but when they click on a topic to read it they get a message telling them they must be logged in to view the topic.
This bbPress forum does exactly what I’m trying to achieve.
I can hide the forums entirely using this code, but I want to show a list of topics to non-members but not allow them to view the content of the topic.
Thanks in advance for any help and advice.
Webmaster Tools says robots.txt say no to index, but their is any robots.txt on my server (only -> http://www.xbox-one-erfolge.de/robots.txt)
I don’t know whats the problem of google
Worpdpress Version: 3.5.2
bbPress Version: 2.5Topic: Need someone helpful!
Hey everyone. I’m new to BBPress and I may not be understanding portions of it correctly.
1. If someone registers for my wordpress website and sign in can they automatically start posting to my bbpress forums? (Do they then have a forum membership too?)
2. Currently the registration is as follows: user inputs username and email and then the password is sent to them via email which they have to reset… How can I build a custom registration form for my wordpress/bbpress site and forums that looks more like http://diablo.incgamers.com/forums/register.php where the user can specify their password, agree to terms, etc? (I guess this also depends on if registering for wordpress or bbpress registers for each other as well)
The site I’m building right now is http:/www.thenextarpg.com with the Avada wordpress template.
Any help would be appreciated! Thanks guys
Topic: forum>add new option missing
Hello,
I’m creating a site: http://www.contramare.net/site I’ve installed and activated bbpress.2.5.1, buddy press 1.8.1, I have a weaverII theme with WP 2010 sub-theme (maybe that’s a problem) and a meteor slider plugin on the header. Everything was working fine until I installed bbpress (buddypress seems fine). Two problems: 1) can’t create a forum, no option for it except in the forums page, but it requires a parent forum… which I can’t create, so I’m stuck; 2) meteor slides not working on forums page, but working fine on buddypress pages. I think maybe I can do it with the buddypress only but from what I read here http://codex.buddypress.org/getting-started/installing-group-and-sitewide-forums/ it seems like you have to install bbpress if you want to have any buddypress forums. Is that true? Can you help? If there is coding, can’t do it, unless there’s some step by step guide.Hi there
Using bbPress Version 2.3.2
We’ve got Premise member access module installed. It manages access to posts by adding meta tags to the wp_postmeta table. We then check member access levels against these meta tags to see if the user can access a post.We also use these member access levels to restrict access to our forums. Unfortunately the member access tags are only added to the forum categories and parents, and not to the individual replies and posts.
This means that restricted posts turn up in search results, and have to be excluded by checking the user access level against that of the forum category or parent.
I’ve managed to exclude the posts from the search results, by adding the following lines of code I found in these forums to the loop in loop-search.php just before get_template_part is called:
$parent = array_reverse(get_post_ancestors($post->ID)); // get an array of all the parent pages in order from most distant to closest. $first_parent = get_page($parent[0]); //get the first page in the array, which is the most distant parent $int = apply_filters(‘the_ID’, $first_parent->ID); //filter the $first_parent to get only the wordpress page/post ID, which is an integer like 49 or 565. store it as a variable $int //Skip post if user can't access it. if (!IQS_can_user_access_post($int)) { continue; }This code works, however the pagination results still show for all the excluded posts.
I’ve been trying to figure out how to modify the bbpress()->search_query results but I’m not very good with PHP.
Any advice on how I can exclude posts from a search query or fix my pagination?