Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress'

Viewing 25 results - 14,826 through 14,850 (of 26,877 total)
  • Author
    Search Results
  • #110861
    Wallach
    Member

    Thank you. For some reason, the page worked, but did not have the correct formatted look.

    I just found that the bbpress widgets actually place the forum and the log-in in the right column, which may be even easier to use, and the page seems to be formatted correctly as well, so I will mainly use those.

    The pairmybeer site looks good, and is very concisely branded.

    #41130
    aravoth2011
    Participant

    Hi everyone. I’ve been trying to display posts from the forum on a static home page so that it gives the appearance of a blog. Basically, I’m using the tewntyeleven theme and I’m using the showcase.php template to display the forum entries.

    you can see what I’m going for here.. http://test.objectsinmotion.org

    So far, I’ve managed to modify it so that super stickies are put in the featured slideshow. The forum posts are displayed properly, and I’ve managed to pull the topic tags. One of the things I’ve been having a lot of trouble with is displaying the forum a topic is posted in as a category. Normally there is a line of text below the topic excerpt that says, “posted in (category name)” . But it seems that nothing I have tried so far is working. In fact, whenever I try to call the forum title, is displays the topic title instead.

    I’m not a programmer, and I know next to nothing about php, I’ve been doing a lot of reading, and trying to learn as much as I can, but I’m just running into a brick wall here. Any help anyone could offer would be much appreciated.

    Showcase.php uses content.php to display all that meta data. right now it looks like this..

    <?php
    /**
    * The default template for displaying content
    *
    * @package WordPress
    * @subpackage Twenty_Eleven
    * @since Twenty Eleven 1.0
    */
    ?>

    <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    <header class="entry-header">
    <?php if ( is_sticky() ) : ?>
    <hgroup>
    <h2 class="entry-title"><a>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
    <h3 class="entry-format"><?php _e( 'Featured', 'twentyeleven' ); ?></h3>
    </hgroup>
    <?php else : ?>
    <h1 class="entry-title"><a>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
    <?php endif; ?>

    <?php if ( 'topic' == get_post_type() ) : ?>
    <div class="entry-meta">
    <?php twentyeleven_posted_on(); ?>
    </div><!-- .entry-meta -->
    <?php endif; ?>

    <?php if ( comments_open() && ! post_password_required() ) : ?>
    <div class="comments-link">
    <?php comments_popup_link( '<span class="leave-reply">' . __( 'Reply', 'twentyeleven' ) . '</span>', _x( '1', 'comments number', 'twentyeleven' ), _x( '%', 'comments number', 'twentyeleven' ) ); ?>
    </div>
    <?php endif; ?>
    </header><!-- .entry-header -->

    <?php if ( is_search() ) : // Only display Excerpts for Search ?>
    <div class="entry-summary">
    <?php the_excerpt(); ?>
    </div><!-- .entry-summary -->
    <?php else : ?>
    <div class="entry-content">
    <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?>
    <?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'twentyeleven' ) . '</span>', 'after' => '</div>' ) ); ?>
    </div><!-- .entry-content -->
    <?php endif; ?>

    <footer class="entry-meta">
    <?php $show_sep = false; ?>
    <?php if ( 'topic' == get_post_type() ) : // Hide category and tag text for pages on Search ?>
    <?php
    /* translators: used between list items, there is a space after the comma */
    $categories_list = get_the_category_list( __( ', ', 'twentyeleven' ) );
    if ( $categories_list ):
    ?>
    <span class="cat-links">
    <?php printf( __( '<span class="%1$s">Posted in</span> %2$s', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-cat-links', $categories_list );
    $show_sep = true; ?>
    </span>
    <?php endif; // End if categories ?>
    <?php
    /* translators: used between list items, there is a space after the comma */
    $topic_tags = bbp_get_topic_tag_list( '', __( ', ', 'twentyeleven' ) );
    if ( $topic_tags ):
    if ( $show_sep ) : ?>
    <span class="sep"> | </span>
    <?php endif; // End if $show_sep ?>
    <span class="tag-links">
    <?php printf( __( '<span class="%1$s">Tagged</span> %2$s ', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-tag-links', $topic_tags );
    $show_sep = true; ?>
    </span>
    <?php endif; // End if $topic_tags ?>
    <?php endif; // End if 'topic' == get_post_type() ?>

    <?php if ( comments_open() ) : ?>
    <?php if ( $show_sep ) : ?>
    <span class="sep"> | </span>
    <?php endif; // End if $show_sep ?>
    <span class="comments-link"><?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'twentyeleven' ) . '</span>', __( '<b>1</b> Reply', 'twentyeleven' ), __( '<b>%</b> Replies', 'twentyeleven' ) ); ?></span>
    <?php endif; // End if comments_open() ?>

    </footer><!-- #entry-meta -->
    </article><!-- #post-<?php the_ID(); ?> -->

    Other things on my to-do list include making the comments section show number of forum replies instead of number of wordpress comments, and changing the author link so that it goes to the bbpress profile of that user instead of a wordpress post archive.

    For now though, I’m hoping that someone out there can help me with the “category” issue. Anyone have any ideas?

    #100719

    In reply to: bbPress 2.0 – FAQ

    monoman
    Member

    My website is based on static files located at the root level and later I have added WordPress blog set up in subfolder with permalink at /blog. After installing bbPress plugin, I’m not able to separate blog and forum in permalinks. I don’t know how to setup bbPress to have forum at /forum, instead of /blog/forum, which is the default setting and looks strange.

    Do you know how to setup bbPress plugin correctly to solve this issue?

    Thanks in advance!

    #105819

    In reply to: bbPress 2.0 – FAQ

    monoman
    Member

    My website is based on static files located at the root level and later I have added WordPress blog set up in subfolder with permalink at /blog. After installing bbPress plugin, I’m not able to separate blog and forum in permalinks. I don’t know how to setup bbPress to have forum at /forum, instead of /blog/forum, which is the default setting and looks strange.

    Do you know how to setup bbPress plugin correctly to solve this issue?

    Thanks in advance!

    #100717

    In reply to: bbPress 2.0 – FAQ

    acoburn4
    Participant

    Congrats on the stable release! I myself have been waiting to download it until all the kinks have been worked out. Downloaded this morning, and everything is better than I expected. GREAT JOB!

    Quick question – sorry if it was already covered. I am currently using BBPress (standalone) version 1.1 and WordPress 3.2.1. I wanted to start using the BBpress plug-in. Are there any migration tools that allow an import from the standalone software to the plug-in?

    Thanks for any information!

    #105817

    In reply to: bbPress 2.0 – FAQ

    acoburn4
    Participant

    Congrats on the stable release! I myself have been waiting to download it until all the kinks have been worked out. Downloaded this morning, and everything is better than I expected. GREAT JOB!

    Quick question – sorry if it was already covered. I am currently using BBPress (standalone) version 1.1 and WordPress 3.2.1. I wanted to start using the BBpress plug-in. Are there any migration tools that allow an import from the standalone software to the plug-in?

    Thanks for any information!

    #41131
    freque.unce
    Member

    Hi, I’m running the current versions of wordpress/buddypress with the current bbpress plugin. I’d like to return usernames instead of real names in the forum, or user_login names instead of user_id names. I’m not sure where to make the adjustments. Any advice?

    Anointed
    Participant

    @Misha

    Not really possible as it goes completely against the way that WordPress works. Not having an author assigned to a topic would leave it helplessly orphaned.

    Even if it were somehow possible, would take some serious magic from Adam, I am certain this would be a paid project. You can always fill out the contact form for a bid over on bbconverter, but as I said, it’s so edge case that I’m not certain it would happen.

    AWJunkies
    Member

    New update is available now version 1.2. Please test it out. I will have phpbb3 tested and updated real soon. Sorry again for the delays guys. Getting married on the 27th of December so been slammed with wedding stuff.

    https://wordpress.org/extend/plugins/bbconverter/

    1.2

    Fixed Cleaning slow down.

    Much Faster importing now if mysql table editing is available.

    Fixed duplicate first post/reply on topics

    Fixed Issue with Different charset from UTF-8

    Added more info messages

    #41113
    yuliang
    Member

    I installed bbpress 2.0.2. It works fine with wordpress. However, I cannot see the editor bar when creating/editing topics and replies. I am wondering whether there is a way I can use the editor in wordpress or something similar?

    Appreciate any help and information.

    #110860
    Pairmybeer
    Member

    created a log in page as well using the same process

    1) created a new page named “Log in”

    2) added the following code in HTML:

    [bbp-login]

    <h1>To Register</h1>

    [bbp-register]

    3) added that page to my secondary menu

    http://pairmybeer.com/log-in-to-pair-my-beer/

    Still working on a layout for the forum homepage/landing page and having issues with some of the other short codes for forum and topic indexes

    #110859
    Wallach
    Member

    Amazing, Pairmybeer, a simple and elegant answer — it works — many thanks!

    #110858
    Pairmybeer
    Member

    See this post for your answer. I had the same issue and resolved it with this. Just a couple of steps.

    https://bbpress.org/forums/topic/page-in-menu#post-88982

    #41110
    neontrauma
    Member

    Hi,

    I’m running a bbPress 2 within BuddyPress, so bbp_reply_author_link(); links to the BuddyPress profile – domain.com/members/username. I’d like to change that link so that the username links to the WordPress author page (domain.com/author/userame). Changing the user slug in the bbPress settings to “author” didn’t help. :/

    So – how is it possible to change that link or alternatively to display the username only, without any link?

    Thanks,

    neontrauma

    #41098
    will_c
    Participant

    I am wondering if there is a way with bbPress 2 to close forums to new topics, but allow users to reply to existing forum topics within that forum (or subforum). Ideally this would emulate the functionality of this bbPress standalone plugin:

    http://bbpress.org/plugins/topic/read-only-forums/

    Currently, closing a forum restricts users’ ability to create topics and reply to existing topics (including topics in open subforums).

    I found someone else raising this issue in the WordPress forums, here, but wasn’t sure that it was the most appropriate place to ask the question.

    #41099
    bradlis7
    Member

    Spam is hard to deal with in bbpress, WordPress itself does a much better job. For one thing, I would like to see replies to see if it is really spam, but it doesn’t seem like I can view it without marking it as “Not Spam”.

    Also, I would like to see a “Delete permenantly” button in the Spam list for both topics and replies.

    I think that bbPress also needs better notification, or a setting for “Topics/Replies must be approved the first time”. I had 20 topics that were spam that had showed up in my forums, but I don’t get much traffic, so I didn’t realize they were there.

    MishaOLS
    Member

    Hello guys, thank you Adam for all the work you put into this converter! I really can’t wait for the updated version! Now I would like to ask all of you one maybe stupid question but is it somehow possible to convert the author’s of the posts without creating an entry in the wp_users database? My problem is that I have converted my whole site (I was previously using blog:CMS and punbb forum) into WordPress and now I decided that I will ask all my free users to create a new account for WP (to have fresh password, etc.) but I obviously can’t do this until I delete all the users that have been created by the converter. Yet once I delete them, their posts get deleted as well. I also tried to convert the forum without the users but the problem is that the forum then gets converted without the authors of the posts :(. So I am in a dead end here… I would basically need to keep forum’s authors (only name is sufficient) without creating an entry in the wp_users database (so that my users may register for WP using the same e-mail). Thank you very much for your help/advice/suggestions. All the best from Misha

    #107375
    David100351
    Participant

    @Hagandasz

    I had problems finding this, too.

    Go to Forums on Dashboard.

    Hover the mouse over the title of the forum, and a link comes up at the bottom of the page. (In Opera it does, anyway)

    e.g. http://pour-your-heart-out.com/wp-admin/post.php?post=36&action=edit

    in this case, $forum_id is 36

    you don’t use the $

    The same principle works with the rest. I know it says “post=36” but I guess that’s just how wordpress stores stuff.

    go3721
    Member

    My website has already installed WordPress 3.2 at mydomain.com/blog/. Recently I installed the bbpress 2.0 plugin, trying to set up a forum for my site. However, from what I can see, I can set up the forum as mydomain.com/blog/forums/. But what I really want to do is set it up as mydomain.com/forums/, which means I want to let the blog and fourm appear to be in separate and parallel directories (not one inside another). Can somebody tell me how to do it?

    Thanks!

    #110801
    Adrian23
    Member

    Since the WordPress discussion boards increased along with bbPress underneath the cover, bbPress had been examined in order to it’s complete capability, resulting in a number of custom remaking as well as tweaking to support the actual development as well as development associated with WordPress right into a world-wide acclaimed running a blog system.

    ____________________________

    bp oil spill claims

    #41082
    mamikaze
    Member

    I am working on a bbpress forum in a WordPress site for a client and it needs to be one forum only. the focus is to be on the topics list.

    I’m using the bbp-twentyten theme.

    Thanks!

    #40549

    Topic: More settings

    in forum Installation
    MellyVille
    Member

    Somehow, I believe there are to be more settings than just the two known to me. I’m using WordPress 3.2.1 and have installed bbPress through BuddyPress…

    Now i can only make minor settings through:

    1. wp back end -> BuddyPress -> Preferences (5 checkboxes and thats it)

    2. wp back end -> Settings -> Forums (couple of minor per page settings + slugs).

    That can’t be it right? bbPress is a powerful forum, there have to be more settings right? Am I missing anything?

    p.s. for example, I want the ‘start new topic’ field gone and move it to it’s own page in stead of being underneath the forum/topic list…

    DiannaM668
    Member

    Hi Chrisella, I gave it one more college try on that Forumconverter plugin and it even mentioned needing to use bbpress 2.0 rc4 version. I installed the older version of BBpress but still no go. I’m getting stuck when I get a 500 internal server error and I believe I’m timing out.

    When I get the error page after about 2 minutes of conversion, it then makes me log into my wordpress installation as if it’s trying to install itself. I put my login info as it asks and it then gives me a long list of the errors that occurred. It does say “…… has exceeded the ‘max_questions’ resource (current value: 75000)].

    When I go to my forum, I do have the forum and topics, but no actual posts. So close yet so far.

    If I knew how to further fix my timeout issue, I may try to call my web-hosting to see if they could guide me on the issue or maybe give me more conversion time just for this issue…I’m just grasping at straws.

    If no luck on this last attempt with calling my web-hosting, I’m at the mercy of AWJunkies guys for when they have time to possibly finish the plugin for a phpBB conversion. They will totally make my day.

    I’ve pretty much tried every route one can possibly try to get my forum over to bbpress. I’ll just wait with crossed fingers and toes. :-)

    #110846
    Anointed
    Participant

    bbPress works on virtually any theme out there. It may take a little tweaking of the css to get it to look right, but it should still work just fine.

Viewing 25 results - 14,826 through 14,850 (of 26,877 total)
Skip to toolbar