Skip to:
Content
Pages
Categories
Search
Top
Bottom

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

Viewing 25 results - 576 through 600 (of 6,780 total)
  • Author
    Search Results
  • #217352
    Gunivortus
    Participant

    How can participants in the forum get to the page of their standard WP profile?
    I mean the page, which looks like the admin backend, but only shows the info of the logged in user. (I have a plugin for extended registering and logging in, but I cannot open that WordPress page with that).
    What can I use as a menu item to access to that page? Maybe a shortcode?

    #217271
    Robin W
    Moderator

    the easiest way is

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>Topics Index Styling and tick item 16 don’t show this message

    if you want to do it using FTP then

    find
    wp-content/plugins/bbpress/templates/default/bbpress/feedback-no-topics.php

    transfer this to your pc and remove

    <div class="bbp-template-notice">
    	<ul>
    		<li><?php esc_html_e( 'Oh, bother! No topics were found here.', 'bbpress' ); ?></li>
    	</ul>
    </div>

    and save (this file must exist, but we just make it empty!)

    create a directory on your theme called ‘bbpress’
    ie wp-content/themes/%your-theme-name%/bbpress

    where %your-theme-name% is the name of your theme

    Then transfer the file you saved above and put in in the directory called bbpress that you created above, so you end up with
    wp-content/themes/%your-theme-name%/bbpress/feedback-no-topics.php

    bbPress will now use this template instead of the original

    #217217
    Ricsca2
    Participant

    Very very thanks.

    I believe that if this function were default for wordpress, it would relaunch the use of the form and help make the section alive too
    comments.
    it would be nice to be able to suggest it to wordpress

    #217187

    In reply to: User Statistics

    Chuckie
    Participant

    So it calls:

            private function section_latestuser() {
                
                // Grab the latest registered user on the site
                return $this->tag_replace( $this->parent->option["title_text_latestuser"] );
            }
    

    Which in turn calls:

    
            function get_latestuser( $html ) {
                $latest_user = get_users(
                    array(
                        'number' => 1,
                        'fields' => array("user_login", "ID", "display_name"),
                        'orderby' => "registered",
                        'order' => "DESC"
                    )
                );
                
                $latest_user = reset( $latest_user );
                
                // Default display is the full name
                $name = $latest_user->display_name;
                
                if( $this->parent->option['user_display_format'] == "display_as_username" ) {
                    $name = $latest_user->user_login;
                }
                
                if( $html == true ) {
                    return "<a href=\"" . bbp_get_user_profile_url( $latest_user->ID ) . "\">" . $name . "</a>";
                } else {
                    return $name;
                }
            }
    

    I think, if “WP Approve User” is installed then we need to somehow modify the array returned to only include those where the are approved (as per my previous email).

    #217169
    Robin W
    Moderator

    find
    wp-content/plugins/bbpress/templates/default/bbpress/content-single-forum.php

    transfer this to your pc and edit

    find line 45

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

    and delete this line and save

    create a directory on your theme called ‘bbpress’
    ie wp-content/themes/%your-theme-name%/bbpress

    where %your-theme-name% is the name of your theme

    Then transfer the file you saved above and put in in the directory called bbpress that you created above, so you end up with
    wp-content/themes/%your-theme-name%/bbpress/content-single-forum.php

    bbPress will now use this template instead of the original

    #217118
    maskis
    Participant

    Thank you for your answer!

    You were right, most of my problems were due to not having sidebar on the homepage. This is now fixed!

    I encountered now more frustrating problem. When I use the shortcode above on my homepage, the forum is displayed in default template. In the actual Forum-pages the template is alternate forum template 1 (I´m using bbPress Style Pack plugin). I would like the homepage view to be alternative forum template 1 too.

    In Style Pack plugin “Not Working?” section reads as follows:

    “It’s not working !!
    It may be as simple as closing and restarting your browser, so try this first !!

    If that doesn’t work…

    Background
    Style pack works with many/most sites, but it can fail due to a myriad of reasons, including (but no means limited to) site permissions, php versions, other plugins and most often site themes where the theme author has altered bbpress files.

    This is no-ones fault – whilst I can control how bbpress performs, there are many thousands of plugins and themes, all of which may be trying to amend the same stuff as I am, and many host poviders who will have differing but equally valid permission and code versions.

    Problem finding
    1. “caching” software that speeds up the download of your site, but may not recognise and immediately make changes from my plugin

    Do you know if you are using caching software? If so then try refreshing, purging or deactivating to see if this fixes.

    If you still have the issue, we need to work out which parts are working and which not

    We need to look at 2 areas – files and css

    2. Files
    If your theme author has changed bbpress files in his theme, this will be for valid reason, which may relate to either style or functionality

    No bbpress files have been changed in the theme

    3. CSS
    If css had loaded then the text below will have a green background, if it has not loaded this will be a red background

    This sentance should have a green background

    If the background is red, then try amending the “css location” tab above

    check the activate box and set the location to
    wp-content/uploads/
    and save these changes
    and then come back and re-check this area.”

    I´m not using any cache plugin at least to my knowledge. I´ve also tried to unactivate all of the other plugins than bbPress, Style Pack and BuddyPress. This makes no difference.

    Can´t find any settings that would force the homepage view on the theme to be any different than on any other sections of my site.

    Any clues, what could I do to fix the problem?

    #217109
    Robin W
    Moderator

    bbpress doesn’t have visual editor as default

    but this link to a visual link plugin might catcah attention if more request it to the plugin authirs by adding to the post

    https://wordpress.org/support/topic/need-to-help-use-it-available-in-bbpress/

    #217108
    Robin W
    Moderator

    ok, no idea what is causing that

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentytwenty, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

    #217094
    quix8
    Participant

    Thanks for this post, But I think for

    6. Load the style sheet after bbpress

    The correct way is this:

    /**
     * load custom bbpress css after bbp default css
     */
    wp_enqueue_style( 'custom-bbpress', get_stylesheet_directory_uri() . '/css/custom-bbpress.css',array('bbp-default'),'1.1','all');
    #217060
    Robin W
    Moderator

    if you mean amend the ‘topics started, relies created’ etc, menu, then this is in the template

    \templates\default\bbpress\user-details.php which you can amend and put in a bbpress directory in your child theme

    eg…

    find
    wp-content/plugins/bbpress/templates/default/bbpress/user-details.php

    transfer this to your pc and edit to what you want

    and save

    create a directory on your theme called ‘bbpress’
    ie wp-content/themes/%your-theme-name%/bbpress

    where %your-theme-name% is the name of your theme

    Then transfer the file you saved above and put in in the directory called bbpress that you created above, so you end up with
    wp-content/themes/%your-theme-name%/bbpress/user-details.php

    bbPress will now use this template instead of the original

    #217047
    bs981
    Participant

    Hi,

    I have registered an account on bbpress. I received email with password set option. I have set the password correctly.

    However, when I try to log from this section, it doesnt show anything when I click login after entering my username/password created.

    When I try to login, I am specifically login from the form created by BBPRESS (not default wordpress login)

    https://ibb.co/SNntGYLlogin

    This is the link where login form for bbpress can be accessed: https://www.helios7.com/vlog/forums/

    After I click login it does not take me anywhere or show I am logged in. Despite entering login details it keeps showing me login window.

    HOpe I am able to explain my problem

    #216874
    maxlevel
    Participant

    Hi Robin,

    As far as I understand that add-on it is useful when I want to create bbPress pages from scratch.
    This is not what I want.
    I am totally happy with the default design of bbPress that my theme delivers.
    The only thing I am missing is a right sidebar on all forum pages.

    I know that may sound quite complicated when you are not familiar with the way the Elementor Theme Builder works. It basically replaces all the header, footer, page and post templates of a theme. Every template has Display Conditions where it should appear (what it should replace). At least that’s how it’s supposed to work.

    I just can’t get the Elementor Theme Builder to apply the page template with the right sidebar to all of the forum pages but only to the forum page that lists all of the topics.

    My suspicion is that Topics are another post type than Forums and that is why the template only applies to “forums” posts but not to “topics” posts. “Forums” is the only display condition I can choose in the Elementor Theme Builder so maybe the other types are just missing.

    Hope that makes sense.

    #216858
    michaelgoal
    Participant

    Thanks,
    My mission is to overwrite the default category.
    On the page where i can create a new post i have the parent ID in the URL like ?vis=92
    Then i want to make a function, so i can add the category related to the parent ID, to the new post.
    It means that i will overwrite the default category.
    Any ideas how this function should look like?

    I know its a wp subject now. Maybe i should move it to the wp forum?

    #216842
    simonlepamplemousse
    Participant

    I have to re-explain that even reinstalling bbpress, setting the default theme, and disabling any other plugins, the action of subscribing to a forum doesn’t work.

    Very precisely, on the forum in question it is clearly indicated Subscriber. But in bbpress profile, the Subscriptions page does not indicate any forum and there is no notification.

    Suddenly, I dry

    #216825
    Robin W
    Moderator

    If you wish to change bbpress templates, you only need worry about those you want to change for instance if you wished to change user-details.php you would

    find
    wp-content/plugins/bbpress/templates/default/bbpress/user-details.php

    transfer this to your pc and edit

    and save

    create a directory on your theme called ‘bbpress’
    ie wp-content/themes/%your-theme-name%/bbpress

    where %your-theme-name% is the name of your theme

    Then transfer the file you saved above and put in in the directory called bbpress that you created above, so you end up with
    wp-content/themes/%your-theme-name%/bbpress/user-details.php

    bbPress will now use this template instead of the original

    #216820
    yt
    Participant

    Hello
    Thanks for your solution.
    Please tell me in which file of my site’s theme or plugins\bbpress\templates\default must use?

    #216780
    Robin W
    Moderator

    both the top and bottom login links are the default login, they were there to start with

    which probably suggests they are theme related.

    bbpress just passes details to WordPress login, and if the theme is also using WordPress login, it may well be that on a single page you have 3 things sending info to WordPress authorisation, so any one might send an ‘after login’ redirect, and it might be different dependant on which is completed.

    If you also have membership plugins active, then these might also catch a login and do a redirect.

    computers are consistent (often annoying so!) so it might be either different logins, or other changes you are making to membership that are affecting.

    I’d start by stripping back and working out what is doing what.

    so

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentytwenty, and see what changes.

    Plugins

    If that doesn’t work, also deactivate all plugins, and see what the login at the top and bottom do. Then add bbpress and see what changes.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

    #216771
    Robin W
    Moderator

    ok, I can only suggest you look at possible conflicts

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentytwenty, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

    #216709
    Robin W
    Moderator

    2.5 should upgrade quite easily, so either your upgrade has failed, or you have another issue.

    new versions of bbpress are unlikely to help, as tens of thousands of bbpress users are already at 2.6.6 without problem.

    I can only suggest that you create a copy of your site that you can test in and then

    Themes

    As a test switch to a default theme such as twentytwenty, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    You can use the ‘troubleshooting’ features of this plugin to let you test without affecting needing to deactivate lots of plugins

    Health Check & Troubleshooting

    #216700
    Robin W
    Moderator

    always learning – I’ve never considered that a plugin would stop caching to mobiles 🙂

    Basically it is extra code to not cache mobiles – you have to find out what the http request is coming from and then stop the default cached request. you need to have a list of mobiles to work this out.

    Normally you would only do this if your mobile site needed different output, rather than not be cached!

    So seems that your plugin is really just a shop door to a paid product.

    I’ve always used w3 total cache, but then it was the first one I picked many years ago, and it seems to work fine, so I just keep using it.

    it does have the ability to turn off mobile caching, use a different theme, or redirect to a different site.

    #216661
    pflanzenoma
    Participant

    Hello Robin,

    the unread/read Icon is not displayed, neither the default ones of bbp Style Pack nor the pictures I defined with complete URL.

    How can I switch them on?
    Site: exoten-forum.de/site

    greetings
    Pflanzenoma

    #216638
    pflanzenoma
    Participant

    No, that didn’t work either. I’m configuring here on my Computer and we tested it with my husband’s phone, that had no contact to the site before.

    I can also test it by moving the “Align Default Max Width” adjuster in the General Options Menu of the Theme’s customizer.

    #216533
    confusedneedhelp
    Participant

    No, it is not the browser cache. Can you confirm that when you load the Edit Profile page that the inputs and the HIDE and CANCEL buttons are not visible? For me they are visible on page load and I thought the default was that they are hidden and only appear when you click GENERATE PASSWORD.

    #216341
    Robin W
    Moderator

    ok, just tested and my original code works fine on my test site.

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentytwenty, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

    #216233
    Robin W
    Moderator

    try

    dashboard>settings>permalinks and just click save – that resets the permalinks

    If that does not work, then it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentytwenty, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

Viewing 25 results - 576 through 600 (of 6,780 total)
Skip to toolbar