Search Results for 'bbpress'
-
Search Results
-
Topic: Database – WordPress or New?
Hi,
I’m about to install bbPress.
For the database information in installation step 1, do I put in the WordPress db settings or am I supposed to create a new database and put its details i?
I’m not sure if bbPress integrates into WordPress or if it is a completely stone-alone bb that just happens to be by the same people that brought us WordPress.
Cheers
Topic: Two Websites, One Board?
I’m hoping this is possible, but am doubtful. Hopefully someone can help if it is possible.
I run a small community website. I have a friend that runs a similar but not exactly the same small community website. We were looking to become “sister” websites. What we want to do is have the message boards from both sites be a single board. This part isn’t what I’m worried about. I know it’s as simple as directing a link.
What we are wanting however is to have her WP theme show up as the bbP theme when entered from her domain.. And when entered from my domain, my WP theme to show up as the bbP theme. Does anyone feel this is 1) possible 2) relatively “easy” to accomplish? When I say relatively easy, I mean that I know it will be difficult, but I don’t want to re-write ALL of the bbPress code.
Thanks!
Hi, im a new in forums, and i need your all advice. I have a website and its being redesigned now, (www.iliketattoo.com) and i want to put forum on it. How hard is to do it with BBpress and where do i need to start?
Does any one have examples of their forums so i can see what it looks like?
any information will be appreciated.
thanx
Topic: Install problems
ok so i uploaded fine, set-up fine, did the integration but did NOT set User Roles (BAD IDEA). Now the admin page has been removed because of the install, even un-installed the wordpress plugin. So I can’t fix it, tried to delete the forum folder and re-upload but the install is still there and still works just like it did, broke.
I can’t figure out how to correct the issue or even better a complete uninstall so I can follow the great tutorial here: http://bbpress.org/forums/topic/basic-integration-screencast
I’m guessing it has something to do with the sql tables but I’m lost at this point. pickledpc.com
what is the best way to correct the issue? and how can I ensure a complete reset so that i can do a fresh install?
Topic: jquery superfish problem
So i need some help. I have integrated BBPress with WordPress but the template I’m running only loads the Jquery SuperFish menu when it finds WP 2.8 – i need to alter the code so it also loads when it find BB press 1.0 / 1.0.2
here’s the code
<?php
if ( $wp_version != '2.8')
{
wp_deregister_script('jquery');
wp_enqueue_script('jquery', get_template_directory_uri() . '/js/jquery-1.3.2.min.js', null, '1.3.2', false);
wp_enqueue_script('jquery-ui', get_template_directory_uri() . '/js/jquery-ui-1.7.1.min.js', 'jquery', '1.7.1', false);
} else {
wp_enqueue_script('jquery-ui-tabs', null, array('jquery', 'jquery-ui-core'), null, false);
}
if ( $bb_version != ‘1.0’)
{
wp_deregister_script(‘jquery’);
wp_enqueue_script(‘jquery’, get_template_directory_uri() . ‘/js/jquery-1.3.2.min.js’, null, ‘1.3.2’, false);
wp_enqueue_script(‘jquery-ui’, get_template_directory_uri() . ‘/js/jquery-ui-1.7.1.min.js’, ‘jquery’, ‘1.7.1’, false);
} else {
wp_enqueue_script(‘jquery-ui-tabs’, null, array(‘jquery’, ‘jquery-ui-core’), null, false);
}
wp_enqueue_script(‘jquery-cycle’, get_template_directory_uri() . ‘/js/jquery.cycle.all.min.js’, ‘jquery’, null, false);
wp_enqueue_script(‘jquery-validate’, get_template_directory_uri() . ‘/js/jquery.validate.min.js’, ‘jquery’, null, false);
if ( !function_exists(‘pixopoint_menu’) ) {
wp_enqueue_script(‘hoverintent’, get_template_directory_uri() . ‘/js/superfish/hoverIntent.js’, ‘jquery’, null, false);
wp_enqueue_script(‘superfish’, get_template_directory_uri() . ‘/js/superfish/superfish.js’, ‘jquery’, null, false);
}
if ( is_singular() ) {
wp_enqueue_script(‘comment-reply’);
}
wp_enqueue_script(‘arras-base’, get_template_directory_uri() . ‘/js/base.js’, ‘jquery’, null, false);
wp_head();
arras_head();
if ( !function_exists(‘pixopoint_menu’) ) :
?>
<script type=”text/javascript”>
$(document).ready(function() {
$(‘.sf-menu’).superfish({
delay: 1000, // one second delay on mouseout
animation: {opacity:’show’,height:’show’}, // fade-in and slide-down animation
speed: ‘fast’, // faster animation speed
autoArrows: false, // disable generation of arrow mark-up
dropShadows: false // disable drop shadows
});
});
</script>
<?php endif ?>
Hi all!
I have a problem with BBPress:Syntax Hiliter plugin and simple quotes (‘) or normal quotes (“).
When in my code I have a quote, the plugin (or bbpress?) change it by the hexadecimal code.
For example, if in my code I have a simple quote (‘), appear in the code '.
.
I was reading an issue about it and maybe the functions.bb-formatting.php file have an answer, anyway, I don’t have what I need to edit.
Anyone have any idea?
Thank you