Search Results for '\"wordpress\"'
-
Search Results
-
Topic: need some help
Im using the latest versions of WP and BBpress,
All i have learnt using WP and BBpress is from trial and error and use of support forums and information from other websites.
I gamer at heart and play many mmo’s, i use wordpress for our main site and wanted to include a forum for our members(BBpress). http://enigmas.eu
I have been able to change lay out and look, so it look like main site and i have install an Plugin (bbPress String Swap) to rename roles, but it only change them on the forum and not in the admin selection area and the same goes with Public-Privet-hidden forum.
I would like to be able to change the names with in the admin side, so that my Moderator’s know which role to select when a new member joins
Key master – Guild leaders
Moderator – Officer
Participant – MemberAlso when creating a forum know which one to select
Public – (can stay the same)
Private – Members Zone
Hidden – Officers ZoneAs im talking about the forum titles i would like to remove (private) from the forum breadcrumb i have seen many examples of how to do it and have tried them out, but they don’t seem to work. i don’t know if im doing some thing wrong. so look for a fresh input.
i know that my Moderator(Officers) could get used to knowing which role and forum section to choose from with out changing them. but the Private before the forum tile is a real pain.
any ideas would be great thank you
Hi,
I’ve just installed the bbPress plugin on WordPress 3.8_it_IT, but after i activated it
nothing changes in the menu (the forum item doesn’t appear) and I created the page Forum
as you indicated but it tells that there is no forum installed…
I tried to deactivate and activate again, and unistall and install but nothing…Could you help me?
Thanks in advanceHey there!
We have been doing good amount of work with bbPress lately and have implemented a variety of solutions including setting up paid forums via integration of bbPress with WooCommerce. While doing so, we realized that this set up in particular, needs deep understanding of the plugins so we thought of compiling a detailed tutorial and sharing it with the world.
I am glad to tell you that the tutorial is now out and you can check it out on our website HERE.
Also feel free to comment on this guide and ask us any questions for which we would get back to you soon.
Hi,
I am quite new to WordPress and definitely new to forums. I am trying to export a forum using SMF on one site and importing into bbPress on another site within WordPress. How do I go about doing this?
Thanks.
Topic: Plugin Update 2.5.3
Hi.
I recently updated to version 2.5.3 in my online classroom. I’m using WordPress 3.8.
After my update all content within my forum topics disappeared.
The forums remain. All topics remain. All replies within the topic are gone.Any help would be appreciated.
No, I do not have a backup. I’m new to maintaining a website.Kristin
WordPress 3.8
bbpress 2.5.3
http://organicconservative.net/?topic=oil-pulling-for-clean-teethOn this topic page, when the window is resized to about 464px wide or less, the avatar images (the actual image element, not its div as far as I can tell) are removed and positioned absolutely at the top left part of the page, all in one stack.
What causes this, what is the fix, and do I really need to worry about it since I can’t think of a environment that is 464px wide?
Thanks!
When I’m logged in as admin and trying to make a sticky, it sends me to the login page. Once I log in again and try once more, it does the same thing. I’m using the latest version of both bbpress and wordpress. Any ideas?
First of all, I’m not asking any questions, I’m offering solutions for people who, like me, had these specific problems, are googling for a solutions and can’t find any. Some of you think this is pure amateur stuff, but there are people out there who will spend hours trying different things and this can save them so much time. If you want to delete this topic, I don’t care, I’m here to help…
How to load bbpress.css before your yoursheet.css?
Intro: When WordPress is loading stylesheets, they’ll load all the theme .css files first and then they’ll load plugin css. That way plugin css has higher priority than your css and only way you can override it is with !important. As we all know, that is a bad practice.Also, you can create your own bbpress.css in your theme but that means more files to keep up with (although, that’s the cleanest solution). Here’s another way to do this:
paste this code into functions.php…
if (class_exists('bbPress')) {
add_action( 'wp_print_styles', 'deregister_bbpress_styles', 15 );
function deregister_bbpress_styles() {
wp_deregister_style( 'bbp-default' );
}
wp_enqueue_style( 'bbpress_css', plugins_url().'/bbpress/templates/default/css/bbpress.min.css');
}
So, let’s get into details:
– first, if you have active plugin ‘bbPress’ it will exicute the following code which removes all the .css files from it
– second, it loads bbpress.min.css again, but this time where you want it…
– be sure that you enqeue your stylesheet after this codeNote: there are two problems that might arise from this techique
-if bbPress developers decide to rename, remove or split bbpress.min.css, you’ll have to change the code again
-there’s other .css file named “bbpress-rtl(.min).css”. Well, some cultures (Arabic), read and write from right to left. And what this file aligns everything to the right. bbPress has some system of deciding whether it should load this file or not, but by doing this technique, you’re disabling that system.How can I remove all the breadcrumbs from the templates and set them at the top of the page?
Intro: Many of us are creating our own themes with existing breadcrumbs systems which are in the header. But bbPress has it’s own idea where to display breadcrumbs, and sometimes that’s at the top of the page, sometimes that’s below search form and sometimes it’s below title. Here’s how you can change that quickly.1. If you haven’t, create “bbpress.php” in the root folder of your theme. (You can copy-paste page.php)
2. Add
<div class="truebreadcrumbs"><?php bbp_breadcrumb(); ?></div>
where you wan’t to show your breadcrumbs
3. Add this CSS:
div.bbp-breadcrumb {
display: none; /*this will hide all breadcrumbs*/
}.truebreadcrumbs div.bbp-breadcrumb {
display: block; /*this will display breadcrumbs you've created*/
}
Sure, HTML will still generate all the breadcrumbs and css will hide the unwanted ones, but this is the easiest way to do this without going into templates…



