Search Results for 'code'
-
Search Results
-
Topic: Blank page please help
Hi i just insalled bbpress to test it but i cant figure out whats wrong i just get a blank page
This is what ive dona so far: I installed the plugin–> created a forum–> created a page which i named forum–> entered the shortcode [bbp-forum-index]–> When i go to the front i see the page click it and up comes the forum i created when i then click the forum and i get the blank page…–> in the adressfield it says http://www.kanin.se/forums/forum/theforumicreated and the page i blank.
I have the latest wordpress and bbpress
feeling stupid for not seeing the possibly easy solution.
I have searched this forum and the webb even watched a 30 min video on the setup of bbpress didnt get any smarter.
Thanks for your help!
Hi everyone,
Im new to the worldpress plugin scene coming from a more oop like language like java that uses JavaDoc or Doxygen to describe stuff.
I was wondering how developers writing plugins are finding the hooks/actions/filters they need to solve something. I haven’t found http://codex.bbpress.org/ very helpful because its seems to only document a small collection of functions.
I haven’t found it easy because IDEs don’t tend to detect functional apis with their code completion engines. Is it just a matter of slowly grinding through all the core files trying to memorize all the functions and callbacks? I hope not.
I setup bbpress with a shortcode to display the forums on a page, you can see it here: http://www.clonescriptnews.com/forums/
When you are on that page everything seems to be fine, however if you click on this:
http://www.clonescriptnews.com/forum/forums/general/introductions/
and look at the breadcrumbs, when you try to go back to “forums” by clicking on the breadcrumb Forum link, it’s linked to just “forum” and then it tries to open the forum inside what looks to be a post.
you can view that here (if you click on the breadcrumb forum link, you’ll see this) http://www.clonescriptnews.com/forum/
It seems that no matter what I do in the forum settings area with the forums base and forum slug that keeps happening.
Details
Install: WP 3.5 Â (Multisite) + BBPress 2.2 Bleeding and BuddyPress 1.6.2
Guide used:Â http://codex.buddypress.org/buddypress-site-administration/migrating-from-old-forums-to-bbpress-2/Procedure: We’ve ran the importer to import from BBPress 1 to BBPress 2. The migration wizard went fine and all the forums/topics and replies have been set. We’ve followed the guide and made sure BBPress 2 is set to be used as the BP Group Forums. For some reason this does not happen. We tried using the various Repair Forums tools, but they do not have effect.
So right now we have working BBPress 2 Forums that do not integrate with the existing groups. Any suggestions on how to “remap” BBPress 2 forums to BP Groups?
Thanks in advance!
Hey all,
Since there is no support for “Categories” so to speak.. what i would like to do is create a custom main forum page and insert the forums manually… Now i know this can be done with shortcodes in posts and pages like as follows:
[bbp-single-forum id=32]
But what i am wondering is how would one go about inserting single forums into the BBpress .php template files.. for example the template content-archive-forum.php has the following php code which displays all forums:
I would like to edit this file and insert forums manually.. is there a php version / code like the shortcodes to insert single forums ?
Regards, Darren
Topic: How to change font size?
Hello,
I am using skematiktheme.com wordpress theme, which is also styled for buddypress. I also have the lastest version of buddypress, bbpress, and wordpress installed.
Not sure if I should be asking this in the buddypress forum or not, because most of the changes are related to bbpress forums which are integrated with buddypress.
I want to change the font size. In general I just need to change the font size for the text in the body of posts, but it would be good if I could bump everything up by 4px. How do I change that?
Can someone help me by explaining it in simple step-by-step language?
For example: go here, then type this code here, and then change this, etc….
Thanks,
Beni am using another plugin (codepress admin columns) that calls do_action(‘load-edit.php’) to load all the plugins to get some info – namely custom columns. since and update to both – which, ironically both updated today – i get this error:
Fatal error: Call to undefined method stdClass::add_help_tab() in /home/content/…/wp-content/plugins/bbpress/includes/admin/forums.php on line 118
And if I get past that error, it’s the same thing for admin/topics.php and admin/replies.php.
What I have traced it to is this:
private function bail() {
if ( !isset( get_current_screen()->post_type ) || ( $this->post_type != get_current_screen()->post_type ) )
return true;return false;
}For some reason bail() is not bailing. I – the user – am on options-general.php?page=codepress-admin-columns, and yet bail() thinks the current screen’s post type is ‘forum’ (or topic or reply).
I’m thinking this is a naming convention problem? Why else would get_current_screen return as a ‘forum’ post_type when I’m no where near the forum – I’m just loading it to read some data.
Thanks for any info.