Search Results for '"wordpress'
-
Search Results
-
I want to add support for bbPress to SI CAPTCHA Anti-Spam plugin.
http://wordpress.org/extend/plugins/si-captcha-for-wordpress/
I cannot find the needed do_action hooks.
/bbp-themes/bbp-twentyten/bbpress
I started looking in these templates, they do not have the action hooks that would let me add a CAPTCHA:
form-topic.php
form-anonymous.php
Mike Challis
Topic: Cannot Edit Users
I’ve just installed bbPress and integrated with WordPress. All was well until I renamed the file folder to “forums” from “bbPress”. Everything is working perfectly except I cannot edit user profiles! They can register and all else seems to work on the site and the Admin, just no editing the user profile pages (either from the forum or from admin).
When I attempt to edit user profile it switched to my WordPress and gives me a “Error 404: Page Not Found”.
Here is a sample URL: “http://jernigan.co/forums/profile/admin”
Topic: Cannot Edit Users
I’ve just installed bbPress and depply integrated with WordPress. All was well until I renamed the file folder to “forums” from “bbPress”. Everything is working perfectly except I cannot edit user profiles! They can register and all else seems to work on the site and the Admin, just no editing the user profile pages (either from the forum or from admin).
When I attempt to edit user profile it switched to my WordPress and gives me a “Error 404: Page Not Found”.
Here is a sample URL: “http://jernigan.co/forums/profile/admin”
Hi,
I’ve been searching for some hours now but I guess I don’t find the answer because it must be an easy answer

I’ve successfully integrated BP 1.03 in my WO 3.1 and everything works fine so far.
But the forum looks like it’s another site, I mean it’s basicaly due to the template.
My wish is to have my BBPRESS installed into a WP Page (such as simple:press plugin for example) or just like it is on this very bbpress.org website !
Any clue about how to do it ?
Thanks for your help
How can I add a plugin to this site?
I am already a WordPress plugin developer. My WordPress plugins have over 2 million downloads. I made a CAPTCHA plugin for bbPress, I would like to add it. Thanks for any help.
I am logged on, went to this page:
http://bbpress.org/plugins/forum/requests
I clicked on the big button “Add your plugin”
There is no form, just this message:
Add Your Plugin
You can add the plugin you’ve written to the plugin directory by filling out the form below.
This form is only for plugin developers. If you’d like to see a plugin listed here, please contact that plugin’s author.
I’ve seen a few topics addressing this issue but none of them could fix it or the post was 4 years old!
I installed wordpress 3.1 in my main directory
I installed BBPress 1.0.3 in a folder in my main directory
– Both use the same database
BBPress worked perfect and I could access the admin dashboard.
I used the bbpress dashboard to integrate WP.
– mapped user roles (Key master – Administrator etc…) then saved.
– filled out the other fields correctly and saved.
Right after i saved it i was booted out of the admin and could not log-in again.
I tried using the bbpress and WP login/password, both did not work.
I compared the keys in both configs and they were correct
I compared the salts from my db to my wp-config and they were correct
I cleared my browser cache and that didn’t work
Since it seems like an internal scripting bug, How do i fix this manually???
Any help is greatly appreciated!
Mahalo in advance!
I just installed the Admin Add User plug-in. When I go to Add User, I get an error message that a file is missing: bb-plugins/admin-add-user.php on line 15. Line 15 is this: require_once( BB_PATH . BB_INC . ‘registration-functions.php’);
I cannot find the registration-functions.php anywhere. What am I missing?? I’m running bbPress 1.0.2. I specifically DO NOT want to integrate users with WordPress users.
Thanks!
Hello, I’ve been struggling 8 hours on this and I would appreciate any help
I’ve researched this high and low but cannot find an answer.
Problem: At STEP 2 of bbpress installer I try to access my wp-admin page for the requested Salts, but lo and behold – I’m locked out of wp-admin! I am shown a blank page.
WordPress and bbpress downloads share the same mysql database. bbpress is on same level as wp-admin — eg. mysite.com/forums. (see: https://picasaweb.google.com/andrews.bda/DirectoryBbpress# )
Why would my wp-admin lock me out during the bbpress installation?
Thanks in advance for any help!
~BDA
WP 3.1
bbpress 1.0.3
dreamhost
(((As an aside, maybe this has bearing on my problem….I did not have any auth or salt keys located within my wp-config.php file after dreamhost one click install. I had to manually copy and paste from wp-configsample.php!)))))
I just created a cool video of bbPress commits since 2005 – bbPress Visual Roadmap
Inspired by the WordPress Visual Roadmap
Hello,
This simple use-case is not documented anywhere … how can I add a vanilla simple forum to my wordpress hosted blog web site?
TIA,
Best regards,
Giovanni
How can i add a custom page on wordpress theme with bbPress? Is there any function to call?
example link: http://img34.imageshack.us/img34/9774/bbpress.png
<?php
/*
Template Name: Forum
*/
/**
* @package WordPress
* @subpackage Default_Theme
*/
get_header(); ?>
—->>> What to put here to show my bbPress forum?
<?php get_footer(); ?>
I recently started using this WordPress PHP implementation of the Markdown http://michelf.com/projects/php-markdown/
Right now it only supports Posts and Comments. Topics and Replies don’t get aprsed.
This comes from markdown.php:
# Post content and excerpts
# - Remove WordPress paragraph generator.
# - Run Markdown on excerpt, then remove all tags.
# - Add paragraph tag around the excerpt, but remove it for the excerpt rss.
if (MARKDOWN_WP_POSTS) {
remove_filter('the_content', 'wpautop');
remove_filter('the_content_rss', 'wpautop');
remove_filter('the_excerpt', 'wpautop');
add_filter('the_content', 'Markdown', 6);
add_filter('the_content_rss', 'Markdown', 6);
add_filter('get_the_excerpt', 'Markdown', 6);
add_filter('get_the_excerpt', 'trim', 7);
add_filter('the_excerpt', 'mdwp_add_p');
add_filter('the_excerpt_rss', 'mdwp_strip_p');
remove_filter('content_save_pre', 'balanceTags', 50);
remove_filter('excerpt_save_pre', 'balanceTags', 50);
add_filter('the_content', 'balanceTags', 50);
add_filter('get_the_excerpt', 'balanceTags', 9);
}How to modify the line above to be effective for Topics and Replies?
Hello,
Is there anyway that i add a link to my navigation bar with bbPress that’s opening in the same page like wordpress with sidebars and all other things around.
Example link:
I would like to know how to start a custom bbPress loop to display the recent 5 posts of a certain forum (say Forum Test 1).
In WordPress I create custom loops like this:
`<?php $custom_posts = new WP_Query(); ?>
<?php $custom_posts->query(‘post_type=bbp_topic&posts_per_page=5’); ?>
<?php while ($custom_posts->have_posts()) : $custom_posts->the_post(); ?>
<div class=”block-2 border-top”>
<h2><a href=”<?php the_permalink(); ?>” title=”<?php printf( esc_attr__( ‘Permalink to %s’, ‘twentyten’ ), the_title_attribute( ‘echo=0’ ) ); ?>” rel=”bookmark”><?php the_title(); ?></a></h2>
<?php the_excerpt(); ?>
<p><?php comments_number(‘0 Replies’,’1 Reply’,’% Replies’); ?>.</p>
</div>
<?php endwhile; ?>`
How to do what I mentioned above in bbPress 1.1?
