Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '+.+default+.+'

Viewing 25 results - 3,751 through 3,775 (of 6,813 total)
  • Author
    Search Results
  • #135974
    ZachMatthews
    Participant

    Hey guys –

    On my site (itinerantangler.com) I have a longstanding Real Names Policy. As a result almost all of my users have their actual first and last names displayed as their Display Names.

    If I go into an individual user’s profile I can edit the ‘Display Name’ by hitting a drop down box. This gives a bunch of options; lower case, last-name-first, etc. The one I would like for everyone to use is the regular old ‘First Last’ setting with capitals for their first and last names.

    Unfortunately the board software defaulted to lower case ‘first last’ when I transferred in from some other software.

    Is there a way to bulk change all my users’ drop-down boxes to the ‘First Last’ setting as a default?

    Thanks,
    Zach

    #135972
    DanielB86
    Participant

    Hello,

    I have buddypress and mingle running. Normally I could asign a specific sidebar to each buddypress page. Now all of a sudden I can’t. Does anyone know how to fix this?

    #135932
    JosiahW
    Participant

    When users register to my BuddyPress + bbPress site they are not being assigned the default role I have selected for them in the forums settings. It simply does not assign them any role.
    I have to go in and manually assign them the role or use the “Remap existing users to default forum roles” tool.

    Any idea what could be causing that? I have all other plugins disabled with the exception of: Custom Login 2.0 which just themes the existing wordpress login and registration pages.

    #135900
    unitedtechpros
    Participant

    When I go to the root of my forums (new install with only 6 forums) the pagination at the bottom of the screen shows 4 pages… there is no page beyond the first page and if you click on the link to page 2, it goes to forums/page 2 but displays the same page. It does the same with any of the other links 3-4.

    This has me stumped? I tried changing the topics shown to a larger and that just increases the pagination links (I went from 2 to 4). I set both the blog post and topic post back to default and the links stayed the same.

    I’m really impatient and I will most likely try to reset the forums and start over since they are new and there are only 6 with only a couple posts I made in them. So, I’ll let you know if that fixed it.

    Thanks for any help!

    #135894

    In reply to: MyBB Import to bbPress

    Stephen Edgar
    Keymaster

    @capacitron Thanks a bunch for testing it out, glad it worked.

    bbPress & BuddyPress use the same WordPress user table so everything should be common across both plugins and WordPress itself.

    That said, any extra profile data I can get from the source forum, in this case MyBB we are storing the extra data in the WordPress ‘usermeta’ table so this data can be manipulated/imported/whatever at a later time.

    With MyBB I only see 3 extra user profile fields to store (ICQ, MSN & Signature), the rest WordPress includes by default (AIM, Yahoo etc) .

    Looking at the current version of MyBB.php importer at Line #474 you will see the three entries I have (summarized below):

    • // Store ICQ (Stored in usermeta)
      ‘to_fieldname’ => ‘_bbp_mybb_user_icq’
    • // Store MSN (Stored in usermeta)
      ‘to_fieldname’ => ‘_bbp_mybb_user_msn’
    • // Store Signature (Stored in usermeta)
      ‘to_fieldname’ => ‘_bbp_mybb_user_sig’,

    Thus under each imported user in the wp_usermeta table under each user id the above data will also be stored…. So for example if you wanted to install a bbPress/BuddyPress signature plugin to extend either of these plugins you could then copy the data from this stored field to the field that the plugin uses f or storing user signature data. As any of this can be done in numerous ways by plugin authors each site admin will need to decide what plugin to use and how to shift around any relevant data.

    #135884
    Anonymous User 12933267
    Inactive

    So right now the entire forum is using the standard page template (Default Template). Here is an example of the template.

    But I would like bbpress to use the Full-Width Template as used here.

    Is there a way to change the page-template used by bbpress?

    Kind regards,
    Luc

    #135773
    bjorn2run
    Participant

    I was running into the same issue, here’s what I did:
    I copied:
    /wp-content/plugins/bbpress/templates/default/bbpress/form-topic.php
    into the root of my theme folder:
    /wp-content/themes/(YourTheme)/form-topic.php

    I renamed the file to:
    form-topic-home.php

    so I can call it separately and makes changes to it without having an impact on the normal add topic form.

    In my new file I removed the if statements for testing if the page is a single forum or a topic edit, my form is going into a modal on my homepage, so neither of those will ever be necessary.

    Starting at line 12 I deleted this:

    <?php if ( !bbp_is_single_forum() ) : ?>
    
    <div id="bbpress-forums">
    
    	<?php bbp_breadcrumb(); ?>
    
    <?php endif; ?>
    
    <?php if ( bbp_is_topic_edit() ) : ?>
    
    	<?php bbp_topic_tag_list( bbp_get_topic_id() ); ?>
    
    	<?php bbp_single_topic_description( array( 'topic_id' => bbp_get_topic_id() ) ); ?>
    
    <?php endif; ?>

    Next on what was line 28 I changed
    <?php if ( bbp_current_user_can_access_create_topic_form() ) : ?>
    to
    <?php if ( bbp_current_user_can_publish_topics() ) : ?>

    The original code does a lot of checking if the user can edit forums, if we’re on a single page or if this is one off page, we’re really only looking for the current user’s ability to post topics, and we’re given that (inside that same function actually)

    At the very bottom of the file you’ll also want to delete this:

    <?php if ( !bbp_is_single_forum() ) : ?>
    
    </div>
    
    <?php endif; ?>

    as it’s the closing div tag to the stuff we cut out at the top of the file.

    Now where you were going to use the short code, call a template part instead, and you should be square.

    <?php bbp_get_template_part( 'form', 'topic-home' ); ?>

    #135730
    wpobs
    Participant

    Hi guys, im using the latest WP 3.6 + bbPress 2.3.2 + buddypress 1.8

    All works fine until you try to either Edit a forum of an existing group (front end) or when creating a new group and then at step 3 adding a forum to this group, when then the page get broken.

    The page will remain visible but the header and footer will disappear.

    see image below:
    Broken Header and Footer

    I have disabled ALL plugins as well as switched theme to the WordPress / buddypress default one but still the issue remains.

    Page end Source code finished without closing this are the last lines:

    <form action="http://[domainname]/group1/admin/extras" name="group-settings-form" id="group-settings-form" class="standard-form" method="post" enctype="multipart/form-data" role="main">

    Inspect Elements reports error:
    Uncaught TypeError: Object [object Object] has no method ‘sortable’

    This was also report on the Buddypress forum:
    http://buddypress.org/support/topic/admin-bar-and-footer-broken/

    Please help.
    Dan

    #135690
    hitkid
    Participant

    Hi guys, I’m having trouble showing the shortcode for recent posts on my home page after I entered in code to get my recent blog posts to show up on my home page.

    Here is the code I used for recent posts:

    $args = array( 'numberposts' => 3 );
    $lastposts = get_posts( $args );
    foreach($lastposts as $post) : setup_postdata($post); ?>
    	<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
    	<?php the_content(); ?>
    <?php endforeach; ?>

    I saw in another topic how to get 10 recent topics on your home page with shortcode, but it didn’t work after the above code. Could someone please help me with the code to get 10 recent topics to appear on my home page?

    Using the current versions of wordpress, bbpress and buddypress. Working with a buddypress default child theme. I’m also newer to php, so go easy please 🙂

    #135689
    nanodust
    Participant

    @johnjamesjacoby awesome.

    thanks BBPress for such a well designed and useful plugin !!

    #135623
    ozgurpolat
    Participant

    I installed bbpress on a default wordpress theme, and it works fine, I have a feeling that this an issue with my theme. But I don’t know where to even start to solve the problem.

    #135582
    Jason
    Participant

    Hey JJJ,

    Thanks for the response. So, going to Tools > Forums, definitely did the trick by applying my default forum role “Participant” through to all current users.

    However, it seems the issue is that when new users are created (outside of bbPress’s registration), they do not have a forum role assigned automatically. This I guess was just never an issue previously, as bbPress would use the default forum role when one did not exist. Is this no longer the case?

    Is this the expected behavior? Or should I be figuring out how to modify my signup process to ensure this Forum Role gets assigned to the new user?

    #135544
    ozgurpolat
    Participant

    In form-reply.php after the line:

    <div class="bbp-template-notice"><p><?php _e( 'Your account has the ability to post unrestricted HTML content.', 'bbpress' ); ?></p></div>

    I inserted <?php else : ?><div class="bbp-template-notice"><p><?php _e( 'PLEASE NOTE: Your post will be sent to AWAITING MODERATION folder, will be posted if approved!', 'bbpress' ); ?></p></div>

    Which is not so good because I am changing the core file. Is there a better way to do this?

    ozgurpolat
    Participant

    Hi,

    I have just installed bbpress moderation plug-in, but my question is not about the moderation plug-in, it is about putting a default text into the reply field, so that the users can read before posting. This is because currently bbpress moderation plug-in does not notify the user that the reply/post is held for moderation. So the user posts something in the forum, but nothing happens, there is no message saying that user’s message is awaiting moderation. The plug in author was asked about this 8 months ago, and he replied that it would be difficult to do something about this, and apparently the color of the reply is yellow, hinting that the reply is held for moderation. But there is no way of knowing this. So I decided to put the default text into the reply field so that the user can read before posting. I don’t know how to do this, I am quite new to bbpress.

    #135537
    adambware
    Participant

    I see the Group Extension in BBPress checks to see if the BBP_Forums_Group_Extension class is already defined, but I cannot figure out which action I need to hook into so that my custom BBP_Forums_Group_Extension is used instead of the default BBPress Group Extension.

    Please help!

    #135523
    JLent.
    Participant

    Hello,

    I recently just updated to BuddyPress 1.8 with the Default Theme and now my widgets are not showing unless members are logged in. Any suggestions? Thanks.

    littlesparrowblog
    Participant

    How can I establish automatic (default) email notification for all our registered users, which they can opt out of? We just created a new website for our group and the users are not getting any emails unless they subscribe to the individual topics.

    Also, as administrator, how do I send out a group email?

    Hugo Ashmore
    Participant

    Had this issue for a while too. Checked once again with no plugins running, BP bleeding and bp-default theme, issue persists.

    #135457
    janhoos
    Participant

    Hey guys!

    Just installed bbPress since a week. Loving it so far 🙂 I was wondering, if there was a way where I can let people subscripe to topics, but not have it on by default? Some of the users have complained that they dont want to recieve all that e-email for topics that arent that important.

    ethanandrew
    Participant

    That is the default configuration of bbpress, you cannot omit the /topic/ as it will always coming back and besides that points to a discussion or specific topic of the page. According to my friend from seo gold coast Australia, it is part of the systematic method for bbpress to have that one.

    #135407
    shaimart
    Participant

    Hi, how can I remove the sidebar from my forum page? I’m trying to get a full width page for the forums. I’m using the 2012 default WordPress theme, http://goo.gl/kC0X2

    Kindly advise.

    Thanks!

    #135343

    In reply to: Color my forums

    Tecca
    Participant

    It’s possible that your theme has a bbpress.css file which is overriding whatever you’re putting in the default file. Regardless, you should be editing the file that’s in your theme’s directory, which would look similar to:

    webroot / wp-content / themes / yourtheme / css / bbpress.css

    If the file isn’t in there or you don’t have that folder in your theme, copy and paste the file over.

    Also make sure you’re hard refreshing your browser to clear its cache, after making your changes (hold CTRL then press f5 on your keyboard, or press the browser’s refresh button a couple of times).

    #135342

    In reply to: Color my forums

    yguvvala
    Participant

    Hi Tecca,

    That didnt work. changing this codes doesnt reflect any changes on my forums page. in my Godaddy account i am changing this under

    webroot / wp-content / plugins / bbpress / templates / default / css / bbpress.css

    if you think am editing wrong file please let me know.

    #135327
    dvclmn
    Participant

    Thanks for the reply, JJJ!

    Really appreciate your time. I successfully uploaded my entire vB database into phpmyadmin on my server (dvclmn.com).

    However I input all my details and unfortunately it still gave me ‘no forums to convert…’ etc.

    To be honest I’m sure it’s just a matter of having input a small detail wrong; there’s just so many areas to make an error in!

    Perhaps I could get clarification on each field, just to eliminate these areas.

    Select Platform
    Easy, that’s vBulletin.

    Database Server
    I am now trying to import from a database on the same server as the bbpress installation. Does this mean I use a) localhost b) my dedicated IP address or c) dvclmn.com OR http://www.dvclmn.com OR http://dvclmn.com?

    Database Port
    My server uses Apache, so it’s likely this is 3306; is there a way to find out for sure?

    Database Name
    Is it important to include the server username extension here? So username_database_name? Or is just database_name fine? (in this case it is [username]_anotherc_vb).

    Database User
    I have seen the option between username@localhost OR username@dvclmn.com OR just username. Which is going to work?

    Database Password
    Got that nailed haha

    Table Prefix
    I have just been enter vb_, as all the tables in the database look like this: “vb_access” and “vb_action” etc.

    Have been keeping the Rows & Delay Time at their defaults, and selecting Convert Users (and sometimes Start Over & Purge for good measure).

    I hope this is enough information for you. It is imperative I can get this working ASAP, as I mentioned before I am happy to pay for premium support if need be. Just need this to work.

    Thanks,

    Dave.

Viewing 25 results - 3,751 through 3,775 (of 6,813 total)
Skip to toolbar