Robkk (@robkk)

Forum Replies Created

Viewing 25 replies - 3,026 through 3,050 (of 3,784 total)
  • @robkk

    Moderator

    adds some pictures and add more details on what you might want.

    im sure though it might be some custom development.

    and you might need to hire a dev at http://jobs.wordpress.net to devlop this for you.

    @robkk

    Moderator

    post a link to a topic page that should have replies and ILL see if i can find some CSS that might be causing the issue.

    @robkk

    Moderator

    yeah that’ll do it , or just installing this

    https://wordpress.org/plugins/bbpress-enable-tinymce-visual-tab/

    @robkk

    Moderator

    try this code from this link

    https://gist.github.com/ntwb/7864894

    and rename the ones you want

    add_filter( 'bbp_get_dynamic_roles', 'ntwb_bbpress_custom_role_names' );
    
    function ntwb_bbpress_custom_role_names() {
    	return array(
    
    		// Keymaster
    		bbp_get_keymaster_role() => array(
    			'name'         => 'My Custom Keymaster Role Name',
    			'capabilities' => bbp_get_caps_for_role( bbp_get_keymaster_role() )
    		),
    
    		// Moderator
    		bbp_get_moderator_role() => array(
    			'name'         => 'My Custom Moderator Role Name',
    			'capabilities' => bbp_get_caps_for_role( bbp_get_moderator_role() )
    		),
    
    		// Participant
    		bbp_get_participant_role() => array(
    			'name'         => 'My Custom Participant Role Name',
    			'capabilities' => bbp_get_caps_for_role( bbp_get_participant_role() )
    		),
    
    		// Spectator
    		bbp_get_spectator_role() => array(
    			'name'         => 'My Custom Spectator Role Name',
    			'capabilities' => bbp_get_caps_for_role( bbp_get_spectator_role() )
    		),
    
    		// Blocked
    		bbp_get_blocked_role() => array(
    			'name'         => 'My Custom Blocked Role Name',
    			'capabilities' => bbp_get_caps_for_role( bbp_get_blocked_role() )
    		)
    	);
    }

    @robkk

    Moderator

    @freeshark123

    i work on bbPress on WAMP all the time and it works fine for me.

    could it be a theme issue?? try switching to a default theme like say twenty twelve.

    @robkk

    Moderator

    try to find a plugin issue first

    deactivate your plugins one at a time with bbPress still active and see if any of them are causing the issue with bbPress.

    switch to a default theme temporarily to see if its functions in your theme causing the issue.

    come back with results

    @robkk

    Moderator

    @attuoz

    since the bbpFauxData plugin doesnt work use the other ways listed in the article @sam-rohn posted.

    especially use the XML file that was in the trac ticket he linked here

    https://bbpress.trac.wordpress.org/ticket/2516

    i think you need to the wordpress importer plugin to use the data from the XML file.

    @robkk

    Moderator

    We have installed the latest bbPress + latest WP on our site. Also we have Disqus if this matter.

    yeah Disqus not really

    We read that bbPress is integrated with ‘Discussion’ settings from WP installation.

    well it does but only the comment blacklist and comment moderation , not anything else yet.

    more info on this link.

    (codex.bbpress.org/moderation-and-blacklisting/)

    No answer here? Perhaps a plugin?

    sorry its the holidays in the U.S. , we are spending time with families.

    there is a plugin though!

    https://wordpress.org/plugins/bbpressmoderation/

    In reply to: CSS issue

    @robkk

    Moderator

    try this

    add this code anywhere you can put custom css

    li.bbp-body div.hentry {
    margin-bottom: 0;
    overflow: hidden;
    padding: 0px !important;
    }

    @robkk

    Moderator

    does the footer do anything important at all in bbpress inherently?

    not really, its just for design really.

    like bbpress.org doesnt even show the footer for the forums , topics , and replies loops.

    and the file loop-forums.php is only for the forum archive page, so it only shows up on that page.

    @robkk

    Moderator

    the loop-forums.php file you downloaded from github

    and in the same file you can change word Freshness to whatever you want.

    just change this

    <li class="bbp-forum-freshness"><?php _e( 'Freshness', 'bbpress' ); ?></li>

    to something like this for example.

    <li class="bbp-forum-freshness"><?php _e( 'Last Post', 'bbpress' ); ?></li>

    In reply to: Import Hung?

    @robkk

    Moderator

    we are not dead :/


    @netweb
    is the bbPress community’s import specialist

    the guy is most likely asleep now because he was working on some bbPress tickets all night… or all day depending on Aussie time??

    as for bbcodes bbcodes is not a default feature for bbPress you would need an additional plugin for that.

    https://wordpress.org/plugins/gd-bbpress-tools/ this plugin comes with a quote feature and more.

    there is another plugin called bbpress 2 bbcode which would also need the whitelist plugin by the same developer.

    @robkk

    Moderator

    well really your suppose to put bbPress plugin CSS in a folder called CSS in your child theme in a file called bbpress.css , more info here

    https://codex.bbpress.org/theme-compatibility/

    but adding the code to your child themes css file is fine
    jetpack’s custom css module is fine too.

    to remove the footer completely

    remove all this code in the file.

    <li class="bbp-footer">
    
    	<div class="tr">
    		<p class="td colspan4">&nbsp;</p>
    	</div><!-- .tr -->
    
    </li><!-- .bbp-footer -->

    @robkk

    Moderator

    its no problem with the file

    its just that the footer is a different color than it should be

    this should make it look better

    #bbpress-forums li.bbp-footer {
    background: #383838;
    border-top: none;
    font-weight: bold;
    padding: 8px;
    text-align: center;
    }

    @robkk

    Moderator

    add this to functions.php in your child theme

    /**
     * Include bbPress 'topic' custom post type in WordPress' search results
     */
    function ntwb_bbp_topic_cpt_search( $topic_search ) {
    	$topic_search['exclude_from_search'] = false;
    	return $topic_search;
    }
    add_filter( 'bbp_register_topic_post_type', 'ntwb_bbp_topic_cpt_search' );
    
    /**
     * Include bbPress 'reply' custom post type in WordPress' search results
     */
    function ntwb_bbp_reply_cpt_search( $reply_search ) {
    	$reply_search['exclude_from_search'] = false;
    	return $reply_search;
    }
    add_filter( 'bbp_register_reply_post_type', 'ntwb_bbp_reply_cpt_search' );

    got the code from here

    https://gist.github.com/ntwb/7363a1de1184d459f0c3

    @robkk

    Moderator

    you can use CSS but using this plugin is a whole lot easier

    https://wordpress.org/plugins/bbpress-enable-tinymce-visual-tab/

    @robkk

    Moderator

    if this is still an issue i can solve it with some simple CSS

    @robkk

    Moderator

    you can place this code into your child themes functions.php file

    
    /**
     * Include bbPress 'topic' custom post type in WordPress' search results
     */
    function ntwb_bbp_topic_cpt_search( $topic_search ) {
    	$topic_search['exclude_from_search'] = false;
    	return $topic_search;
    }
    add_filter( 'bbp_register_topic_post_type', 'ntwb_bbp_topic_cpt_search' );
    
    /**
     * Include bbPress 'reply' custom post type in WordPress' search results
     */
    function ntwb_bbp_reply_cpt_search( $reply_search ) {
    	$reply_search['exclude_from_search'] = false;
    	return $reply_search;
    }
    add_filter( 'bbp_register_reply_post_type', 'ntwb_bbp_reply_cpt_search' );

    got the code from here, i see you also commented on it to 🙂

    https://gist.github.com/ntwb/7363a1de1184d459f0c3

    In reply to: Page Not Found Error

    @robkk

    Moderator

    why didnt you use the phpbb to bbPress importer in the bbPress plugin.

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

    @robkk

    Moderator

    can your users get subscription emails without the additional plugin??

    @robkk

    Moderator

    Sorry for the thread up

    nah its two weeks its okay.

    as for your function , instead of doing a function because you would have to do it for every user you want to delete.

    how about do this so you can bulk delete the posts by the users in the replies/topics section.

    first create a new user named “deleted” or “removed” some kind of variation of that.

    then whenever you want to delete a user attribute all the content to that user you just created.

    then in the topics/replies section bulk delete the posts by searching the “deleted” user first. then clicking on the author link in the topics/replies section which should only show that users posts from there so you can bulk delete the posts.

    and to change the number of posts shown in one page of the topics/repies section change the default number to like say 75 or so.

    other than that maybe changing the post type of your function to reply or topic might make it work , also if you found the users id you want to delete and input into the id field.

    @robkk

    Moderator

    @andriuss

    you should make sure you have a backup set just in case

    and then update bbPress to the latest version.

    @robkk

    Moderator

    if you were here I’d give you a big kiss.

    uhhhhhhhhhhhhhh , your welcome i guess?? haha

    about it not being updated in over a year , the plugin is very simple it basically just outputs a shortcode at the bottom of blog posts.

    and also that this functionality is going to be implemented in the future release of bbPress.

    so when the update comes and says bbPress for WordPress comments in the changelog of the plguin. you can pretty much just remove the topics for posts plugin from there on and just use bbPress.

    @robkk

    Moderator

    haha alright

    In reply to: resize bbpress forum

    @robkk

    Moderator

    add this anywhere you can add custom css and see if this works

    .bbpress .container {
    max-width:100%;
    }

    if it doesnt try this also

    .bbpress .container {
    max-width:100% !important;
    }
Viewing 25 replies - 3,026 through 3,050 (of 3,784 total)