Search Results for 'bbpress'
-
Search Results
-
Topic: Help with Layout
http://www.evilsourcegaming.com/forums/
I have tried changing the forums with twenty ten and left it over night. What happens is not every forum changes to that and the side bar becomes moved to the bottom. I wanted to see if I can just make the forums full width to make it more presentable or fully removing the side bar from every page and forum. Thanks for your time and help.
I even added the files from bbpress to the wp-content/themes/bbpress as well. thanks again for your time and help.
How do I override bbp-common-functions.php so that I can safely upgrade bbPress without losing my one change?
Here is the original:
// array of time period chunks $chunks = array( array( 60 * 60 * 24 * 365 , __( 'year', 'bbpress' ), __( 'years', 'bbpress' ) ), array( 60 * 60 * 24 * 30 , __( 'month', 'bbpress' ), __( 'months', 'bbpress' ) ), array( 60 * 60 * 24 * 7, __( 'week', 'bbpress' ), __( 'weeks', 'bbpress' ) ), array( 60 * 60 * 24 , __( 'day', 'bbpress' ), __( 'days', 'bbpress' ) ), array( 60 * 60 , __( 'hour', 'bbpress' ), __( 'hours', 'bbpress' ) ), array( 60 , __( 'minute', 'bbpress' ), __( 'minutes', 'bbpress' ) ), array( 1, __( 'second', 'bbpress' ), __( 'seconds', 'bbpress' ) ) );Here is what I want:
// array of time period chunks $chunks = array( array( 60 * 60 * 24 * 365 , __( 'y', 'bbpress' ), __( 'y', 'bbpress' ) ), array( 60 * 60 * 24 * 30 , __( 'm', 'bbpress' ), __( 'm', 'bbpress' ) ), array( 60 * 60 * 24 * 7, __( 'w', 'bbpress' ), __( 'w', 'bbpress' ) ), array( 60 * 60 * 24 , __( 'd', 'bbpress' ), __( 'd', 'bbpress' ) ), array( 60 * 60 , __( 'h', 'bbpress' ), __( 'h', 'bbpress' ) ), array( 60 , __( 'min', 'bbpress' ), __( 'min', 'bbpress' ) ), array( 1, __( 's', 'bbpress' ), __( 's', 'bbpress' ) ) );I’m trying to make the forums support mobile, and the long words ruin my tables.
I want to be able to upgrade bbPress without losing this change. What can I do?