Search Results for '\"wordpress\'
-
Search Results
-
Topic: Custom Theme
Alright I have my site at pickledpc.com and the forums at pickledpc.com/forums/
I’m trying to apply my wordpress theme to the forums to make it all look the same. I haven’t the slightest idea of where to start. I have tinkered with the style.css but can’t get anywhere. Any pointers? A good place to start?
Thanks
Topic: Basic installation help
I have two noob questions re: the installation instructions here: http://bbpress.org/documentation/installation/
> 2. Upload the uncompressed files to your server
Where on the server? Do I upload the files to /public_html? to /public_html/wp-admin? etc.
I’ve read elsewhere that you should upload the uncompressed *folder* (i.e., “bbpress”) and its files. But the #2 says to upload the files? Which is it? I’ve also read elsewhere that you might want to rename the folder “bbpress” to something like “forum,” because this will determine the URL to your forum. Is that still the case? The author’s instructions don’t mention this, but it seems important.
> 4. Visit the intended URL of the bbPress site
How do I create the intended URL? Do I need to create a new WordPress page and call it something like “Forum”?
I have a fairly robust shared hosting plan which allows me root access, an IP, and plentiful disk space and bandwidth. I want to install several copies of bbPress for different sites on my account and use a single install of Mu/BuddyPress as a social layer connecting the various sites.
Example
mysite.com – Mu/BuddyPress install
site1.com (physically mysite.com/site1) – bbPress install 1
site2.com (physically mysite.com/site2) – bbPress install 2
…
The point is to have a single userbase between the sites, with one account logging you in to the entire “network”. The catch is that the different bbPress installations would have different domains and different administrators.
The question is, how do I go about setting this up? What existing extensions would I need, and/or what extensions would I need to write?
Topic: my admin panel vanished
Hello everyone. I am working on integrating a forum with my WordPress blog, and everything was going fine. Until I finished the install, and started working on the integration settings in the admin panel. In the section where it asks you to input the WordPress database prefix (I think it was to get the proper user tables), I put wp_ which is the prefix for my WordPress blog. Now, it doesn’t matter which account I log in with, I still cannot find the Admin link in the header. I’ve logged in both with my WordPress blog admin account, and my bbPress account. I’ve checked in the mySQL database, and my bbPress account still has the permission to access the admin panel, but I cannot see a link. It simply shows “Welcome, Legacyblade | Log Out”
Normally in these situations, I’d just uninstall and reinstall, but I’m not sure what Word Press tables were modified, and don’t want to mess up my blog. Any help would be greatly appreciated.
Is it possible to install bbPress in the same folder as WordPress or have anyone tried? I have seen alot of people trying to remove the extra /forum url that appears in bbPress. This really seems like the obvious solution and like it’s what it’s coded for initially. I only fear that it’s too easy and straight forward that it won’t work
I recently installed bbpress by extending buddypress 1.1 with wordpress mu 2.8.4. While everything is ok on the buddypress end, the forum does not have a “Add New Topic” link displayed…. I tried adding topics and posts through the database too, but same result!
You can find the link to the forum here – http://smartlearnwebtv.com/iitjee/forums. I’d appreciate any help from you guys.Note: The forum under the “Groups” category seems to work fine – not sure if this has got anything to do with the problem am facing.
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: 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 ?>
hope you understand.