Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'forum css'

Viewing 25 results - 2,101 through 2,125 (of 2,719 total)
  • Author
    Search Results
  • #94998
    mralexweber
    Participant

    Okay, I hate to be ‘that guy’ but I’ve gotta ask…

    I created forums through the admin interface, created a page (named “forum”) and set the page template to bbPress index. So far, so good. The page loads and I can see the forums I created.

    However, when I click on one of the forums, for instance, “General Discussion”, I get a 404.

    I’m using the DynamiX theme and I have added the various page templates, loop templates, css, etc. from the plugin. I tested on a different subdomain and it was working, but now it’s not.

    Does Twentyten somehow “create” the /forums/forum/ and /forums/topic/topic-name/ pages when it’s initialized? I looked at the functions.php included and didn’t see anything like this going on.

    I have also made sure to network activate the plugin, it was previously only activated on this site. Could that be the source of the problem?

    Thanks again, everyone.

    #98076
    llny
    Member

    wikileaksforum,

    sorry to interrupt your thread, but i was wondering if you can help me change the color of the background to white when posting a new topic with this theme (like in your site).

    i tried to modify the style.css but it seem like it is not there.

    thank you.

    #103176
    llny
    Member

    wikileaksforum,

    sorry to interrupt your thread, but i was wondering if you can help me change the color of the background to white when posting a new topic with this theme (like in your site).

    i tried to modify the style.css but it seem like it is not there.

    thank you.

    #98991
    thebreiflabb
    Member

    If your wordpress and bbpress share the same database you can simply edit sidebar.php

    On the top of the file add:

    <?php require_once(ABSPATH."/forum/bb-load.php"); ?>

    This will give you access to the bbpress functions. (Edit to the path of your bbpress installation)

    Then where you are going to output your latest posts add this:

    <?php
    global $wpdb;
    $query = "SELECT * FROM bbp_topics WHERE topic_status='0' ORDER BY topic_time DESC LIMIT 6";
    $topics = $wpdb->get_results($query);
    $counter = 0;
    ?>

    This will find the latest posts, I do it this way so it won’t show the same topic several times if many posts have been made in the same topic. Also edit bbp_ to your bbpress db prefix.

    Finally to output simply add something similar to this:

    <div id="latest-posts" class="border">
    <h2>Latest forum posts</h2>
    <?php foreach($topics as $topic) : ?>
    <div class="<?php echo $counter % 2 ? "gray" : "white"; ?>"><a href="<?php topic_last_post_link($topic->topic_id); ?>"><?php topic_title($post->topic_id); ?></a></div>
    <?php $counter++; ?>
    <?php endforeach; ?>
    </div>

    Edit to your preference on html and css.

    #104091
    thebreiflabb
    Member

    If your wordpress and bbpress share the same database you can simply edit sidebar.php

    On the top of the file add:

    <?php require_once(ABSPATH."/forum/bb-load.php"); ?>

    This will give you access to the bbpress functions. (Edit to the path of your bbpress installation)

    Then where you are going to output your latest posts add this:

    <?php
    global $wpdb;
    $query = "SELECT * FROM bbp_topics WHERE topic_status='0' ORDER BY topic_time DESC LIMIT 6";
    $topics = $wpdb->get_results($query);
    $counter = 0;
    ?>

    This will find the latest posts, I do it this way so it won’t show the same topic several times if many posts have been made in the same topic. Also edit bbp_ to your bbpress db prefix.

    Finally to output simply add something similar to this:

    <div id="latest-posts" class="border">
    <h2>Latest forum posts</h2>
    <?php foreach($topics as $topic) : ?>
    <div class="<?php echo $counter % 2 ? "gray" : "white"; ?>"><a href="<?php topic_last_post_link($topic->topic_id); ?>"><?php topic_title($post->topic_id); ?></a></div>
    <?php $counter++; ?>
    <?php endforeach; ?>
    </div>

    Edit to your preference on html and css.

    #37357
    jjack1
    Member

    Hi,

    I’ve been working on integrating bbpress into my WP site (blog), and have just completed the deep integration between the two (i.e. changing the old ‘get header’ tags in all the template files, etc). However, the forum portion of my forum page is all messed up. I assume that it has something to do with the style.css file somewhere? I’m just guessing though.

    I’ve searched for, found, and tried literally dozens of different resources to try and figure out what’s wrong but I’m just not finding any help.

    All I’m looking to do is basically create a bbpress forum that looks the same as my WP pages. I’ve got the look and feel of my WP pages into the bbpress forum, but the actual forum part is just messed up. Can someone help me out??

    My website is http://www.edcreviews.com

    The forum page is http://www.edcreviews.com/forum

    Thanks!

    Ramiuz
    Participant

    I´ve modifyed Kakumei to the limit of my knowledge. See yourself at http://www.michaeljackson.no/forum

    However, if I want to turn it into something different, I think the CSS is kind of clumsy made.

    If you change width on one thing – you have to change it on something like ten other definitions too. Width of content, background, padding, corners etc etc.

    So is there some other simplistic theme out there thats coded in a more unified way? Let´s say I want to change the size of the forum, I only want to input this ONCE, and have everything else fall in place automatically.

    I know this is possible with CSS, by using percentage in sizes, instead of static pixel definitions.

    Where can I find more BBPress themes anyway?

    #99021
    Ricardo
    Participant

    i’ve been following the chat on the bbpress plugin thread and altough JJJ said somewhere that it will be possible it reallly doesnt seem (to me) that the plugin is going that way.

    wordpress will use one theme and bbpress as a plugin will need its own theme.

    @devs

    dont read my comments as destructive but i feel as a user the need to voice my opinion, as a user i dont have the “god like” ability to master css/php or port my wordpress theme to a bbpress theme, its like you’re creating a forum plugin and making it difficult to use or integrate visually with wordpress…a forum plugin only for the “code masters”. try and go the simple:press or mingle forum way or have that possibility.

    #104121
    Ricardo
    Participant

    i’ve been following the chat on the bbpress plugin thread and altough JJJ said somewhere that it will be possible it reallly doesnt seem (to me) that the plugin is going that way.

    wordpress will use one theme and bbpress as a plugin will need its own theme.

    @devs

    dont read my comments as destructive but i feel as a user the need to voice my opinion, as a user i dont have the “god like” ability to master css/php or port my wordpress theme to a bbpress theme, its like you’re creating a forum plugin and making it difficult to use or integrate visually with wordpress…a forum plugin only for the “code masters”. try and go the simple:press or mingle forum way or have that possibility.

    #99019
    gswaim
    Participant

    @ricardouk

    I share many of your concerns. I too have stumbled onto the Mingle Forum plug-in.

    I have it installed along with the Mingle plug-in. This turns a WordPress site into a BuddyPress-like site with an extremely short learning curve. I had both installed, tweaked on the code to remove a couple of links that I didn’t want, modified the CSS to make a near perfect style match to my theme, and understood how to configure administrate the forum in about 3 hours.

    I am not a code monkey and cannot compare the pros and cons of how Mingle Forums stacks up against the bbPress plug-in or any other solutions. The security vulnerability has also been resoled to my satisfaction.

    Before I implement a solution I am more concerned with its support and sustainability. Both plug-ins have have over 50,000 downloads and the Mingle Forum plug-in was last updated 20 days ago. I had one problem/question with the installation and it was answered by the plug-in’s author within hours. Within the last 5 days the Mingle Forum’s author has posted 5 videos instructional videos on YouTube (http://www.youtube.com/user/cartpauj). All indications are that this project is alive and well.

    I am going to go live with it this week and plan to use it until another plug-in solution, which is better, becomes available.

    #104119
    gswaim
    Participant

    @ricardouk

    I share many of your concerns. I too have stumbled onto the Mingle Forum plug-in.

    I have it installed along with the Mingle plug-in. This turns a WordPress site into a BuddyPress-like site with an extremely short learning curve. I had both installed, tweaked on the code to remove a couple of links that I didn’t want, modified the CSS to make a near perfect style match to my theme, and understood how to configure administrate the forum in about 3 hours.

    I am not a code monkey and cannot compare the pros and cons of how Mingle Forums stacks up against the bbPress plug-in or any other solutions. The security vulnerability has also been resoled to my satisfaction.

    Before I implement a solution I am more concerned with its support and sustainability. Both plug-ins have have over 50,000 downloads and the Mingle Forum plug-in was last updated 20 days ago. I had one problem/question with the installation and it was answered by the plug-in’s author within hours. Within the last 5 days the Mingle Forum’s author has posted 5 videos instructional videos on YouTube (http://www.youtube.com/user/cartpauj). All indications are that this project is alive and well.

    I am going to go live with it this week and plan to use it until another plug-in solution, which is better, becomes available.

    #98934
    Ramiuz
    Participant

    ´Did I miss something then? looks fairly ordinary to me.´

    Then yes you did miss something.

    A troublesome trend in internet design these days, is that everything looks so square.

    Everything takes the form of squares, because that makes most sense, both codingwise and when it comes to image formats.

    This comment form however, challenges this trend by having avatars round. And goes further by having them float assymetrically on the Y-axis, as opposed to the avatars on this very forum for instance – where all avatars and name boxes are on the same line.

    Combining this assymetry with round pictures, is innovative and unusual. That little line from each picture, going into the users message, connotates to speech bubbles seen in comics.

    That functionality is made for young kids because it´s easy to understand who says what. But still this CSS-tricks has avoided in looking like a comic website, and kept the minemalistic color theme, and vague contrasting colors, and has a modern look to it with the border radius boxes.

    #37010

    A few people have expressed concerns about the growing number of template files included with the bbp-twentyten theme. Not counting CSS/JS/Images, we’re up to 32 individual template files to handle forums, topics, replies, loops, forms, users, and pagination. These concerns are totally valid, but mostly unavoidable.

    The goal for bbp-twentyten is for it to be as simple to understand as possible without tons of proprietary functions or complex logic to figure out. To do that, we’ve split some of the files into ‘parts’ that focus on specific functionalities. Some of this doesn’t make a whole lot of sense right now because of lack of documentation, and it uses functions that are new to WordPress as of 3.0, but I’m confident it’s the best way to go.

    When I think back to my beginning days of learning WordPress, a lot of what I did was butcher Kubrick and make my own frankentheme. I’m trying to keep that in mind here. Since the first place people naturally make changes is on the front end of their site, this theme should make that really easy to do.

    We also have an empty folder for a theme named ‘bbp-default’ which will more than likely be a full-featured theme that flexes a bit more bbPress muscle.

    I think when bbPress has more eyes on the code and more developers start integrating forum files into their themes, we’ll see some really neat things start to happen.

    #98427
    Markus Pezold
    Participant

    For specific topics and post you can use:

    get_topic_id();

    post_id();

    Here you’ll find the incomplete documentation:

    https://bbpress.org/documentation/template-tags

    But I think for posts and topics there must be another, better solution. No one wants to write their own CSS definition for each ID. :)

    Maybe it is better to use a term from the tagging to create the unique look of some Posts.

    #103527
    Markus Pezold
    Participant

    For specific topics and post you can use:

    get_topic_id();

    post_id();

    Here you’ll find the incomplete documentation:

    https://bbpress.org/documentation/template-tags

    But I think for posts and topics there must be another, better solution. No one wants to write their own CSS definition for each ID. :)

    Maybe it is better to use a term from the tagging to create the unique look of some Posts.

    #98425
    Markus Pezold
    Participant

    Ok – here is a small “solution” :)

    For a specific forum you can use this code.

    Put this in the front-page-php:

    id="forum_<?php echo get_forum_id()?>"

    _________________________________

    Here is the example with the standard theme kakumei

    <?php if ( bb_forums() ) : ?>

    <h2><?php _e('Forums'); ?></h2>

    <table id="forumlist">

    <tr>

    <th><?php _e(‘Main Theme’); ?></th>

    <th><?php _e(‘Topics’); ?></th>

    <th><?php _e(‘Posts’); ?></th>

    </tr>

    <?php while ( bb_forum() ) : ?>

    <?php if (bb_get_forum_is_category()) : ?>

    <tr<?php bb_forum_class(‘bb-category’); ?> id=”forum_<?php echo get_forum_id()?>”>

    <td colspan=”3″><?php bb_forum_pad( ‘<div class=”nest”>’ ); ?>“><?php forum_name(); ?><?php forum_description( array( ‘before’ => ‘<small> – ‘, ‘after’ => ‘</small>’ ) ); ?><?php bb_forum_pad( ‘</div>’ ); ?></td>

    </tr>

    <?php continue; endif; ?>

    <tr<?php bb_forum_class(); ?> id=”forum_<?php echo get_forum_id()?>>

    <td><?php bb_forum_pad( ‘<div class=”nest”>’ ); ?>“><?php forum_name(); ?><?php forum_description( array( ‘before’ => ‘<small> – ‘, ‘after’ => ‘</small>’ ) ); ?><?php bb_forum_pad( ‘</div>’ ); ?></td>

    <td class=”num”><?php forum_topics(); ?></td>

    <td class=”num”><?php forum_posts(); ?></td>

    </tr>

    <?php endwhile; ?>

    </table>

    <?php endif; // bb_forums() ?>

    So you can style with CSS the background and the font-color.

    eg. #forum_1 {background-color: #ddd; color: #333}

    #103525
    Markus Pezold
    Participant

    Ok – here is a small “solution” :)

    For a specific forum you can use this code.

    Put this in the front-page-php:

    id="forum_<?php echo get_forum_id()?>"

    _________________________________

    Here is the example with the standard theme kakumei

    <?php if ( bb_forums() ) : ?>

    <h2><?php _e('Forums'); ?></h2>

    <table id="forumlist">

    <tr>

    <th><?php _e(‘Main Theme’); ?></th>

    <th><?php _e(‘Topics’); ?></th>

    <th><?php _e(‘Posts’); ?></th>

    </tr>

    <?php while ( bb_forum() ) : ?>

    <?php if (bb_get_forum_is_category()) : ?>

    <tr<?php bb_forum_class(‘bb-category’); ?> id=”forum_<?php echo get_forum_id()?>”>

    <td colspan=”3″><?php bb_forum_pad( ‘<div class=”nest”>’ ); ?>“><?php forum_name(); ?><?php forum_description( array( ‘before’ => ‘<small> – ‘, ‘after’ => ‘</small>’ ) ); ?><?php bb_forum_pad( ‘</div>’ ); ?></td>

    </tr>

    <?php continue; endif; ?>

    <tr<?php bb_forum_class(); ?> id=”forum_<?php echo get_forum_id()?>>

    <td><?php bb_forum_pad( ‘<div class=”nest”>’ ); ?>“><?php forum_name(); ?><?php forum_description( array( ‘before’ => ‘<small> – ‘, ‘after’ => ‘</small>’ ) ); ?><?php bb_forum_pad( ‘</div>’ ); ?></td>

    <td class=”num”><?php forum_topics(); ?></td>

    <td class=”num”><?php forum_posts(); ?></td>

    </tr>

    <?php endwhile; ?>

    </table>

    <?php endif; // bb_forums() ?>

    So you can style with CSS the background and the font-color.

    eg. #forum_1 {background-color: #ddd; color: #333}

    #98420
    Markus Pezold
    Participant

    Hi Softinfo,

    i think it is possible to write a small php script to use the forum-id or the forum-name as css class.

    From the standard theme:

    <tr class="bb-category bb-parent bb-follows-niece bb-root alt "></tr>

    Here you can add the new class. Then you can use the CSS class analogous to the standard class “alt”.

    Greets Markus

    black-forever

    http://black-forever.de

    http://twitter.com/blackforever_de

    #103520
    Markus Pezold
    Participant

    Hi Softinfo,

    i think it is possible to write a small php script to use the forum-id or the forum-name as css class.

    From the standard theme:

    <tr class="bb-category bb-parent bb-follows-niece bb-root alt "></tr>

    Here you can add the new class. Then you can use the CSS class analogous to the standard class “alt”.

    Greets Markus

    black-forever

    http://black-forever.de

    http://twitter.com/blackforever_de

    #36572
    Pomy
    Participant

    I want to highlight background and font properties for a specific forum in front page, with the flow of other forums by css control.

    If you are user of freelacer site. you can easily understand this question.

    See the example – Screenshot

    It would be also great if possible to highlight specific post or topic.

    in my case what I need – See the other Screenshot

    Thanks

    #98401

    In reply to: in posts

    advent1
    Member

    I’m pretty sure I messed this forum up by doing the li tag…let me see if i can fix it

    anyway it wont let me style it, and I cant seem to find why, but I can change other things, just not the list-style-type property. I took out all list-style-type: none; from the style.css and it still wont.

    Is there a work around?

    Thanks for listening.

    #103501

    In reply to: in posts

    advent1
    Member

    I’m pretty sure I messed this forum up by doing the li tag…let me see if i can fix it

    anyway it wont let me style it, and I cant seem to find why, but I can change other things, just not the list-style-type property. I took out all list-style-type: none; from the style.css and it still wont.

    Is there a work around?

    Thanks for listening.

    #94739
    citizenkeith
    Participant

    this is something that other forum software has had for years and something we can do pretty easily.

    Yes, this is something I’ve wanted in bbPress… in my install of 0.9.0.6, I edited my CSS file so that I can at least have posts numbered… it’s easy to say “See post number 24” rather than cut and paste or re-explain something in a topic. Glad to see this functionality in the plugin.

    #98086
    cyberquill
    Member

    Yes, it really is there, but it gives a 404 error.

    forum/bb-templates/kakumei/style.css works.

    forum/bb-templates/kakumei/screenshot.png works.

    etc.

    forum/my-templates/my-theme/style.css –> 404 error.

    forum/my-templates/my-theme/screenshot.png –> 404 error.

    etc.

    Basically, all the URLs in forum/bb-templates/kakumei/ work, and all the files in forum/my-templates/my-theme/ produce a 404, even though bb-templates and my-templates are located on the same level in the hierarchy tree, so either both should be 404, or neither.

    I don’t understand.

    #103186
    cyberquill
    Member

    Yes, it really is there, but it gives a 404 error.

    forum/bb-templates/kakumei/style.css works.

    forum/bb-templates/kakumei/screenshot.png works.

    etc.

    forum/my-templates/my-theme/style.css –> 404 error.

    forum/my-templates/my-theme/screenshot.png –> 404 error.

    etc.

    Basically, all the URLs in forum/bb-templates/kakumei/ work, and all the files in forum/my-templates/my-theme/ produce a 404, even though bb-templates and my-templates are located on the same level in the hierarchy tree, so either both should be 404, or neither.

    I don’t understand.

Viewing 25 results - 2,101 through 2,125 (of 2,719 total)
Skip to toolbar