Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 4,376 through 4,400 (of 32,481 total)
  • Author
    Search Results
  • #190992
    TechHaus
    Participant

    Ok, found this… still digging…

    bbp_show_lead_topic

    #190989
    Robin W
    Moderator

    I think it is

    add_action( 'bbp_template_before_replies_loop', 'rew_shortcode' ) ;

    #190958
    cri00
    Participant

    Hello!

    We are looking to modify BBpress meaning:

    – remove the possibility for anonymous users posting answers to questions.
    – remove BBpress notices like ”You can publish HTML content” or ”You can use BBCodes to format your content”.
    – remove the website field request when asking a question, along subject type and question status.
    – add a name for the description field regarding the title of the subject.
    – customize the right sidebar to include: add a question, search and categories of the forum.

    We are using bbpress 2.5.14 and wordpress 4.7.9. Any help will be much appreciated.

    Thank you!

    #190943
    lilymonsterz
    Participant

    I am unable to have access to the “Name” field in the Profile editor. Even as an Admin, I can’t change my displayname/profile name.

    The only way I can is to go into

    Inspect Element>Rightclick
    Find and click “<fieldset class=”bbp-form” style=”display: none;”>
    <legend>Name</legend>” tag in the page.

    Edit the “element.style” from “display:none;” to “display:block;”.

    Unfortunately this element has a “Display:none” embedded into the code that I can’t seem to find anywhere else in the back end to manually force it to display.

    If anybody could help me I would be very grateful.

    http://prntscr.com/ip4o89

    #190924
    discusspf
    Blocked

    My installation is here: https://discusspf.com/community/

    My trouble is with font sizes. OP seems to be too small, all further replies are decent size and anything included in a quote is huge. Is there a way to change these just for the bbPress part of my theme? I have the ability to add custom CSS for bbPress but don’t know what code to add. Can someone please supply code which will make OP and quote text the same size as all the replies. Thanks a bunch in advance!

    #190923
    principiante
    Participant

    Sorry Robing,
    I still missing member register on this kind of pages:

    Velero compartido Agosto 2011


    Is that thread?
    Please…can you tell me code for this? Something like:
    add_action( ‘bbp_template_before_topics_?????’ , ‘rew_shortcode’ ) ;
    Thanks a lot!

    #190920
    w3215
    Participant

    Thanks. Something that truly gave a clean interface (like gutenberg or medium.com as mentioned) would be ideal. But if there are not currently options for that for the bbpress text editor, are there options to improve the editor from the default?

    For example, to make it comparable to the text editor for ‘Discourse’ forum sites? (like https://discuss.reactjs.org/ or https://discuss.atom.io/).

    I have heard there may be a way to turn on the tinyMCE toolbar in bbpress, which is an improvement.

    However, I’m new to wordpress, but that seems to normally go along with a text editor that gives the writer two less than ideal options: a (i) “visual” option with the tinyMCE (the problem being it strips away a lot of formatting–for example removing tabs if you paste code in) or (ii) the basic “text” option, which is not great for a general audience bc it requires the writer deal with stuff like tags and html-jargon. Its also confusing to give users two different options that seem to do the same thing but in slightly different ways.

    So, if a Gutenberg-like experience is too much to ask right now, is there anything around that can give users the straightforward toolbar experience of the “Discourse” text editor?

    w3215
    Participant

    Hi! I would like to provide the best writing experience possible for users of the forum I plan to set up with bbpress. Gutenberg is a good example–a clean “elegant” interface, options to go full screen (so the only thing user sees is where they will write), options to style with a button click, and option to easily insert code snippets with a button click. Its comparable to using good writing software, and no need for non-technical users to know what “UL”, “OL”, “Li” etc mean.

    I have been looking through some plugins for styling bbpress, but I have not seen them discuss this aspect. Are there options available to make the bbpress text editor “elegant” in a way that is comparable to Gutenberg or the writing experience on a spot like medium.com?

    #190896
    Partizan
    Participant

    Ok i fixed my problem by leaving the forum root slug as it is and just went and created a new bbpress.php in my theme folder… and selected the look of the index page from theme in code.

    Thank you!

    #190894
    Partizan
    Participant

    Hi!

    First of all thanks for quick response. Its not just breadcrumbs that are affected – all topics links have the same problem. Ok let me try to describe…
    1. I made change with method 1.
    2. I have changed forum root from original permalink forums to forums-test.
    3. New page permalink is set to forums and i call index forum with code on this page and it works – it shows forum root but all links of topics and subforums offcourse are affected with change of forum root link change and links to forums-test.
    4. If i set forums-test back in forum settings to just forums then my page that is supposed to show forum index called with code gets overridden with original forum page and page theme i don’t want.

    #190827
    atouba1887
    Participant

    Hello,
    thanks for the answer. No we use the shortcode [bbp-register]

    #190816
    ericross
    Blocked

    Hi,
    I got the below information from http://forum.wpbeaverbuilder.com/ this site .

    You’ll want to check the bbPress codex for that. Check the link below for more info.
    https://codex.bbpress.org/themes/theme-compatibility/getting-started-in-modifying-the-main-bbpress-template/

    #190815
    ericross
    Blocked

    I think this could work try this code, may be it works.

    1- Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .single-topic #bbpress-forums {
    margin-top: 0;
    }
    2- They do not show up on the bottom by default. If you would like to show, please add following code to Functions.php file in Appearance > Editor

    add_action( ‘bbp_template_after_single_topic’,’bbp_bottom_pagination’ );
    function bbp_bottom_pagination() {
    $output = bbp_get_template_part( ‘pagination’, ‘replies’ );
    return $output;
    }

    #190809
    Robin W
    Moderator

    your theme is loading css with the page including

    .btn-primary, .btn-secondary, .btn-success, .btn-info, .btn-warning, .btn-danger {
    	color: #fff !important;
    }

    this area is using .btn-primary

    as it comes up as inline, it is almost impossible to overwrite.

    Don’t know how your sign-up form is done, is it a plugin?

    #190797
    Jacob_26
    Participant

    Hello,

    I’m trying to style my subforums (background, h1 entry text etc.) but unfortunately when I change the css it also affects and overwrites my other posts…

    Can I assign ids or classes? When I insert the subforums with shortcodes in custom pages, how can I change the breadcrumb links in the main forum page and all subpages?

    I hope somebody can help me out. Thanks in advance.

    Best

    Jacob

    #190796

    In reply to: Repair tool with cron

    Robin W
    Moderator

    what functions are you using to create the topics/replies – if you are creating topics and replies using bbpress functions, then repair shouldn’t be needed.

    do you want me to take a look at your import code ?

    #190793
    liderxlt
    Participant

    Hi, I have a project which updates the forum daily through an import program.

    What I need is to run the repair tool that has bbpress once a day, when all imports are finished.

    I found this code but I can not make it work.

    function bbp_register_default_repair_tools() {
    
      // Topic meta
      bbp_register_repair_tool( array(
      'id' => 'bbp-sync-topic-meta',
      'description' => __( 'Recalculate parent topic for each reply', 'bbpress' ),
      'callback' => 'bbp_admin_repair_topic_meta',
      'priority' => 5,
      'overhead' => esc_html__( 'Low', 'bbpress' ),
      'components' => array( bbp_get_reply_post_type() )
      ) );
    
      // Forum meta
      bbp_register_repair_tool( array(
      'id' => 'bbp-sync-forum-meta',
      'description' => __( 'Recalculate parent forum for each topic and reply', 'bbpress' ),
      'callback' => 'bbp_admin_repair_forum_meta',
      'priority' => 10,
      'overhead' => esc_html__( 'Low', 'bbpress' ),
      'components' => array( bbp_get_topic_post_type(), bbp_get_reply_post_type() )
      ) );
    
      // Forum visibility
      bbp_register_repair_tool( array(
      'id' => 'bbp-sync-forum-visibility',
      'description' => __( 'Recalculate private and hidden forums', 'bbpress' ),
      'callback' => 'bbp_admin_repair_forum_visibility',
      'priority' => 15,
      'overhead' => esc_html__( 'Low', 'bbpress' ),
      'components' => array( bbp_get_forum_post_type() )
      ) );
    
      // Sync all topics in all forums
      bbp_register_repair_tool( array(
      'id' => 'bbp-sync-all-topics-forums',
      'description' => __( 'Recalculate last activity in each topic and forum', 'bbpress' ),
      'callback' => 'bbp_admin_repair_freshness',
      'priority' => 20,
      'overhead' => esc_html__( 'High', 'bbpress' ),
      'components' => array( bbp_get_forum_post_type(), bbp_get_topic_post_type(), bbp_get_reply_post_type() )
      ) );
    
      // Sync all sticky topics in all forums
      bbp_register_repair_tool( array(
      'id' => 'bbp-sync-all-topics-sticky',
      'description' => __( 'Recalculate sticky relationship of each topic', 'bbpress' ),
      'callback' => 'bbp_admin_repair_sticky',
      'priority' => 25,
      'overhead' => esc_html__( 'Low', 'bbpress' ),
      'components' => array( bbp_get_topic_post_type() )
      ) );
    
      // Sync all hierarchical reply positions
      bbp_register_repair_tool( array(
      'id' => 'bbp-sync-all-reply-positions',
      'description' => __( 'Recalculate the position of each reply', 'bbpress' ),
      'callback' => 'bbp_admin_repair_reply_menu_order',
      'priority' => 30,
      'overhead' => esc_html__( 'High', 'bbpress' ),
      'components' => array( bbp_get_reply_post_type() )
      ) );
    
      // Sync all BuddyPress group forum relationships
      bbp_register_repair_tool( array(
      'id' => 'bbp-group-forums',
      'description' => __( 'Repair BuddyPress Group Forum relationships', 'bbpress' ),
      'callback' => 'bbp_admin_repair_group_forum_relationship',
      'priority' => 35,
      'overhead' => esc_html__( 'Low', 'bbpress' ),
      'components' => array( bbp_get_forum_post_type() )
      ) );
    
      // Update closed topic counts
      bbp_register_repair_tool( array(
      'id' => 'bbp-sync-closed-topics',
      'description' => __( 'Repair closed topics', 'bbpress' ),
      'callback' => 'bbp_admin_repair_closed_topics',
      'priority' => 40,
      'overhead' => esc_html__( 'Medium', 'bbpress' ),
      'components' => array( bbp_get_topic_post_type() )
      ) );
    
      // Count topics
      bbp_register_repair_tool( array(
      'id' => 'bbp-forum-topics',
      'description' => __( 'Count topics in each forum', 'bbpress' ),
      'callback' => 'bbp_admin_repair_forum_topic_count',
      'priority' => 45,
      'overhead' => esc_html__( 'Medium', 'bbpress' ),
      'components' => array( bbp_get_forum_post_type(), bbp_get_topic_post_type() )
      ) );
    
      // Count forum replies
      bbp_register_repair_tool( array(
      'id' => 'bbp-forum-replies',
      'description' => __( 'Count replies in each forum', 'bbpress' ),
      'callback' => 'bbp_admin_repair_forum_reply_count',
      'priority' => 50,
      'overhead' => esc_html__( 'High', 'bbpress' ),
      'components' => array( bbp_get_forum_post_type(), bbp_get_reply_post_type() )
      ) );
    
      // Count topic replies
      bbp_register_repair_tool( array(
      'id' => 'bbp-topic-replies',
      'description' => __( 'Count replies in each topic', 'bbpress' ),
      'callback' => 'bbp_admin_repair_topic_reply_count',
      'priority' => 55,
      'overhead' => esc_html__( 'High', 'bbpress' ),
      'components' => array( bbp_get_topic_post_type(), bbp_get_reply_post_type() )
      ) );
    
      // Count topic voices
      bbp_register_repair_tool( array(
      'id' => 'bbp-topic-voices',
      'description' => __( 'Count voices in each topic', 'bbpress' ),
      'callback' => 'bbp_admin_repair_topic_voice_count',
      'priority' => 60,
      'overhead' => esc_html__( 'Medium', 'bbpress' ),
      'components' => array( bbp_get_topic_post_type(), bbp_get_user_rewrite_id() )
      ) );
    
      // Count non-published replies to each topic
      bbp_register_repair_tool( array(
      'id' => 'bbp-topic-hidden-replies',
      'description' => __( 'Count pending, spammed, & trashed replies in each topic', 'bbpress' ),
      'callback' => 'bbp_admin_repair_topic_hidden_reply_count',
      'priority' => 65,
      'overhead' => esc_html__( 'High', 'bbpress' ),
      'components' => array( bbp_get_topic_post_type(), bbp_get_reply_post_type() )
      ) );
    
      // Recount topics for each user
      bbp_register_repair_tool( array(
      'id' => 'bbp-user-topics',
      'description' => __( 'Recount topics for each user', 'bbpress' ),
      'callback' => 'bbp_admin_repair_user_topic_count',
      'priority' => 70,
      'overhead' => esc_html__( 'Medium', 'bbpress' ),
      'components' => array( bbp_get_topic_post_type(), bbp_get_user_rewrite_id() )
      ) );
    
      // Recount topics for each user
      bbp_register_repair_tool( array(
      'id' => 'bbp-user-replies',
      'description' => __( 'Recount replies for each user', 'bbpress' ),
      'callback' => 'bbp_admin_repair_user_reply_count',
      'priority' => 75,
      'overhead' => esc_html__( 'Medium', 'bbpress' ),
      'components' => array( bbp_get_reply_post_type(), bbp_get_user_rewrite_id() )
      ) );
    
      // Remove unpublished topics from user favorites
      bbp_register_repair_tool( array(
      'id' => 'bbp-user-favorites',
      'description' => __( 'Remove unpublished topics from user favorites', 'bbpress' ),
      'callback' => 'bbp_admin_repair_user_favorites',
      'priority' => 80,
      'overhead' => esc_html__( 'Medium', 'bbpress' ),
      'components' => array( bbp_get_topic_post_type(), bbp_get_user_rewrite_id() )
      ) );
    
      // Remove unpublished topics from user subscriptions
      bbp_register_repair_tool( array(
      'id' => 'bbp-user-topic-subscriptions',
      'description' => __( 'Remove unpublished topics from user subscriptions', 'bbpress' ),
      'callback' => 'bbp_admin_repair_user_topic_subscriptions',
      'priority' => 85,
      'overhead' => esc_html__( 'Medium', 'bbpress' ),
      'components' => array( bbp_get_topic_post_type(), bbp_get_user_rewrite_id() )
      ) );
    
      // Remove unpublished forums from user subscriptions
      bbp_register_repair_tool( array(
      'id' => 'bbp-user-forum-subscriptions',
      'description' => __( 'Remove unpublished forums from user subscriptions', 'bbpress' ),
      'callback' => 'bbp_admin_repair_user_forum_subscriptions',
      'priority' => 90,
      'overhead' => esc_html__( 'Medium', 'bbpress' ),
      'components' => array( bbp_get_forum_post_type(), bbp_get_user_rewrite_id() )
      ) );
    
      // Remove unpublished forums from user subscriptions
      bbp_register_repair_tool( array(
      'id' => 'bbp-user-role-map',
      'description' => __( 'Remap existing users to default forum roles', 'bbpress' ),
      'callback' => 'bbp_admin_repair_user_roles',
      'priority' => 95,
      'overhead' => esc_html__( 'Low', 'bbpress' ),
      'components' => array( bbp_get_user_rewrite_id() )
      ) );
      }
    #190791

    In reply to: Freshness Date Format

    Robin W
    Moderator

    ok so leave in the code that you have – that will make the default into date

    then add this

    function rew_forum_freshness_link( $forum_id = 0) {
    	echo rew_get_forum_freshness_link( $forum_id );
    }
    
    function rew_get_forum_freshness_link( $forum_id = 0 ) {
    		$forum_id  = bbp_get_forum_id( $forum_id );
    		$active_id = bbp_get_forum_last_active_id( $forum_id );
    		$link_url  = $title = '';
    
    		if ( empty( $active_id ) )
    			$active_id = bbp_get_forum_last_reply_id( $forum_id );
    
    		if ( empty( $active_id ) )
    			$active_id = bbp_get_forum_last_topic_id( $forum_id );
    
    		if ( bbp_is_topic( $active_id ) ) {
    			$link_url = bbp_get_forum_last_topic_permalink( $forum_id );
    			$title    = bbp_get_forum_last_topic_title( $forum_id );
    		} elseif ( bbp_is_reply( $active_id ) ) {
    			$link_url = bbp_get_forum_last_reply_url( $forum_id );
    			$title    = bbp_get_forum_last_reply_title( $forum_id );
    		}
    
    		$time_since = bbp_get_forum_last_active_time( $forum_id );
    
    		if ( !empty( $time_since ) && !empty( $link_url ) )
    			$anchor = '<a href="' . esc_url( $link_url ) . '" title="' . esc_attr( $title ) . '">' . esc_html( $time_since ) . '</a>';
    		else
    			$anchor = esc_html__( 'No Topics', 'bbpress' );
    
    		return apply_filters( 'rew_get_forum_freshness_link', $anchor, $forum_id, $time_since, $link_url, $title, $active_id );
    	}

    and where you want to show a ‘since’ freshness link change

    bbp_forum_freshness_link() to
    rew_forum_freshness_link()

    You should put any amended templates into your child theme

    come back if you don’t know how to do that

    #190782
    Robin W
    Moderator

    ok try this

    add a page called ‘forums’ and put the shortcode

    [bbp-forum-index] 
    

    in it.

    Your site should then see it as a page, and you should be able to use this page in your menu swapper

    #190774
    emgb_520
    Participant

    I have installed a plugin called “MENU SWAPPER”. This allows for each page/post on the site to choose any menu that has been created to be displayed on that page/post.

    Originally, the functionality of this plugin did not include ANY of the forum pages. I figured out what to add to the menu swapper code to get the individual forums and the topics to have the functionality to swap menus. See the code below, I added “forum” and “topic” to make that happen.

    function mswp_add_swap_meta_box() {
    $post_types = array(
    ‘post’,
    ‘page’,
    ‘forum’,
    ‘topic’
    );

    The only pages on the site where there is no MENU SWAPPER functionality are the forums archive page here: https://scoutfantasysports.com/forums/

    I am assuming this is because there isn’t really a “PAGE” in wordpress for this.

    The menu on that page needs to be the same as on the individual forum pages here: https://scoutfantasysports.com/forum/fantasy-talk/

    I need to know how to make this happen because it looks like I will need to edit a bbPress plugin file to do it.

    Thanks.

    #190770
    Robin W
    Moderator

    adding an editors choice field to the topic form is doable, and creating a view of these also possible, but would be a chunk of code.

    #190758
    Robin W
    Moderator

    This can be done with gravity forms and some code.

    How technical are you ?

    #190739
    u_Oi
    Participant

    Hi,

    In my forum some users post great topics and I don’t want disappear them in the pagination. I wonder if there is a way to mark topics as for example “Editor´s Choice” to keep a record and display them in other page with a shortcode or generate a view?

    For example, allow keymaster and moderator roles mark topics as Editor´s Choice?

    Any idea?

    Thanks,

    #190720

    In reply to: Freshness Date Format

    Caroline Hehemann
    Participant

    1. I’m using the code because I need the ‘d.m.y’ format.
    2. Exactly.
    I need both the date format filtered (date) and the original freshness function (‘since’) in the topic-single-loop.

    #190718
    Robin W
    Moderator

    you would think that was easy – but placeholder is a concept for <input> and <textarea> tags, and wordpress doesn’t use that for then visual editor.

    I found several bits of code that do this for posts and pages, but couldn’t get them to work on topics/replies – I haven’t yet worked out why.

    I’ll have a further play later to see if I can work it out

    Robin

Viewing 25 results - 4,376 through 4,400 (of 32,481 total)
Skip to toolbar