Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 18,426 through 18,450 (of 64,516 total)
  • Author
    Search Results
  • #152700

    In reply to: Which need I use?

    Robkk
    Moderator

    1. to get a full-width forums, you need to create a bbpress.php more information in this link

    https://codex.bbpress.org/theme-compatibility/getting-started-in-modifying-the-main-bbpress-template/

    after you create a bbpress.php from your page.php just delete the sidebar code that should say like
    <?php get_sidebar in the template.

    2. You can follow this tutorial on this website to replace the voice count with a views count.

    Adding Topics View Counter in BBPress

    there are other ways to display views in bbpress also like by using this plugin

    https://wordpress.org/plugins/bbpress-simple-view-counts/

    3. Are you talking about the layout of the reply author area on ip board where it shows an image based on user role and the total post count of the user??

    images based on forum role i cant find a solution just yet , might post solution later . Its most likey just going to include alot of conditionals based on forum role.

    total post count for users is easy, you can easily just use robins plugin

    https://wordpress.org/plugins/bbp-topic-count/

    #152699
    arno8
    Participant

    Still no clue where to add `$reply_id = bbp_get_reply_id( $reply_id );
    $abc_role = bbp_get_user_display_role( bbp_get_reply_author_id( $reply_id ) );`

    I tried on the location where u said, like this:

    <div id="post-<?php bbp_reply_id(); ?>" class="bbp-reply-header">
    $reply_id = bbp_get_reply_id( $reply_id );
    $abc_role = bbp_get_user_display_role( bbp_get_reply_author_id( $reply_id ) );
    	<div class="bbp-meta">
    
    		<span class="bbp-reply-post-date"><?php bbp_reply_post_date(); ?></span>
    
    		<?php if ( bbp_is_single_user_replies() ) : ?>
    
    			<span class="bbp-header">
    				<?php _e( 'in reply to: ', 'bbpress' ); ?>
    				<a class="bbp-topic-permalink" href="<?php bbp_topic_permalink( bbp_get_reply_topic_id() ); ?>"><?php bbp_topic_title( bbp_get_reply_topic_id() ); ?></a>
    			</span>
    
    		<?php endif; ?>
    
    		<a href="<?php bbp_reply_url(); ?>" class="bbp-reply-permalink">#<?php bbp_reply_id(); ?></a>
    
    		<?php do_action( 'bbp_theme_before_reply_admin_links' ); ?>
    
    		<?php bbp_reply_admin_links(); ?>
    
    		<?php do_action( 'bbp_theme_after_reply_admin_links' ); ?>
    
    	</div><!-- .bbp-meta -->
    
    </div><!-- #post-<?php bbp_reply_id();?>-->

    But this just shows the custom code on the website instead of running it.

    please help on this šŸ™‚

    #152698
    darrenabidris
    Participant

    ’d be grateful for some help.

    I’ve recently set-up a wordpress site using version 4.0. The theme is twenty eleven (I’ve tried other themes as well). So far, I’ve haven’t added any content or plugins.

    The only thing I’ve tried to add is bbpress (Version: 2.5.4).

    After adding this plugin I get a ā€œFatal error: Out of memoryā€. I’ve contacted my hosting company and they’ve increased the memory limit to 256M by adding define(ā€˜WP_MEMORY_LIMIT’, ā€˜256M’); in wp-config.php. I’ve uninstalled and re-installed bbpress but still get the out of memory error.

    I’d be grateful for any help in resolving this problem.

    Many thanks,

    Darren

    #152696

    In reply to: Which need I use?

    Icaroferreira
    Participant

    About the forum IPS (IP.Board) – http://www.invisionpower.com/apps/board/

    3 items he has, and I would like my bbPress has:

    1. It is wider, has no sidebar, leaving the larger forum.

    2. In the list of topics, the number of responses and the number of visits, example, had 300 views and 4 responses appears.

    3. When you put a message on the left side of the screen where the image is and the user’s name appears just below the image the following items:
    If it is user Common, Moderator or Administrator, AND, number of posts already posted in the user forum.

    #152694
    Robkk
    Moderator

    -well i have not tried this but to disable any link on a post appearing you can go to settings>disscussion and then change the number of links to 1. So that you arent totally stripping links and only trying to only allow approved links like youtube.com from appearing.

    Hold a comment in the queue if it contains [1] or more links. (A common characteristic of comment spam is a large number of hyperlinks.)

    yes i know this is usually for comments but ive read some of these settings are either working on bbpress now or in the future.

    -you can also just strip the links from either working by using this function.
    plop it into your child themes funcitons.php or a functionality plugin.

    add_filter( 'bbp_kses_allowed_tags', 'ntwb_bbpress_custom_kses_allowed_tags' );
     
    function ntwb_bbpress_custom_kses_allowed_tags() {
    	return array(
     
    		// Links
    		'a'          => array(
    			'class'    => false,
    			'href'     => false,
    			'title'    => false,
    			'rel'      => false,
    			'class'    => false,
    			'target'    => false,
    		),
     
    		// Quotes
    		'blockquote' => array(
    			'cite'     => true,
    		),
     
    		// Span
    		'span'             => array(
    			'class'     => true,
    		),
    		
    		// Code
    		'code'       => array(),
    		'pre'        => array(
    			'class'  => true,
    		),
     
    		// Formatting
    		'em'         => array(),
    		'strong'     => array(),
    		'del'        => array(
    			'datetime' => true,
    		),
     
    		// Lists
    		'ul'         => array(),
    		'ol'         => array(
    			'start'    => true,
    		),
    		'li'         => array(),
     
    		// Images
    		'img'        => array(
    			'class'    => true,
    			'src'      => true,
    			'border'   => true,
    			'alt'      => true,
    			'height'   => true,
    			'width'    => true,
    		),
     
    		// Tables
    		'table'      => array(
    			'align'    => true,
    			'bgcolor'  => true,
    			'border'   => true,
    		),
    		'tbody'      => array(
    			'align'    => true,
    			'valign'   => true,
    		),
    		'td'         => array(
    			'align'    => true,
    			'valign'   => true,
    		),
    		'tfoot'      => array(
    			'align'    => true,
    			'valign'   => true,
    		),
    		'th'         => array(
    			'align'    => true,
    			'valign'   => true,
    		),
    		'thead'      => array(
    			'align'    => true,
    			'valign'   => true,
    		),
    		'tr'         => array(
    			'align'    => true,
    			'valign'   => true,
    		)
    	);
    }

    you might just delete all of the code specified for the a tag too and you will be fine

    delete

    // Links
    		'a'          => array(
    			'class'    => false,
    			'href'     => false,
    			'title'    => false,
    			'rel'      => false,
    			'class'    => false,
    			'target'    => false,
    		),
    #152693
    Robkk
    Moderator

    well you can check out this topic and maybe it will help

    How to change Admin Reply

    when schmoos code has .user-id-1 well thats the id of the user

    go to user>all users search for all your sites keymasters.

    then click edit by each users avatar

    after that you are in the edit profile page for that particular user and in the url it says user_id=(number)

    get all the user id numbers and then you can stack them using commas in a css code like this

    .type-reply.user-id-1,.type-reply.user-id-2,.type-reply.user-id-3 { background: yellow; }

    Robkk
    Moderator

    i liked https://wordpress.org/plugins/oa-social-login/ before i went to another solution
    im not sure if it has integration with bbpress or not though.
    and this requires an account to their website.

    https://wordpress.org/plugins/loginradius-for-wordpress has bad support and i couldnt get the plugin to work well when i tried it.

    you can also find some paid social login plugins in codecanyon , im for sure there is one that offers social login and has compatibility with bbpress. I think it cost like 28 dollars or something close to that.

    #152689
    Robkk
    Moderator

    for registration add a captcha plugin either of these examples should be fine.

    https://wordpress.org/plugins/bbpress-recaptcha/
    https://wordpress.org/plugins/wp-math-captcha/

    to help fight spam some security plugins help , some offer some kind of firewall rules to block bots, and also a honey pot for a sites registration form.

    Top 10 Security Plugins For WordPress 2014

    -recommended plugins (do research and choose ones that you want)
    akismet(you should already have this)
    all one wp security and firewall
    wordfence security
    bruteprotect
    ithemes security
    any plugin that provides captcha.

    #152687

    In reply to: Moderators

    Robkk
    Moderator

    well i think bbpress in the future will have more functionality for moderators.

    i think its assigning one to each forum or something like that, cant remember much.

    what kind of panel of controls should moderators have, like explain a little more??

    #152683
    Robkk
    Moderator

    @pavle123

    I understand that man, I would rather have this as a plugin or just a template for my forums opposed to a theme, as I do not want to change a theme.

    well if i make a child theme you can just take whatever code is in the templates and the bbpress.css file i have.

    I know this info about quicksprout because I am an active member of a community and it has been mentioned by the owner (i think there is even a sticky post about forum cost since many people ask this over and over).

    J just saw the topic , it even says he plans to spend 20,000 when its all set and done. When I really looked at it I can see there is some modified plugins like bbpress direct quotes and new ones like how it has reputation under each user, but c’mon 20,000!!!

    What I do not like about their theme is that you have to click on the subforms in order to see if there is a latest post already there.

    well i like to keep some freshness stats when the forum is mobile. And how i have it right now is the latest post time goes to the latest topic in that forum.

    #152682

    In reply to: Full Width Forum Pages

    Robin W
    Moderator

    that’s a bit of styling needed

    add

    #bbpress-forums {
    margin: 25px !important;
    width: 960px !important;
    }

    to your theme’s style sheet, or preferably to your child theme

    Functions files and child themes – explained !

    #152681
    joseph33333
    Participant

    hello friends i am new in bbpress. I want small help please guide me how to disable hyperlinks and how to avoid url posting in forum

    #152680
    JBBoY
    Participant

    Hello,

    I’ve seen there is a plugin called “bbpress moderation suite” with these features but I cannot find it! anyone knows where to find it, or another plugin that blocks users for a given time?

    Thank you very much in advance!

    #152675
    fr33_soul
    Participant

    Hi,

    i know maybe this question was made a lot but i did find nothing ab that.
    I use .html on PAGES plugin which works good with the site but not with bbpress.
    My bbpress categories and topics still have the slash at the end of the url.
    How can I add the .html extension url at the end of every bbpress url?

    #152671
    amolmohite
    Participant

    Hi,
    I am using WordPress version is 3.8.4
    and bbPress version is 2.5.3

    Search is not working properly. please help me u have any idea.
    URL: http://pivotaldesign.biz/demo/meramagarpattacity/forums/

    #152666
    ernstl
    Participant

    Hi Folks,

    i came across the same problem. To prevent bbpress adding a prefix ala “Forum: lalala” to the meta title do this:

    function my_generate_titles( $new_title ){
            // reset the format to title only
    	$new_title['format'] = '%s';
    	return $new_title;
    
    }
    add_filter( 'bbp_before_title_parse_args', 'my_generate_titles' );


    @saulmarq
    you can query your title data within the function and set the $new_title[‘text’] var with the value you want to display

    Rgds from Germany,
    ernstl

    #152665
    selenii
    Participant

    How can I change the template for ther forum page?

    Exampel /forums/forum/bbpress/

    #152664
    vizcano
    Participant

    i dont know what you are talking about Millerzoe….

    thanks to an aswer of shanebp. in the buddy press help section i came out with the solution.

    i am a rookie so i didn’t know the basics on how to use buddy press with bbpress…

    so maybe a rookie can find this helpfully

    this is what i did.

    i went to bbpress.
    i created a forum called general public and another called vip section

    then i went buddy press group section and i created a group called vip, here is the thing. the group doesn’t make a forum. you must make it firt. in this example i took the vip section forum.

    this were my steps

    1) in FORUM. i created:

    *general public forum (the one everyone must be able to see and participate) has the standard settings
    *vip section forum (the one only for the people of the vip group) has this settings: tipe: forum; State: Open; visibility: Private

    2) in GROUPS. i created a new group called VIP

    this were the settings, Is a Hidden Group. and invitations can only be given by admins and moderators

    in this way:
    – when people is not logged in they can only see the general public forum.
    – when they logging they can participate in the general public forum, they can see the private vip section forum but they cannot participated in it (i wanted that they would see it neither but this is how it works) in other words, they can see the group forum (vip section) but they cannot see whatĀ“s inside.
    – when a member of the vip group logging they can see and participated in bouth forums.

    #152661

    Topic: Which need I use?

    in forum Plugins
    Icaroferreira
    Participant

    Hi,

    Which plugins I need to use to leave my bbPress more robust, similar to IP.Board. I need to have the control panel for moderators and several other similar things with IP.Board.

    Help me, Please.

    Best Regards,
    Icaro

    #152658
    Robkk
    Moderator

    i know

    I have created a bbPress starter theme with a phpBB look and feel

    I have created a bbPress starter theme with a phpBB look and feel

    #152657

    In reply to: CSS Plugin

    Robin W
    Moderator

    Developers: please… design a simple plugin for people like me. A very-simple-plugin that allows me to change colors, fonts and two or three things more. I would be help a lot to BBPress users than don’t know how to use CSS.

    It’s on my list of things to do when I get some time – agree it would be really useful, but I need to learn a bit more about how to get plugins to write css !

    #152656

    In reply to: Full Width Forum Pages

    Robin W
    Moderator

    Ok, you’ll need to copy this and rename it bbpress as per the above

    As this is a theme file, I’m having to guess a bit about what it is doing, so this may or may not work.

    So once you have this as bbpress.php

    delete

    $is_page_builder_used = et_pb_is_pagebuilder_used( get_the_ID() );
    

    and replace it with

    $is_page_builder_used = TRUE ;
    

    come back and let us know if that works

    #152650

    Topic: Css Error

    in forum Troubleshooting
    Andrea Grillo
    Participant

    Hi,

    i found an error in your css file. I read this media query:


    @media
    screen and (max-device-width: 480px), screen and (-webkit-min-device-pixel-ratio: 2) {
    -webkit-text-size-adjust: none;
    }

    This rules does’nt work because it is semantically incorrect.
    Normally the plugin works fine but if you try to minify your css file (I tested it with w3 total cache), the minify file generates an error and doesn’t work correctly.

    Please, can you fix this ?

    Thanks

    Andrea

    P.s.: I found this error on bbpress and buddypress wordpress plugins.

    #152648
    arno8
    Participant

    Im not using phpbb, im using bbpress

    #152645
Viewing 25 results - 18,426 through 18,450 (of 64,516 total)
Skip to toolbar