Forum Replies Created
-
@presspressperson I was looking at what could happen if you removed what I see as useful parts of the url, of course people will disagree though, it is natural.
In reply to: bbPress.org Updated to 2.1Nice, I like it! Especially the CSS buttons. Currently updating one of my forums to 2.1 – looking good.
In reply to: bbpress with widget logicIf you are checking that you are on the current page should it be
is_page('126')
and not
!is_page('126')
Or am I not getting what is going on?
In reply to: Creating default object from empty valueTry adding in:
add_theme_support( 'bbpress' );
into your theme functions file.Good luck!
In reply to: Need a quick fix for my forumI can’t see it, it is asking me to login
You are going to need to customize your theme, good luck!
In reply to: Creating default object from empty valueIt looks like bbPress is checking if the current theme is compatible with bbPress.
On line 357 of your twenty ten them does it have:
add_theme_support( 'bbpress' );
by any chance?Good luck!
In reply to: Everything gives Error 404 after installing bbpress?I recommend going to settings > permalinks, changing your permalinks and then changing them back.
Give that a try.
In reply to: Export Only ForumsOh right ok, just wondering, why do you need to seperate them? You can query their post_type if you need to just work with replies or topics.
Boom indeed!
In reply to: Export Only ForumsAre your topics and replies mixed into your wordpress posts?
What version of bbPress are you using?
In reply to: Making bbpress 2.1 work with my custom themeThis could be of help: https://codex.bbpress.org/home/step-by-step-guide-to-creating-a-custom-bbpress-theme/
What if you had a tiered forum for example…
General Chat
— Chat
— Forum Post One
— Forum Post Two
– Forum Post One
– Forum Post Two
So you have posts inside the main category, general chat.
Posts inside the section category, chat.
Now what if someone made a post called “Chat” inside General chat.
You would then have duplicate URLs if you removed the topic or forum word in front of them.
To keep them in just makes sure it is safe and you can completely manage your forum without any issues.
Just saying I think they are a good thing.
In reply to: Redirect failed login to custom page to login againYou could completely customize the login page with particular wordpress hooks so that it is effectively a login page.
Or you could try a plugin like this: https://wordpress.org/extend/plugins/custom-login/
In reply to: Need help with forum layoutGrab a standard bbPress theme like twentyten and then drop the CSS at the end of your style sheet, see what happens, you might have to make some changes.
If you stick it at the end of your style sheet as well you can always just delete the section that you copied in.
Good luck!
In reply to: PAGE TITLE change or hide…In the title tag?
In the h1 tag?
Not sure where you want to change the PAGE TITLE?
In reply to: Hide replies frm non logged users?You will probably need to add a counter to check if it is the first reply, something like this:
<?php i == 0; ?>
<?php foreach ($posts as $bb_post) : $del_class = post_del_class(); ?>
<?php if(i == 0) { ?>
<li id="post-<?php post_id(); ?>"<?php alt_class('post'); ?>>
<?php } else { ?>
<li id="post-<?php post_id(); ?>"<?php alt_class('post', $del_class); ?>>
<?php bb_post_template(); ?>
<?php } ?>
<?php i++; ?>
<?php endforeach; ?>In reply to: Forums and Topics missing on fresh install.If I have any problems this big then the following things I do in this order to try and rectify it is:
– Go to settings > and re-save your permalinks
– Switch to a default theme and make sure your theme is compatible
– Disable plugins one by one to check you don’t have a conflict.
Good luck!
In reply to: Still can't hide tags input (twentyten)Did you try just doing
#bbp_topic_tags { display: none; }
?Check it in firebug (which I highly recommend using) and add further elements in front of it to make sure it isn’t hiding something else for example…
#bbp_topic_tags { display: none; }
Check it is still hidden
p #bbp_topic_tags { display: none; }
Check it is still hidden
.divelement p #bbp_topic_tags { display: none; }
Check it is still hidden
Best way to do it if your not confident with CSS, just check each stage and if it stops being hidden, then you have specified an incorrect element in your CSS.
Good luck!
In reply to: Default Template not working for forum pageI think I saw a similar problem to this on the forums recently.
A page called “Forums” and having your base slug as “Forums” will conflict with each other. If you visit yoursite.com/forums and your forum base slug is set to /forums it takes you to the archive and not the page.
Check out the post and see if it helps, be warned I didn’t read it 100% through
Good luck!
In reply to: login form's remember me checkboxYou could use jQuery…
jQuery(".bbp-login-form #rememberme").attr('checked','checked');
jQuery(".bbp-login-form #rememberme").hide();Good luck!
(Also check that jQuery, I don’t know if it is going to work perfectly lol).
In reply to: Loving BBPress – Been Playing Around…I added it onto the top of loop-forums I believe, which then gets used whenever you have forums on the site.
Super easy!
In reply to: Topics all open as a 404 pageHappens every so often.
Good to see you got it fixed.
In reply to: SideBar is not on the sideYou have some span tags which are your sidebar, they are outside the container HTML.
The sidebar also does not float:right next to the content.
Which theme are you using? The page is not getting marked up correctly is what it looks like to me.
Good luck!
In reply to: Help with themeI could get quite involved in the CSS but it is probably better if you look up some good practices for changing CSS as you will probably enjoy it but also need it in the future.
I highly recommend firebug as Internet Explorer developer tools are fairly weak compared to Google Chrome Inspect or FireBug.
I can’t see any issues with alignment this end.