Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 1,476 through 1,500 (of 32,432 total)
  • Author
    Search Results
  • koras6411
    Participant
    add_filter( 'bbp_get_the_content', 'amend_reply', 10, 3);
    
    Function amend_reply ($output, $args, $post_content) {
    if ($args['context'] == 'reply' && $post_content == '') $output=str_replace('></textarea>', 'placeholder="Reply..." ></textarea>',$output) ;
    return $output ;
    }

    Hi! how to use it for other forms? e-mail address and name that appear for not logged in users.

    #222766
    regnalf
    Participant

    bbpress private groups does a good job to hide forums, but that still doesn’t remove the index page. if anyone needs to restrict the index page for a complete private forum, here is the code:

    add_action( 'wp', 'restrict_bbpress' );
    function restrict_bbpress()
    {
    
    	global $wp;
    	global $wp_query;	
    	
    	$bbpress_index = get_option ('_bbp_root_slug');
    	
    	if ($wp->request == $bbpress_index)
    	{
    
    		$user = get_userdata(get_current_user_id());
    		
    // Example for a user role member
    		if (! is_user_logged_in() || 
    		    ! in_array( 'member', (array) $user->roles ))
    		{
    			$wp_query->set_404();
    			status_header( 404 );
    		}
    
    	}
    
    }
    #222730
    ROSEMILAN
    Participant

    Hi,

    I would like to remove the last page numbers in pagination,
    is there any function code to do this?

    at the moment, on latest topics on a big forum.. it shows like this..

    #222720

    In reply to: CSS on Index Page

    Robin W
    Moderator

    styling root page us

    #bbpress-forums

    eg

    #bbpress-forums ul.odd
    {
    background-color:blue ;
    }

    or use

    bbp style pack

    #222708
    Robin W
    Moderator

    go save me re-reading all of a 5 year old thread, could you please state what shortcode, what pge url and what forum slugk you have

    #222707
    regnalf
    Participant

    Found this, while searching for a solution with the shortcode on an own page. This issues seems still exist in 2021!!! If i create a page with shortcode the page show an empty page if the forum index has the same permalink as the the page!

    #222705
    arthurlutte
    Participant

    It is working perfectly, except that you need to specify the good post type (here it is ‘topic’).

    $query = bbp_get_all_child_ids($forum_id, 'topic');

    #222673
    specstanza
    Participant

    Thank you @robin-w !
    My first idea was to display:none the_title but I’m definitely going to keep it.

    I found the solution by installing a plugin called Hookr. It gave me some informations I needed after hours reading Bbpress’ files.

    The ouput is a bit strange though…
    Output true_title

    As if the voice-count moved somewhere. The author is also displayed twice – I don’t remember it was like that before. Changing the shortcode used doesn’t improve this.

    I’m going to figure out what happened here and keep this thread updated if it’s usefull for someone. πŸ™‚

    #222667
    Robin W
    Moderator

    Atleast one that says it officially supports the latest wordpress version that is out.

    I thought it now did – certainly here

    bbPress

    #222664
    Robin W
    Moderator

    interesting – yes that is not there in the front end

    If you have skills with accessing the database then you can easily change it there, let me know and I’ll give you some help.

    Otherwise come back with the numbers of the forums you want to change (you can see this in the url of the page when you edit a forum – eg

    https://www.mysite.com/wp-admin/post.php?post=2927&action=edit

    is shown for forum number 2927

    so give me a list, and the user ID of the author you want to change them to, and I’ll give some some code

    #222663
    Robin W
    Moderator

    thanks for posting your solution.

    you could do

    add_action('bbp_theme_before_topic_title', 'show_true_title');
    function show_true_title() { 
    $topic_id = bbp_get_topic_id();
      $true_title = '<li class="specstanza-title"><a href="' . get_permalink() . '">' . get_post_meta( $topic_id, 'bbp_extra_field1', true); '</a></li>';
    echo $true_title ;

    and then in css do

    li.specstanza-title {
    color: blue;
    }

    or

    .specstanza-title {
    color: blue;
    }

    or

    .specstanza-title li {
    color: blue;
    }

    one of those should let you style the title

    #222662
    specstanza
    Participant

    To anyone who would come accross the same project, I added an action to the bbp_theme_before_topic_title hook.

    For now, it does not displays as I would like but some CSS will do the trick.

    add_action('bbp_theme_before_topic_title', 'show_true_title');
    function show_true_title() { 
    $topic_id = bbp_get_topic_id();
      $true_title = '<li><a href="' . get_permalink() . '">' . get_post_meta( $topic_id, 'bbp_extra_field1', true); '</a>';
    echo $true_title ;
    #222656
    Robin W
    Moderator

    The problems with this are multiple. Emails to site go into a mailbox – emails and web are separate – eg you can host you email with a totally different supplier, so in essence there is no ‘web software’ to catch an incoming email. So firstly the mailbox would need to exist on a mail server somewhere.

    Next you’d need software on the email to look at all incoming, read the mail, work out if this is a reply, and to what message, check the sender’s mailbox to work out which user it is, and then get this software to send to another programme within the website, which can then create the reply.

    The ability for spam and people pretending to be a user are numerous.

    Github is created by very clever people, who have I presume done all this, but there would be a lot of code in many languages to achieve.

    If it is an issue, then I’d suggest you amend your sending email to omit the actual content – so something like – ‘a new reply has been received, click here to read’ so that people have to click the link and are on the site to see content to reply to.

    divepen
    Participant

    I tried using a string of codes someone posted here, but I couldn’t follow through.
    So, can anyone direct me on how to remove that form at the end of forums and topics?

    Take this BBPress website for example. The create New Topic takes us to the new page. But it’s not hanging below.

    #222603
    #222585

    In reply to: User/Member Directory

    egemenerd
    Participant

    I know this is an old topic but if anyone is interested in, we made a plugin for this; https://codecanyon.net/item/tmusers-bbpress-forum-member-directory-for-elementor/33463523

    #222573
    jappan
    Participant

    The profile above is from the login-widget, and the profile below is from my php code.
    However, it doesn’t not have a link to the user’s profile.

    I would like to add a link to the profile screen in the image and username like above one!!!

    please teach me…
    i’m sorry for the inconvenience

    #222572
    jappan
    Participant

    Thank you Mr.Robin!!!
    I tried using PHP code to put this button in place.
    ↓Here is the code↓

    <!DOCTYPE html>
    <html lang="ja">
    <head>
    <div class="login-box">
    <?php if ( is_user_logged_in() ) : ?>
        <?php bp_loggedin_user_avatar( 'type=thumb&width=40&height=40' ); ?>
    <?php global $user_identity; echo $user_identity; ?>
    	<a href="<?php echo wp_logout_url( bp_get_root_domain() ) ?>">γƒ­γ‚°γ‚’γ‚¦γƒˆ</a>
    <?php else : ?>
    	<a href="https://tokyolyric.com/wp-login-php">ログむン</a>
    <?php endif; ?>
    </a>
    </div>
    </head>

    but I can’t go to “user’s profile page” from “the user’s image” and “user name”.

    please let me know if there is any description to add to the code!!!

    This is my website URL

    #222497
    Jan
    Participant

    sorry for making you wait.

    The better term is probably “search result page”. The header of my bbp forum comes with a search bar which allows users to enter keywords (i.e. “browser”) and then takes then to the respective search result page (example: https://webgefaehrte.de/videoassistent/suchen/browser/).

    I’d like to add a tag cloud into the existing side bar (right hand side).

    Meanwhile I found this suggestion which, however, I can’t get to work πŸ˜‰

    The threats regarding #1 und #2 is this one:
    https://bbpress.org/forums/topic/problem-with-shortcode-tag-cloud-in-sidebar-widget/
    https://bbpress.org/forums/topic/change-font-size-range-for-tag-cloud/

    Any advise is much appreciated.

    Thanks,
    Jan

    #222494

    In reply to: Forum url changes

    Robin W
    Moderator

    ok you could also use a PHP variable rather than a wordpress function

    so

    $current_url = $_SERVER['REQUEST_URI'];

    should give you the displayed URL in all cases.

    you can then do an ‘if’ test to see if you are in forums using say

    if (strpos($_SERVER['REQUEST_URI'], '/qaforums/') == true ) …then you are in the forums

    #222472

    In reply to: Forum url changes

    pawanahluwalia
    Participant

    I am just trying to understand how the plugin works and why the php code is not giving the correct url that matches what is visible in the browser. I have tried your suggestions but I still can’t determine why the urls being generated by either get_page_link() or get_permalink() are different to the ones being displayed in the browser address line.

    #222471

    In reply to: Forum url changes

    Robin W
    Moderator

    sorry, I have given you some code which addresses, which does not seem to satisfy you.

    I am not quite sure why you think the plugin authors would want to make their plugin work for your exact circumstances, but if you want to post a defect then go here

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

    #222463

    In reply to: Forum url changes

    Robin W
    Moderator

    would you like to post your current code?

    #222462

    In reply to: Forum url changes

    pawanahluwalia
    Participant

    The only trouble with this solution is, it is not permanent. You would need to the change the code each time a new forum is added.

    #222459

    In reply to: Forum url changes

    Robin W
    Moderator

    if get_page link returns :

    mywebsite.com/forum_name3/forum_name3/

    then you could just test for this eg

    if (get_page_link() == 'mywebsite.com/forum_name3/forum_name3/')  {
    get_permalink etc.
    }
    else {
    get_page_link()
    }
Viewing 25 results - 1,476 through 1,500 (of 32,432 total)
Skip to toolbar