Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for ' . default . '

Viewing 25 results - 3,426 through 3,450 (of 6,759 total)
  • Author
    Search Results
  • #141027
    Stephen Edgar
    Keymaster

    Here’s the permalink to the translation ‘Search’ in GlotPress for English Australian.

    If you click ‘Details’ (you might have to be logged in) you will see each place ‘Search’ is listed for translation, one of those is templates/default/bbpress/form-search.php:17 and that is the one you are looking for.

    #141018
    synergywp
    Participant

    Hello,

    I think this may be a new issue, but, on line 134 of the default template bbpress-functions.php, and on line 141 for RTL, the script is loading with a relative path and therefore not adding https when necessary.

    Of course, when accessing site via https, this is giving a “insecure content” warning.

    I made a quick edit which is replacing line 134 with:

    'file' => get_home_url() . '/wp-content/plugins/bbpress/templates/default/css/bbpress.css',

    Keep in mind that may not work with every single install, but likely 99%. (those who have a custom wp-content or plugins dir)

    Thanks.

    wiste
    Participant

    The codex page for this is outdated and a lot of the threads are for older versions so here is a version for WP 3.8, bbPress 2.5.2.

    Resources

    Here are the pages from which I pieced this together.

    http://codex.bbpress.org/step-by-step-guide-to-creating-a-custom-bbpress-theme/
    http://codex.wordpress.org/Child_Themes
    http://op111.net/53/
    http://perishablepress.com/bbpress-theme-template-files/
    http://www.hongkiat.com/blog/wordpress-child-themes-dev/

    WordPress Child Themes – What, Why & How

    Initial Setup

    Install WordPress and bbPress.

    Step #1: Create a child theme of your WordPress theme.

    Even though what you’re wanting to change is bbPress and not your WordPress, there are not separate themes for plugins, so you need to create a child theme of whatever WordPress theme you are using to have a place to put the bbPress plugin child theme files. This will ensure that any updates to bbPress or your WordPress theme will not overwrite your changes. Here is how you create a child theme:

    1. FTP to your website
    2. Go to ../wp-content/themes
    3. Create a new folder for your child theme. Name it yourtheme-child for the sake of organization.
    4. Create a new file called style.css and add the below, changing the valuesto the value for your child theme. The critical fields are Theme Name, Template, and the the parent theme directory name (which should be the same as “Template”) in the @import. Everything else is used by wordpress.org for categorizing templates so don’t stress if you don’t know what to put there:

    /*
     Theme Name: Your Theme Name Child
     Theme URI: Your website if you don't intend to publish a separate site just for your theme
     Description: A brief description of your child theme
     Author: your name
     Author URI: your website
     Template: parent-theme-directory
     Version: 1.0.0
     Tags:  whatever tags you might want to use for your child theme
    */
    
    @import url("../parent-theme-directory/style.css");
    
    /* =Theme customization starts here
    -------------------------------------------------------------- */

    5. FTP your newly created style.css to ../wp-content/themes/yourtheme-child

    Step #2: Add your bbPress Child Theme files to your WordPress Child Theme

    1. Create a folder called “bbpress” on your local machine.
    2. FTP to ../wp-content/plugins/bbpress/templates
    3. Download the contents of the “Default” folder to the “bbpress” folder on your local machine
    4. Edit the files you want to change for bbPress (see bbpress-theme-template-files link under resources above).
    5. Delete any files you haven’t changed. You can skip this step if it’s confusing, but you should try to only upload files you’ve changed.
    6. FTP to ../wp/content/themes/yourtheme-child
    7. Create a folder called “bbpress” inside yourtheme-child
    8. Copy the contents of the “bbpress” folder in your local machine to the “bbpress” folder inside your child theme folder.

    Step #3: Activate your Child Theme

    Once you have created your child theme and made changes to the bbPress files in the child theme, you need to activate the child theme in order to see the changes on your site.

    1. Log into your WordPress admin panel
    2. Go to Appearance -> Themes
    3. Find your child theme. It would be the same as the “Theme Name” you gave it in the first line of the style.css you created in Step 1.
    4. Click “live preview” and make sure nothing has gone horribly wrong.
    5. Activate the child theme.

    Since you didn’t change any files from your wordpress theme, the theme for the site will be inherited from the parent theme so the only changes you should see are the changes you made to the bbpress files that you uploaded to your child theme. The only problem I encountered was that because it was a new theme, my custom “header top menu” was not associated with the theme, so I just had to go into the menu and check the box to tell it to use that custom menu as the header menu.

    #140975
    Shawn74
    Participant

    Hello,
    thanks for the tip, it’s working perfectly…now i have a picture before the Forum Title…excatly what i need…

    Anyway i need to know how to edit it’s CSS style…

    I’m using Firebug and i was able to edit the CSS style for the topic’s thumbnails to get identical as the buddypress one…with a circle box as border…
    You should see here hxxp://www.thepanicroom.it/forum/forum/panics-room-forum/

    Unfortunately when i analyze the picture your code added, i have no idea on how to find a CSS line to modify…i get only html div span body etc etc

    I tried to change the class name to ‘Thumbnail’ and i got a perfect thumbnail…. i changed it to Avatar but no result…i also declred it exactly like the Buddypress do…but nothing to do, the picture come back to the default one…

    Please sorry for my really wild and bad english 🙂

    Thank you so much…

    Stephen Edgar
    Keymaster

    You should use define(‘WPLANG’, ‘ar’); as both WordPress & bbPress Arabic translations use ar

    https://translate.wordpress.org/projects/bbpress/dev/ar/default
    https://translate.wordpress.org/projects/wp/dev/ar/default

    #140953
    artkahlich
    Participant

    Regarding the current Forum subscriptions:
    1. Do they apply only to the current forum, or to sub-forums as well? I am seeing behavior that a subscription to a forum does ”’not”’ subscribe you to all sub-forums as well. Will I and all my moderators have to go and subscribe to each sub-forum in the entire forum tree?
    2. Do they apply only to new topics? Or to ask another way, do they also apply to all of a forum’s existing topic replies? Here again, I am seeing behavior that leads me to believe that I will only get a single new topic notification, but I will have to go and ”’manually subscribe”’ to each individual topic if I want to see replies to that topic. For administrators and moderators this would be nastily inconvenient behavior.

    The wording at https://codex.bbpress.org/forum-settings/ for precisely what subscriptions do appears ambiguous to me in these areas.

    Even though RSS for the entire forum is currently implemented, I still have a great interest in a simple email subscription that is equivalent. Simply put, the reason is simplicity for my users, moderators, etc., as well as for me as an administrator/implementer. While I can setup something using the RSS feed that would generate email notifications to all my moderators, I don’t want to for a variety of reasons including time to implement and potential security holes.

    A thought: you may decide to implement both “forum local” and “forum with sub-forums” subscriptions. When unsubscribed, the links would display as:
    ”’Subscribe”’ – if there are no sub-forums
    ”’Subscribe with sub-forums”’ – if there are sub-forums (the default)
    ”’Subscribe without sub-forums”’ – if there are sub-forums (user selectable)
    where the ”’without sub-forums”’ versus ”’with sub-forums”’ are 2 faces of a toggle link (similar to your Subscribe/Unsubscribe toggle link) controlling what the ”’Subscribe”’ link in fact subscribes the user to.

    If you choose to implement only a single behavior for forum subscriptions, I am ”’strongly”’ in favor of including all sub-forum new topics and replies. I can see every bbPress site administrator and forum moderator wanting this functionality.

    I also think it extremely counter intuitive to not include existing topic replies in a forum subscription. I hope you do already, but I have not experimented with it enough to know precisely how the forum subscriptions behave.

    NB: The “unsubscribe” bug may have clouded my observations of real forum subscription behavior.

    #140885
    AtlasCatalina
    Participant

    The issue on my site had to do with a setting in WishList Member. For me I had to go to WishList Member >> Settings >> Protection Defaults and then set the “Only show content for each membership level:” and set to “No”.

    After I did that it worked.

    #140884

    In reply to: First post not showing

    AtlasCatalina
    Participant

    The issue on my site had to do with a setting in WishList Member. For me I had to go to WishList Member >> Settings >> Protection Defaults and then set the “Only show content for each membership level:” and set to “No”.

    After I did that it worked.

    #140877
    lantaarntje
    Participant

    Dear Stephen.

    That did the trick – i disabled WP United and topics has the right authors but other problems occur:

    * I can’t log out anymore – you can push the button logout but nothing happens. When you refresh – Login Screen appear. strange! – I use Buddpress & BBpress. Tempate Default Buddypress template. Before forum conversion did was still operating well.
    * When you make a reply to a topic – all the BBcodes buttons are gone.

    #140847
    Robin W
    Moderator

    The file that displays this is loop-single-forum

    wp-content/plugins/bbpress/default/bbpress/loop-single-forum.php

    You can save a version to your theme – see

    Step by step guide to setting up a bbPress forum – part 3

    item 3 for how to do this

    If you amend the current line 31

    from

    <?php bbp_list_forums(); ?>
    

    to

    <?php bbp_list_forums(array (
    		'show_topic_count'    => false,
            'show_reply_count'    => false,
    		'separator' => '',
    		));  ?>
    
    

    It will stop it displaying the numbers in brackets after each topic.

    To display these against the items will need some code at line 42 – beyond my immediate knowledge as to what you’d put there to get it to match the list

    `

    #140825
    jdawglosurdo
    Participant

    ok, now how would i change the font color to the default color?

    i basically want the sticky topics to have the same format as the normal topics.

    #140769
    Stephen Edgar
    Keymaster

    Try running the repair tool ‘Remap existing users to default forum roles’
    https://codex.bbpress.org/repair-forums/

    #140756
    Stephen Edgar
    Keymaster

    Try the ‘Remap existing users to default forum roles’ repair tool

    https://codex.bbpress.org/repair-forums/

    Also try resaving your permalink structure.

    #140737
    jdredd87
    Participant

    First of all. New to WordPress and bbPress as of yesterday.
    I am liking it very much over all. Different, but good.

    Anyways,

    When regular users login into WordPress and goto the dashboard

    The Panel “Right now in forums”

    User can click on “Topics” or “Replies”

    They will end up going to this

    http://mysite.com/wp/wp-admin/edit.php?post_type=topic

    And page just comes up with

    “Cheatin’ uh?”

    Doing searches of similar issues I ended up doing these different steps.

    Ive deactivated a member list plugin.
    Ive deactivated and reactivated the forum.
    Under Tools>Forums I ran “Remap existing users to default forum roles” without issue.
    Under Settings>Forums>Auto Role has been checked on and set to “Participant”
    I unchecked and rechecked Auto Role

    So far no go. Only my admin user can click on these.

    Any help for a newb?

    #140723
    Stephen Edgar
    Keymaster

    The ‘User Role Editor’ will not fix this issue, it has nothing to do with bbPress and will probably hinder your troubleshoot rather than helping.

    Have you tried running the ‘Remap existing users to default forum roles’ repair tool?
    https://codex.bbpress.org/repair-forums/

    #140697
    Jonas Preisler
    Participant

    Hi

    I want to to reset all user roles to default in User Roles Editor, but I don’t see that option anywhere.

    Where is it that button?

    Picture is in the link:
    http://postimg.org/image/z8kh43zpt/

    Thanks.

    Jonas

    #140685
    Stephen Edgar
    Keymaster

    Have you tried the ‘Remap existing users to default forum roles’ repair tool?
    https://codex.bbpress.org/repair-forums/

    #140677
    Josh Zandman
    Participant

    I have WP 3.8 installed.
    Using child theme of Watson Theme

    I created a page for the forum index: http://songandfilm.com/community/
    This page is not the theme’s default page, it’s the full-width page. Default page is centered.
    Index page looks great – no problems.

    When you click a forum it now goes to the theme’s default page: http://songandfilm.com/Community/forum/helpful-tips/

    Is there a way I can have all forum pages use the full-width page?

    Thanks!
    JZ

    #140675
    Aqeart
    Participant

    I’ve been using WordPress for a long time but I’m new to bbpress. I’m trying to figure how to add sidebar to my forum so that users can login or check out the latest posts from the forum. Hence I’ve decided to create a page with -forum slug so It won’t overlap default -forums slug of bbpress. I added the shortcode [bbp-forum-index] to that page and edited. Everything was working fine until I clicked on any of the forums I created. It redirected me to a page with -forums slug and breadcrumbs was on the same direction, as if shortcode was just a decoy. Unfortunately, I wasn’t very successful at altering bbpress files as I wanted. My question is about those slugs. Is there any way to override bbpress’ own page system and force it to use the page I inserted the forum code.

    Thank you

    #140642
    WPDragon
    Participant

    Hi…Hopefully someone can help me figure this out…i am fairly new, so please bare with me. 🙂

    I have researched this heavily & come across a few topics – yet there has been mixed opinions on a solution….I am trying to figure out how to create different Forum Sections to my site…a perfect example of this is: http://loreschool.com/forums/ and http://teamoverpowered.com/forums/

    By default, it seems BBPress only allows you to create (1) forum index…but, how can I create another section to split up the forum into categories – such as in those examples above?

    I noticed a Ticket for this feature was created 15 months ago…but unfortunately it keeps getting bumped & not included into BBPress….this is such a common & familiar feature in popular forums, I am surpised it is not already part of BBPress..

    Any help & response would be greatly appreciated…Thank you!

    #140600
    Hilltop
    Participant

    These responses are from many years ago and those files don’t seem to exist any more. Is it still possible to change the font size of the bbPress tag cloud? I’ve been trying various functions but cannot get it to work, and I’ve tried searching through the bbPress files for bb_tag_heat_map but cannot find that anywhere.

    The default font sizes are too big and the tags are hanging of the page of our forum. If someone can please help me to change the maximum font size for the tag cloud it would be most appreciated.

    Thanks you!

    #140591

    In reply to: Cannot create Topics

    Delete me
    Participant

    Yes Stephen and thanks. It was that. Strangely, I had to first set it back to default permlinks and save it and then set it to ‘Month/Name’ and save it again so it re-writes it back to the htaccess file to get it to work. Originally I had permlinks set to ‘Month/Name’ but obviously BBPress doesn’t pick this up on activation it seems and thus resetting permanent links is required. Interesting. Thanks.

    #140578
    bffnb
    Participant

    Hi, i need some help!

    I run my mainsite with frontend registration and frontend user profiles like: xxxxxxxxx.com/user/anyusername

    I also installed bbpress and ONLY ALLOW USERS TO REGISTER FROM THE MAINPAGE – mentioned above.
    I show the Forum in a page wiht the shortcode… the forum url is: xxxxxxxxx.com/forum/
    SO far it works great!

    My setting for the forum user profile slug is like that:
    xxxxxxxxxx.com/forum/mitglied/anyusername (“mitglied” is for “user” in german)

    My Question 🙂
    In the users FORUM PROFILE page i have on the left site under the users Profile the menu links. The first of them links to the users FORUM PROFILE like:

    xxxxxxxxxx.com/forum/mitglied/anyusername

    Now i need the same URL LINK to the users MAINSITE PROFILE wich should be like:

    xxxxxxxxxx.com/user/anyusername

    IN …..bbpress/templates/default/bbpress/user-details.php it calls the url for the USERS FORUM PROFILE with this line of code:

    <a class="url fn n" href="<?php bbp_user_profile_url(); ?>" title="<?php printf( esc_attr__( "%s's Profile", 'bbpress' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>" rel="me"><?php _e( 'Profile', 'bbpress' ); ?></a>

    How can i get the users MAINSITE PROFILE URL? (xxxxxxxxxxx.com/user/anyusername)
    I cant find anything in the bbpress and wordpress docs 🙁 or im not intelligent enough to find a solution… i think to remove the slugs from the url is not possible to get a desired url structure for the link. I think there must be a other filter function for the users MAIN SITE PROFILE url…???

    I think i must mention this:
    I already managed to show the USERS AVATAR from the MAINSITE in the forum page with this code:

    <?php $user_info = get_user_by('id', $wp_query->query_vars['author']); echo get_avatar($user_info->ID, '150'); ?>

    The avatar call works great – hope it is possible to get the USERS PROFILE URL too 🙂

    Thank you so much!

    #140559

    In reply to: Cannot create Topics

    Robin W
    Moderator

    what theme are you using – try switching to a default one eg twentytwelve and see if the issue is theme related.

    Has topics stopped working, or has never worked, or is this a new install?

    #140547
    Robin W
    Moderator

    ok, I have 2.5.1 bbpress working with WP 3.8 on a twentyten child.

    I suggest that each of you :

    Disables all of your plugins. If that fixes, re-enable one at a time to see which is causing the issue
    If disabling plugins doesn’t work, then with them disabled, switch to a default theme – twentyten, twenty eleven or twentytwelve. If that works, then your theme has an issue
    If any/none of that works, comes back and say exactly what you did
    If you get a fix, let us know what was causing it to help others

Viewing 25 results - 3,426 through 3,450 (of 6,759 total)
Skip to toolbar