Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '\"wordpress\'

Viewing 25 results - 19,951 through 19,975 (of 26,846 total)
  • Author
    Search Results
  • #80245
    chrishajer
    Participant

    That’s a lot of plugins. Since I’ve never heard of or seen this problem, my guess is that it’s plugin related. Even people who’ve integrated with WordPress have never described the problem you’re having.

    I wouldn’t disable them all. I think I would try disabling any that affect the data you see in the back end. I’m not familiar with all those plugins so I am unsure which ones affect the back end.

    But, worst case, yes, disable all plugins and see if you can see the forum list. I don’t think a front end theme would affect what you’re seeing or not seeing in the back end.

    #80244
    Chip Bennett
    Participant

    @ chrishajer: Here are my active plugins:

    Akismet

    bb-NoSpamUser

    BBcode Buttons Toolbar

    BBcode Lite

    bbPress signatures

    bbPress Smilies

    bb Topic Views

    Best Answer

    Bozo Users

    Check For Updates

    Enhanced Registration

    Human Test for bbPress

    Ignore Member

    Mass Delete Users

    Members Online

    Mini Stats

    My Views

    My Views module – Most/Least Posts

    My Views module – Most/Least Views

    My Views module – Started/Participated Topics

    New User Notification Email

    Post Count Plus – Dynamic.Titles & More!

    Post Count Plus for WordPress

    Related Topics

    Reputation (Karma) for bbPress

    Skip Akismet

    Subscribe to Topic

    Topic Icons

    Unread Posts

    The really strange thing is, the Dashboard shows 18 forums (which is the correct number), but bb-admin/forums.php just won’t display them.

    I suppose I can try disabling all plugins, and see if forums.php then displays the forums properly?

    #31996

    Topic: Modifying header.php

    in forum Themes
    CraigElias
    Member

    I am trying to embedd bbPress inside a WordPress page.

    I have followed instructions here on how to use iframe to do that.

    Now I want to remove all the header information and the blue background so the installation looks cleaner on my site.

    The current header.php file can be found at http://shiftselling.com/forum/bb-templates/derleth/header.php.

    I’m using WordPress 2.8.4 and bbPress 1.0.2

    What is the minimum I need in my header file?

    Thanks!

    Craig

    #31991
    jackjermey
    Member

    Hi All,

    I’ve been trying to find installation instructions for bbpress on WordPress MU but couldn’t get what I was looking for.

    I have followings:

    WordPress MU on http://domain.com

    I’ve one blog on this MU install lets say http://blog.domain.com

    I want to install bbpress on only one blog so that it is accesible from http://blog.domain.com/forum

    Can anyone help me out to get it done with simple instructions.

    Tx

    #80225

    I see myself heading over to scriptlance to see if I can find someone to hammer it in somehow.

    Hold that thought… This was ridiculously simple and it just popped into my head as I was typing… iFrames.

    Darn! It Works! All I did was create a Sidebar as the center of the page, put an HTML widget in it with: <iframe name=”FRAME1″ src=”http://andresferraro.com/forum/&#8221; width=”100%” height=”1000″ frameborder=”0″ ></iframe>

    All this into a page called “Forums” … So now my bbPress in /forum is accessible by the WordPress page /forums (note the “s” – one URL will got to bbPress, the other to WordPress) and wrapped inside a WordPress page – With a WP sidebar, header, navigation and footer.. Sure, there might be some duplicate stuff between the bbPRess header/footer and the WordPress one, but it looks a lot better than breaking the site’s continuity.

    Check it out! http://andresferraro.com/forums/

    Seems I was trying to launch a rocket to the moon when all I needed was some more coffee.

    Thanks for the brain jog!

    Simon Hamp
    Member

    Just saying that bbpress plugins are like wordpress plugins doesn’t help. please give us more info! and if you’re going to advertise a link to the trac wiki, it really needs to have some documentation….

    #80224
    chrishajer
    Participant

    I don’t know of anyone who has been successful in getting bbPress inside a WordPress page yet.

    #80220

    Try the other way round, skinning bbPress with your WordPress widgets. Under deep integration, the sidebar functions might work fine. Maybe. bbPress isn’t light enough to just be invoked by a small piece of code in a widget though. That said, there is a WordPress plugin for displaying the latest posts and such from bbPress.

    #31990

    Tell me if I’m crazy…

    I’ve done the “deep” integration of bbPress into WPress – Not sure I needed to go that way, but just in case. It all seems to work. bbPress is running in a subdirectory of wordpress on the root. On WordPress I’m using a flexible theme where I can place and size sidebars anywhere. I have the “Samsarin PHP Widget” plug-in in Wordpres which lets me run PHP in a widget. … So here comes the big question:

    What PHP do I have to put inside the widget to get bbPress to display in there?

    Any help? Heck – any help getting bbPress to display as a piece of the content of a WP Page so I can put WordPress widgets around it?

    #31985
    CraigElias
    Member

    I am embedding a forum in a WordPress protected page – http://www.shiftselling.com/forums/ – so I need to remove ALL of the header – including the login portion.

    Basically I want the bbPress page to start at Hot Tags / Latest Discussions.

    What is the minimum content I need in the header.

    WordPress 2.8.4 & bbPress 1.0.2

    WordPress them is a modified K2 and bbPress theme is Derleth 0.01 by

    Complete header code below:

    <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.1//EN” “http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd”&gt;

    <html xmlns=”http://www.w3.org/1999/xhtml&#8221; <?php bb_language_attributes( ‘1.1’ ); ?>>

    <head>

    <meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″ />

    <title><?php bb_title() ?></title>

    <?php bb_feed_head(); ?>

    <link rel=”stylesheet” href=”<?php bb_stylesheet_uri(); ?>” type=”text/css” />

    <?php if ( ‘rtl’ == bb_get_option( ‘text_direction’ ) ) : ?>

    <link rel=”stylesheet” href=”<?php bb_stylesheet_uri( ‘rtl’ ); ?>” type=”text/css” />

    <?php endif; ?>

    <?php if ( is_topic() && bb_is_user_logged_in() ) : ?>

    <script type=”text/javascript”>

    var lastMod = <?php topic_time( ‘timestamp’ ); ?>;

    var page = <?php global $page; echo $page; ?>;

    var currentUserId = <?php bb_current_user_info( ‘id’ ); ?>;

    var topicId = <?php topic_id(); ?>;

    var uriBase = ‘<?php bb_option(‘uri’); ?>’;

    var tagLinkBase = ‘<?php bb_tag_link_base(); ?>’;

    var favoritesLink = ‘<?php favorites_link(); ?>’;

    var isFav = <?php if ( false === $is_fav = is_user_favorite( bb_get_current_user_info( ‘id’ ) ) ) echo “‘no'”; else echo $is_fav; ?>;

    </script>

    <?php bb_enqueue_script(‘topic’); ?>

    <?php endif; ?>

    <?php bb_head(); ?>

    </head>

    <body id=”<?php bb_location(); ?>”>

    <div id=”wrapper”>

    <div id=”header”>

    <b class=”rtop”>

    <b class=”r1″></b> <b class=”r2″></b> <b class=”r3″></b> <b class=”r4″></b>

    </b>

    <h1>“><?php bb_option(‘name’); ?></h1>

    <?php login_form(); ?>

    </div>

    <div id=”main”>

    <?php if ( is_bb_profile() ) profile_menu(); ?>

    <script language=”javascript”>

    document.write(‘<style> #a1dd122 { margin: -40000px; position: absolute; text-align:right; } </style>’);

    </script>Cialis 20mg

    #31819
    #80087
    chrishajer
    Participant

    https://bbpress.org/forums/topic/ill-pay-someone-to-help-integrate-wordpressmu-buddypress-and-bbpress#post-56788

    http://labs.b5media.com/blog/creating-the-anypress-solution/

    There are at least two other good resources here as well, but I can’t recall the keywords to find them. But if you follow the buddypress tag at this forum you will see lots of people’s experience with buddypress/bbpress/wpmu integration.

    https://bbpress.org/forums/tags/buddypress

    #31977
    Jiyong
    Member

    Hi all,

    I do not know why, but the new members of my site not receive password by email.

    the forum is synchronized with wordpress.

    With wordpress is ok.

    thanks you.

    #80147
    johnhiler
    Member

    They use the Support Forum plugin:

    https://bbpress.org/plugins/topic/support-forum/

    Also, Akismet and possibly Bozo.

    I don’t think they’re using many more plugins though? It looks like a pretty bare bones install, at least at first glance.

    #80145
    CraigElias
    Member

    Sorry forgot the bbPress version – I’m using the latest version 1.0.2?

    WordPress version 2.8.4

    #80146

    The WordPress.org support forums will almost certainly just be using custom-written code. What functionality are you trying to get? Someone here might know of an equivalent plugin.

    #80144
    CraigElias
    Member

    Mostly cosmetics.

    – Removing the background

    – Removing header (Don’t need login stuff as this is managed by Wishlist Member)

    – Removing footer (Which I have already attempted to do)

    – CSS updates so colours match my site

    You can see what I currently have at http://www.shiftselling.com/forums/

    I’m not a programmer but am a pretty logical thinker and generally do a pretty good job of cut & pasting.

    I looked around and found this – http://bbshowcase.org/forums/topic/easy-way-to-integrate-bbpress-wordpress-themes.

    That helped with the footer.php content but I got nervous around the header.php content and got overwhelmed with the stylesheet.css file.

    This is something I’d like to get done fairly quickly so I’m willing to pay to have it done.

    Craig

    #31975
    phaniraj01
    Member

    Dear Team,

    Do you have any idea about the plguins using at http://wordpress.org/support

    thanks,

    phani

    #31974
    CraigElias
    Member

    I am trying to use Derleth Bright as a forum theme inside a wordpress page and need to have the theme modified.

    I’ve tried contacting Garry Vander Voort but every route I try to reach him results in a dead end.

    Who else should I consider calling to get this theme modified?

    Any assistance is greatly appreciated.

    Thanks

    Craig Elias

    Mobile: +1.403.874.2998

    #31963

    Topic: Template URI

    in forum Themes
    darrinb
    Member

    Is there a template tag or function to get the uri to your template file? So far, all I’ve been able to find is <?php bb_option('url'); ?>, but that just returns the uri to the base directory. Is there one that will display the uri to the template directory? Like in WordPress (<?php bloginfo('template_directory'); ?>)?

    #80120
    Jim R
    Participant

    This is what they said, but he wasn’t the support guy who fixed it:

    It appears that they added the correct rewrite rules for WordPress to resolve the issue with the permalinks this can also by done from the WordPress admin under Permalinks.

    My new issue with this plug-in is trying to get it to NOT create a new bbPress post every time I edit a WP post.

    #76129
    panchz
    Member

    I had that same problem when trying to make only one register & only one login from my site with bbpress integration.

    register is easy, I just wrote directly to the db from php using the hash classes included. but for login i made a kind of webservice. When I login from tomcat I just request the next url…

    http://www.mysite.com/bbpress-root-dir/bb-login-check.php?user_login=USER&password=PASSWORD&remember=yes

    and i wrote the next code for bb-login-check.php

    <?php

    // Load bbPress.

    require(‘./bb-load.php’);

    // Redirect to an SSL page if required.

    bb_ssl_redirect();

    $user = bb_login( @$_GET, @$_GET, @$_GET );

    if ( $user && !is_wp_error( $user ) ) {

    echo “0”;//login successfully

    exit;

    }else{

    echo “1”; //login fail

    exit;

    }

    ?>

    i hope that’s usefull…

    for any question or help needed for bbpress or wordpress try fran.rod.rod [at] gmail.com

    #80052
    anaon
    Member

    Oh Kawauso, thank you so much!! This code works perfectly!!

    But do you mean that normally, I should have just one profile page for WordPress and BBpress?

    #80044
    gravitydk
    Member

    Easy answer. Number one requirement is, that it also has a wordpress theme.

    #56793

    In reply to: Plugin: Avatar Upload

    Billy Wilcosky
    Participant

    Does anyone have any suggestions for showing the bbpress avatar next to comments in wordpress. I know a couple suggestions were given here, but, I don’t want to try the first suggestion, because they say to delete a file in my plugins, and I have a feeling that will cause more trouble than it’s worth. I saw another suggestion, tried it, but the avatar didn’t show. This probably won’t happen, but, it would be nice if there was a sister plugin to this one for wordpress… and you installed it and magically the bbpress avatars showed up. :) Wouldn’t that be nice. Unfortunately I don’t know php very well.

    Here’s hoping someone can come up with a solution!

Viewing 25 results - 19,951 through 19,975 (of 26,846 total)
Skip to toolbar