Search Results for 'code'
-
Search Results
-
Hello,
Is it possible to limit the number of topics displayed with the [“bbp-topic-index”] shortcode?
Thanks,
IanTopic: Modifying the Template?
I found THIS in the Codex, which almost tells me what I need. But where do I place the new, modified file?
Thanks.
Hi i want to add a button (create new post) which is when click user can able to make a new post…I will do just same like wordpress forum do here is the link( http://wordpress.org/support/forum/installation). I basically add the button that simple work in the same as like wordpress (Add new) button can do..
please guide me how can i do that, tell me the code if any aur where should i add the code.ThanksThe pagination count (count of pages) for my topic archive is wrong.
The page count (and clickable links in the generated page navigation) says 16 pages. But actually only pages from 1 to 13 will work (from 14 to 16 will return 404).Forum archives and individuall discussion (replies) pagination will work fine.
I’ve set to display 15 discussions per page. If I change this number the pagination count might change as well but the error will stay (just the total count will change, but again it adds up a couple of pages that shouldn’t be there). This happens also if I use the shortcode to show up latest discussions (topics).
I tried to reset the counters in forum tools, but didn’t produce a change.
I tried to force the number of queried posts per page (topics per page) via pre_get_posts filter, but doesn’t change the pagination error.
I don’t know how to solve this. I’m using bbp 2.3.2 and wp 3.5.2. Buddypress is also installed. No legacy forums/groups activated.
Topic: Add Forum Topics to Home
Hello,
I am trying to add the logged in user’s forum topics to my BuddyPress site in a custom sidebar. I keep getting this error message:
Fatal error: Call to undefined function bp_has_forum_topics()..when inserting the following:
<?php locate_template( array( 'forums/forums-loop.php' ), true ); ?>How can I easily list the logged in user’s forum posts without relying on the recent topics widget that ships with bbPress?
Thanks
I hope this has a very simple solution.
I need to either stop a BBpress template-tags function from happening, or over-ride it with a new one, but want to do this from a plugin, rather than amending BBpress code.
Is there a line of code that simply stops a function within BBpress, or a quick way to overwrite one using a plugin.
More detail below
I want to revise the
bbp_single_topic_descriptionwhich is currently used incontent-single-topic.phpto show the phrase “This topic contains 2 replies, has 2 voices etc.” below a postThe
bbp_single_topic_descriptionis defined in/includes/topics/template-tags.phpI have written a pluggin that creates a new function, and uses the
bbp_template_before_single_topicaction hook incontent-single-topic.phpto display the new wording .ie
add_action( 'bbp_template_before_single_topic', 'btv_single_topic_description'); function btv_single_topic_description( $args = '' ) { CODING STUFF; }But I need to stop the old wording displaying as well as this.
I have three approaches
1. Just comment out the appropriate line in
content-single-topic.php– simple to do, but of course gets overwritten by new releases
2. Do something in the plugin that stopsbbp_single_topic_descriptionfrom working using code within my plugin – if this is easy, that is what I’d like to do, but as the function doesn’t have an action hook as far as I know, I don’t know how to remove it.
3. Do something to make my function replace/overwrite the bbpress function, so that I don’t have to hook it anywhere?Can anyone help me with either 2 or 3 – I hope it’s an easy answer, but am stumped !
Topic: targeting forum / level
Topic: New Topic Layout Issue
Hi there,
I have recently installed bbPress on our site.
It is a great feature.However,
if you take a look at:
http://cym.org/webmaster/support/forum/front-end-support/You will notice that the area where we can insert a new heading is covered up by the text editor.
I cant find the code to amend the layout for this.
Help!
WordPress version: 3.5.2
bbPress version: 2.3.2
Number of plugins: 1 (bbpress)
Active theme: Twenty-twelve
Environment: Virtual machine built with Vagrant.
Folder rights ?: All good.
Have I fiddled with bbpress source code ?: not yet.I’m having the same issue as multiple topics I’ve seen here.
The Nonce hidden field is in the form (inspected with Chrome dev tools) but I always get the “ERROR: Are you sure you wanted to do that?”

Topic: bbPress and theme don't fit?
Hi:
I have a bad feeling that this is something that gets asked all the time and I just haven’t found the right search terms, but here it goes. Please just direct me to prior threads.
If you visit my forum at: http://www.tnbizguide.com/forums/forum/tnbizguide-talk/
You see that bbPress is being forced to wrap the menu and other items in awkward places instead of displaying everything on one line together that should be on one line?
Is there any way to fix this a non-coder can handle? 🙂
Two Questions:
1. The Edit post button on the bar of the post is throwing a 404 error. It is trying to take me to the following url: http://intranet/index.php/forums/topic/the-cooking-thread/edit/?view=all and there does not seem to be a corresponding page. Is there something during initial setup that I missed to allow for this url to be populated upon post creation? I am still able to edit via the “Topics” area of the dashboard but I would like for this functionality to work for my users.
2. I am trying to override the front-end post editor to be a rich editor. I have tried installing the tinyMCE plugin and replace the built in editor with the html tags via http://codex.bbpress.org/enable-visual-editor/ with the following code:
function tmceeditor( $args = array() ) {
$args[‘teeny’] = false;
return $args;
}
add_filter( ‘bbp_after_get_the_content_parse_args’, ‘tmceeditor’ );but am having no luck. Again, the editor in the dashboard editor seems to be inheriting the tinyMCE functionality but I would like the user front-end to use this editor as well.
Any help would be greatly appreciated.
I am on WP 3.5.2 and bbPress 2.3.2 with a custom theme.