Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 7,326 through 7,350 (of 32,522 total)
  • Author
    Search Results
  • #169131

    In reply to: Confusing breadcrumb

    Pascal Casier
    Moderator

    Well, something is wrong with your setup. To go easy ? I would just remove the ‘Forums’ part in the breadcrumbs.
    Option 1: Add this to a child theme, in your functions.php or in a plugin:

    function pc_breadcrumb_changes($args) {
    	$args['include_root'] = false;
    	return $args;
    }
    add_filter('bbp_before_get_breadcrumb_parse_args', 'pc_breadcrumb_changes');

    Option 2: Install the bbP-Toolkit plugin and just tick the option to remove ‘Forums’.

    Pascal.

    #169125
    tellermario
    Participant

    How to create a forum per page true shortcode and not to see other forums created on other pages? Without the need of user registration.

    #169123
    Brevi
    Participant

    Hello!

    I would like to try bbPress forum because of it’s WordPress integration and the advantages that would come with that.

    I currently have a Simple Machines Forum (SMF) with the following statistics:

    Total Members: 98
    Total Posts: 9924
    Total Topics: 1519
    Total Categories: 4
    Total Boards: 34

    Version of SMF: 2.0.11 (Current)
    Version of WordPress: 4.3.1 (Current)
    Version of bbPress: 2.5.8 (Current)

    I’ve read the guide of importing forums here: https://codex.bbpress.org/getting-started/importing-data/import-forums/

    Based on that I’m fairly certain I followed the steps right. I have the server (localhost), the database, the prefix and user added in the import tool. The processing gets stuck at the following point (tried several times):

    Converting topics (57 – 57)

    I did try with ‘Row Limit’ 1 and also tried ‘Delay Time’ between 1-30, but that did not make a difference. I tried to Stop / Start it a few times… nothing.

    I’m not an expert with MySQL databases, so I don’t think I can manually edit the row which is causing the problem.

    Can anyone help with this please?

    #169120

    In reply to: Confusing breadcrumb

    rigpa1
    Participant

    http://www.chilidating.com

    When I set the Forum Root to love-questions I get an empty page even though I have a page called love-questions with the shortcode [bbp-forum-index]. The url says (correctly) http://www.chilidating.com/love-questions/ but shows a blank page.

    If I set the forum slug to “forums” I get the right URL and I see the forum page. If I go to a sub forum I get this Breadcrumb: Chili Dating › Forums › Dating

    The first Chili Dating goes to the frontpage but the next > Forums goes to a blank page called forums. Even though I create a page called forums and put the shortcode in there I get a blank page. I cant make it work…

    #169119
    dayan89
    Participant

    Hi

    I’ve tried following function (in functions.php of my theme) to increase pagination, but it doesn’t work:

    function bbp_increase_pagination($args) {
        $args['end_size'] = 5;
        $args['mid_size'] = 5;
        return $args;
    }
    add_filter( 'bbp_topic_pagination', 'bbp_increase_pagination' );

    I still have same pagintation:

    What’s the problem?

    #169114
    Pascal Casier
    Moderator
    #169112
    Pascal Casier
    Moderator

    Hi,
    You can start from here: https://codex.bbpress.org/getting-started/troubleshooting/blank-pages/
    If it did not help, just get back.
    Pascal.

    #169106
    Pascal Casier
    Moderator

    As said above:
    For your plugins, you should activate them from your ‘Admin panels > Plugins > Installed Plugins’ and then you can start tuning the options (in most cases under ‘Admin panels > Settings’ or ‘Admin panels > Tools’.
    If they do not work, then you need to ask on the forums of those plugins.

    For the avatars, you can start reading here: https://codex.bbpress.org/getting-started/faq/user-avatars/

    Pascal.

    #169100
    Toni
    Participant

    Gee, this has happened again. I keep forgetting what I am doing.

    I had a page with shortcode, then I changed the page name and slug. Now I have a generated page without content.

    http://toni-esl.com/eslforum/write/

    #169092
    Pascal Casier
    Moderator

    Well, for finding the help and responses, I hope you’re not disappointed.
    Please note that WordPress runs best on PHP 5.6 and higher (you seem to use 5.5) : https://wordpress.org/about/requirements/

    – Have you run all the repair tools of bbpress after import to be sure your structure is optimized ?
    – Have you deactivated any not-needed plugin ? Is your theme ready for bbPress ?
    – Are you using any cache mechanism to improve speed where possible ?
    – Did you try to run performance tools like the P3 plugin performance profiler to narrow down the possible slow parts ? Or gtmetrix.com as starting point ?

    Some further reading: https://codex.bbpress.org/getting-started/improving-performance/

    Also note that in the upcoming bbPress v2.6 (hopefully before the end of this year), a lot of focus went on possible performance issues.

    Hope it helps,
    Pascal.

    #169091
    Jules
    Participant

    Hi Pascal, thank you for your reply. This css is to hide the default Divi sidebar that is called on single post types. I’ve tried commenting out that code and it still doesn’t resolve the issue?

    #169090
    Pascal Casier
    Moderator

    Hi,
    You seem to have this one somewhere:

    .forum-archive, .single-forum #sidebar {
      display: none!important;
    }

    It’s blocking the whole view.

    It’s a style in your divi master theme.

    Pascal.

    #169089
    AilyRoot
    Participant

    well, I am 1000% sure it is bbpress (or wordpress) ‘s codes issue

    Dedicated server
    Intel SSD
    48G ram
    PHP 5.5
    MySQL 5.6

    We were at invisionboard forum system(ZERO issues on this) , with wordpress+bbpress, it hangs even we just try to trash 10 topics….

    reason why I move to wordpress+bbpress? better integration and easier to find someone to help

    #169081
    AdventureRidingNZ
    Participant

    This looks great, I just tried it on my forum and it works on categories but not on forums.
    I’m running latest WP, BBPress, BuddyPress versions with the Brickyard theme and the code is installed in my theme’s functions.php file..

    Cheers
    Eddie
    http://www.AdventureRidingNZ.co.nz

    #169071
    Robkk
    Moderator

    Add it to your child themes functions.php or in a plugin that can hold custom php code snippets like functionality.

    Remember this probably doesn’t do exactly how you want. Because I am not entirely sure why you would want to put a simple input box for the admins to output an image, I am sure there might be some a plugin to output an image profile field for BuddyPress out there. Basically I just gave you some example code that you may need to edit to customize it to your needs.

    #169068
    TKServer
    Participant

    I’ve been working quite a lot on this threaded view format. This is coded all outside of bbpress, but uses many of bbpress’s functions.

    Ute Fan Board

    #169065
    Pascal Casier
    Moderator

    Hi,
    For your question about ‘arange my sub-forum verically instead of horizontal’, you can add this code in a child theme or your own plugin or functions.php file (Remove the // twice if you also want to hide the counters):

    add_filter('bbp_after_list_forums_parse_args', 'bbppc_bbpress_list_forums' );
    function bbppc_bbpress_list_forums() {
    	$args['separator']        = '<br>';
    	// $args['show_topic_count'] = false;
    	// $args['show_reply_count'] = false;
    	return $args;
    }

    For your plugins, you should activate them from your ‘Admin panels > Plugins > Installed Plugins’ and then you can start tuning the options (in most cases under ‘Admin panels > Settings’ or ‘Admin panels > Tools’.

    Pascal.

    #169054
    Robkk
    Moderator

    Still not entirely sure how this will rank image will function since I think you are just allowing users to input a custom image url, but here is an example using BuddyPress xprofile fields. It grabs the available field called “Rank” and displays the content after the reply author details.

    function rkk_display_rank_image () {
        $user_rank = xprofile_get_field_data( 'Rank', ( bbp_get_reply_author_id ( bbp_get_reply_id() ) ) );
        echo '<div class="bbp-rank-image">';
        echo '' . $user_rank . '';
        echo '</div>';
    }
    add_action ('bbp_theme_after_reply_author_details', 'rkk_display_rank_image');
    #169053
    lissyhunnybee
    Participant

    I use the bbp style pack plugin with this shortcode in a widget to display just like that:

    [bsp-display-topic-index show='4' template = 'short']

    You can see on my home page how it displays. Mine is only set to show 4 but you can have it show however many you like.

    http://www.lissyhunnybee.com/

    #169051

    In reply to: Avatar Size

    Robkk
    Moderator

    You can customize the <?php bbp_reply_author_link(); ?> and add more attributes to it like what is explained in this guide.

    bbp_reply_author_link

    The functions you found, show the default arguments set for the links.

    #169049
    Robkk
    Moderator

    bbPress 1x standalone is not going to work with any new WordPress plugins, unless you use custom code to allow it to somehow.

    The plugin list labeled Legacy on this site, is for plugins that with bbPress 1x. The plugins section on this site, pulls plugins that work with bbPress on wordpress.org, are plugins that work with the plugin version of bbPress 2.

    Your users do not really have to type a code?? They just they could just type regular smilies in text and it would output to the icon.

    :) :( :P

    Also I just told you, WordPress has smilies and emojis that you can use. The bbPress plugin can use WordPress’s library too. SO you may not need a plugin.

    I am guessing you want something like a custom quicktag button that will show a dropdown of the smiles on your site. I can create a ticket for this if you want, and then we can see what the devs think of trying to add this to core.

    #169042
    deanhills
    Participant

    Apologies about bumping the thread. I was new to the forum. I tried BBPress as standalone first and that didn’t want to work with the WP plugins. I then made it part of a WP Website, and that didn’t work for the smiley plugin WP-Monalisa. Suggest that it should at the very least be removed from the bbPress list of plugins as it is listed here. AND it didn’t work for my stand alone Website.

    I really don’t want my visitors to have to type a code first before I see the smiley. I want it as one would find everywhere else in real forums. Without a plugin. I also don’t want to code it. WordPress is supposed to be for people who don’t have to get under the dashboard, preferably stay out of it. I spent probably a few hours last night researching this and I know for a fact I’m not the only one asking WordPress and especially bbPress to add smileys to people who make posts without having to load a plugin for it – or in the very least create a dedicated plugin by the developer of the bbPress that works at the time of downloading the stand alone software or WP Plugin.

    #169040
    Robkk
    Moderator

    @kiss_the_sky

    Not entirely sure what the exact code is.

    I think it is caching the forums using the transient api. That plugin I mentioned definitely has this type of feature though, uses a custom query I think.

    https://codex.wordpress.org/Transients_API

    Momshof
    Participant

    Hello Robkk. Thank you for responding. I am fairly new to creating a site & do not have the knowledge base yet to create the code for this to happen. I was hoping someone more knowledgeable than I may have already written this code for their site & would share the info.

    I am running Divi by ET which allows me to insert code into an epanel so I would not have to dig into files & take the risk of destroying anything for that end.

    Thank you for the link. I had not come across that tutorial info before.

    #168994

    In reply to: Avatar Size

    lissyhunnybee
    Participant

    I have found that the following files have functions that might be making the size stick no matter what

    From bbpress\includes\topics\template.php

    function bbp_get_topic_author_link( $args = '' ) {
    
    		// Parse arguments against default values
    		$r = bbp_parse_args( $args, array(
    			'post_id'    => 0,
    			'link_title' => '',
    			'type'       => 'both',
    			'size'       => 80,
    			'sep'        => '&nbsp;',
    			'show_role'  => false
    		), 'get_topic_author_link' );

    And from bbpress\includes\replies\template.php

    function bbp_get_reply_author_link( $args = '' ) {
    
    		// Parse arguments against default values
    		$r = bbp_parse_args( $args, array(
    			'post_id'    => 0,
    			'link_title' => '',
    			'type'       => 'both',
    			'size'       => 80,
    			'sep'        => '&nbsp;',
    			'show_role'  => false
    		), 'get_reply_author_link' );

    If someone could write me a function for just the size part perhaps that would work? I don’t know enough to be able to write one myself lol

Viewing 25 results - 7,326 through 7,350 (of 32,522 total)
Skip to toolbar