Search Results for ' . default . '
-
Search Results
-
Wordpress 3.6.1, bbPress 2.4, Buddypress1.8.1 Site is http://www.thedoctorwhoforum.com
I’m using the visual TinyMCE editor on my bbPress Forum pages and also on my normal WordPress blog pages.
Some users have issues with spans and other code being copied in when they paste. I have been able to stop the pasting issue on the blog comments with the following code which added the paste plugin to TinyMCE:
function myformatTinyMCE($in) { $in['plugins'] = 'inlinepopups, paste, wordpress, wplink, wpdialogs'; $in['paste_text_sticky'] = true; $in['paste_text_sticky_default'] = true; return $in; } add_filter('tiny_mce_before_init', 'myformatTinyMCE' );
However, it doesn’t affect TinyMCE on the Forums. They seem to be separate. I instigated the visual editor on the bbPress topics with the following code:
function bbp_enable_visual_editor($in) { $in['tinymce'] = true; return $in; } add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor');
I’ve tried lots of different things, but I can’t seem to affect the bbPress TinyMCE the same way I can the blog TinyMCE.
For example, this didn’t work:
function bbp_enable_visual_editor($in) { $in['tinymce'] = true; $in['plugins'] = 'inlinepopups, paste, wordpress, wplink, wpdialogs, tabfocus'; $in['paste_text_sticky'] = true; $in['paste_text_sticky_default'] = true; return $in; } add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor');
Anybody any ideas how to add paste to the plugins and possibly add paste_text_sticky etc as well? I’m a bit new at this.
Thanks.
The problem is topics tend to be much longer than forum names or general pages on my wordpress site and need to be styled differently than a default .entry-title css. I imagine this could be done with a filter or by altering a core file of bbpress. I don’t know how to create a specific filter for this job though.
If I can’t do that then I’d like to be able to at least not display the topic title on the topic page but I can’t seem to differentiate .entry-title css from any bbpress specific page title attributes and end up just altering all wordpress page titles in the process.
This has been a long standing issue.
The problem here is that, in the user profile favorites page, only topics that are created by the user and marked as favorite shows up. Any topic that is not created by the user and marked as favorite will not show up in user profile page.
Is this by design or is this a bug?
I am using WordPress default theme with only bbPress plugin.
WP 3.6.1
BBP 2.4
(buddypress 1.8.1 if that’s relevant)I am trying to style my loop-single-reply template.
I am working on a copy placed in my wp_theme/bbpress directory…it is a copy of the default.The problem is in the bbp reply DIV (that contains the author div and the content div). I need to get the content function to stop automatically adding “div” tags around the content (I want to use span tags).
I have tried to follow the rabbit trail through the files to figure out where these DIV tags are getting added, and the best I can figure is that there is a filter putting them in there.
I only need the actual content and so I have commented out the filter applied in includes/replies/template.php around line 525, and simple replaced it with
return $content
That worked, but now bbcode is not working. Is there a way to stop this behavior without altering the bbpress plugin files (which will get destroyed during an upgrade)?
My forum is private, but I can set a public test one up if that will help…
Topic: Editing
I have installed bbPress forums into my Genesis/Dynamik Website Builder parent/child theme and it works nicely. However I have some confusion on how to alter the CSS of the bbPress forums.
The general site settings have a black background with white font used. The white font is displaying on the bbPress forum pages, but not the black background.
This will be a question for those who are familiar with Genesis/Dynamik Website Builder.
I have put the following code into the Genesis/Dynamik Custom CSS field but it still displays with the default light background colors in bbPress posts.#bbpress-forums div.odd, #bbpress-forums ul.odd { background-color: #222222; } #bbpress-forums div.even, #bbpress-forums ul.even { background-color: #444444; }
Any assistance would be greatly appreciated.
Thanks,
Jason DavisTopic: bbpress profile page broken
forums/user/test/
is rendering very weirdly:<div class="entry-content" itemprop="text"><p>Profile Topics Started Replies Created Favorites Subscriptions Edit Profile Forum Role: Keymaster Topics Started: 0 Replies Created: 1</p> </div>
which looks obviously incorrect because it’s missing html tags in between things.
I tried putting a die; at the bottom of
templates\default\bbpress\user-profile.php
and the page rendered properly, but all the other profile type pages are still broken. Removing everything from my functions.php doesn’t help either.What could be going back and stripping out the html tags?
I am developing in a Genesis child theme and installed a bbPress Genesis Extend plugin.
Topic: Replies Pagination Issue
Hello, I have a default WordPress install (latest version) with a default bbPress 2.4 install using TwentyTwelve, no files have been modified. The replies pagination does not work, though the pagination for topic listings is.
Does anybody else have this issue? I’m going to take a look at the pagination functions and see if I can come up with a fix
Thanks.
As the title says, is it possible to select a default forum that is set when people create a new topic? The thing is I only have ONE forum and it’s just crazy that people have to choose it before being able to post.
Right now the default choice is (No Forum) and when you click Submit with No Forum posted, you get this: ERROR: Forum ID is missing.
Hope some bright mind comes along and sees this post.
My visitors can post new topics and replies. They don’t have to register. But, by default they can not give tags to their topics or replies. How can I enable visitors to be able to give topic-tags?
In my opinion I think it is strange that there is no option to enable or disable this.
BBPress give the option to enable/disable anonymous posting, so why not embed an option where you can enable/disable tags for anonymous postingI use BBPress 2.4 and WordPress 3.6.1.
mysite.com/forums/users/johnsmith
Where john smith = who ever is currently logged in. Is there a default url, php or otherwise, to link the user back to their BBpress profile? I would imagine mysite.com/forums/users/ should do the trick but it doesn’t and I’ve tried a ton of other things. Does anyone have any idea about this basic functionality?