Search Results for 'bbpress'
-
Search Results
-
I’ve got a custom theme I made, it might not be coded properly since bbpress seems to work fine on twentyfifteen.
Anyway, I use a custom page with the shortcode [bbp-forum-index] inside and the page as a custom model. When I go to my page the forum shows, but when I try for instance to go inside a topic, it doesn’t work and instead of taking me where it should, the shortcode is shown.
As I said I made my own theme and it’s kinda hardcoded, if someone could help me making the modifications I have to make in order to make the forum work, it would be much appreciated.
Thanks.
This is our BBPress Forum
http://www.geekgirlpenpals.com/forums/
I wonder if instead of just text of the Forum name and “Freshness” we can also have it show what the last topic was, when it was posted, and who commented on it? I thought that was the default but it seems to have changed.
Topic: every second row
How can I have two colors on the rows like here on bbpress so not all rows are white, but every second is white and blue or whatever color I choose.
Thanks
WordPress 4.1.1
Buddypress Version 2.2.1
bbpress Version 2.5.4the author under the Freshness column isn’t displaying the author of the most recent reply/activity.
any guidance or other tickets like this?
Topic: How would I accomplish this?
Hello Everyone
WP Version: 4.1.1
BBP Version: 2.5.4
Theme: Enigma Pro
Site Link: http://forgingfriendships.com/communityI have bbpress setup and forums made with descriptions. And here is what I would like to do visually with main forum page if possible.
If you check out the forum area on my site. I would like to take only the ‘Friends in the USA’ and ‘Friends around the World’ category areas and on the forums listed under them I would like to display them without descriptions and show them in a list format. The list format would be something like rows of 10 set side-by-side. Basically trying to reduce the footprint of the forums in how much you have to scroll the main forum page to see everything.
I don’t want to remove the descriptions completely because I want them available to the user if they click on the forum and they open up the new page. And I only want to remove these specific forum descriptions from these two category areas and leave all the other sections and descriptions the way they are now.
Is this possible?
Thanks for any help on this.
D1
Topic: Forum Not Styling
http://www.battle-bridge.co.uk/forums/
I just installed the plugin and created the forums but it doesn’t appear to be styling. I’ve checked in the coding and it doesn’t look like it’s reading the bbpress css sheets. This is the second custom theme I’ve used BBPress on and my first site didn’t have the same issue. I don’t believe I’ve done anything different this time around.
Any advice?
Hi,
I am using a WordPress child theme, Flatsome. I simply want to adjust minor things like button text sizes, different colored bars, text, etc.In Google Chrome, I am able to inspect a element and change it’s style in the inspector window, but where do I paste the modified css code? The modified code does not work in the child theme’s Appearance/Edit window when it is pasted there.
I also tried to copy (not move) the bbpress.css file into the Parent theme’s css folder, but the code still does not work. I also tried to place the bbpress.css in the Child theme.
My questions are:
1. Where do I place the bbpress.css file? In the Parent theme or Child Theme? What folder?
2. Where do I paste the modified css code within the BBpress.css file? Anywhere?Below is code that I adjusted to suit my needs. It is code for a “submit” button on the Forum page of BBpress in my theme:
.userwall_delete_post >button:hover, input[type=”submit”], input[type=”button”], input[type=”reset”] {
-webkit-border-radius: 0px 0px 0px 7px;
-moz-border-radius: 0px 0px 0px 7px;
border-radius: 3px 3px 3px 3px !important;
font-family: Arial;
font-size: 12px !important;
padding: 10px !important;
text-decoration: none;
}Thanks for any help!
Best,
JohnSomeday, somebody is going to get this 2x retina thing figured out so that it’s automatic across WordPress. Until that day, we have to do it ourselves.
The general approach is to serve a double-sized image to the browser. So, if you want an 80px avatar in your topic replies (the standard size), you need to serve up a 160px avatar in order for it to look sharp on a retina screen (i.e. iPad, Android tablet, retina MacBook Pro, or one of those delicious new 5K iMacs). And as Joe Jackson says, “You gotta look sharp!”
So, how is this accomplished? Well, in the template.php file of bbPress, there is a function called bbp_get_reply_author_link(). This is the function that gets the avatar, and it comes with the following arguments:
function bbp_get_reply_author_link( $args = '' ) { // Parse arguments against default values $r = bbp_parse_args( $args, array( 'post_id' => 0, 'link_title' => '', 'type' => 'both', 'size' => 80, 'sep' => ' ', 'show_role' => false ), 'get_reply_author_link' );The argument we want to change is the ‘size’ argument. As you see, the default setting is 80. We want it to be 160. We can change it by changing a single line in the loop-single-reply.php file, which you can locate in wp-content/plugins/bbpress/templates/default/bbpress/. In the stock theme, the line reads:
<?php bbp_reply_author_link( array( 'sep' => '<br />', 'show_role' => true ) ); ?>We want to change it to:
<?php bbp_reply_author_link( array( 'size' => 160, 'sep' => '<br />', 'show_role' => true ) ); ?>And that’s all there is to it. As long as your CSS specifies a width of 80 (or whatever you prefer), you won’t see any change in the size of the avatar in your browser, it will just look sharper on retina screens. You won’t notice any difference on standard resolution screens and, unfortunately, there is a price to be paid in the size of the image that is served to those screens. Ideally, WordPress/bbPress would know what resolution screen it is serving to and set the image size on the fly. There are some plugins that do this for site images — Jordy Meow’s WP Retina 2x is a good one — but they don’t work for avatars yet. See this support topic for more discussion.
There’s just one more thing you’ll want to do. If you haven’t already done so, create a directory in your theme folder titled “bbpress”. Then make a copy of the file you just changed and place it in this directory. This file will override any file with the same name in the bbPress plugin directory. So, when you next update the bbPress plugin, you’ll retain the functionality you just created, because even though the plugin files are all replaced by the new version, the file in your theme directory will still be there.
I hope this helps everyone look sharp!
