Ricsca2 (@ricsca2)

Forum Replies Created

Viewing 25 replies - 1 through 25 (of 98 total)
  • In reply to: SEO Index Forum

    @ricsca2

    Participant

    Thanks a lot, I fixed the code with chatgpt, but it didn’t work well with yoast…

    
    
    /**
     * πŸ”§ Custom SEO meta tags for bbPress forum index page
     * 
     * This snippet replaces the default "Forum Archive" title and adds custom
     * meta description + Open Graph tags (for Facebook, WhatsApp, etc.)
     * 
     * βœ… Add this code to your theme’s functions.php or a custom plugin.
     */
    
    function custom_bbpress_forum_index_meta() {
        // Check if bbPress is active and we are on the main forum archive page
        if ( function_exists('is_bbpress') && is_post_type_archive('forum') ) {
    
            // πŸ”Ή Custom SEO Title
            add_filter('pre_get_document_title', function() {
                return 'Your Custom Forum Title – Your Site Name';
            });
    
            // πŸ”Ή Custom Meta Description and Open Graph Tags
            add_action('wp_head', function() {
                ?>
                <!-- 🧩 Custom bbPress Forum SEO Meta Tags -->
                <meta name="description" content="Join our forum community! Discuss topics, share experiences, and get expert advice about your favorite subjects." />
                <meta property="og:title" content="Your Custom Forum Title – Your Site Name" />
                <meta property="og:description" content="Join our forum community! Discuss topics, share experiences, and get expert advice about your favorite subjects." />
                <meta property="og:image" content="https://example.com/path-to-your-forum-image.jpg" />
                <meta property="og:type" content="website" />
                <?php
            });
        }
    }
    // Hook into 'wp' to ensure bbPress functions are available
    add_action('wp', 'custom_bbpress_forum_index_meta');
    
    In reply to: SEO Index Forum

    @ricsca2

    Participant

    How can I add a title and meta description to the forum index page?
    Since it’s not a real page, I can’t set them using Yoast SEO.

    In reply to: Bug https url

    @ricsca2

    Participant

    Are these two spam posts? Why are both URLs in https and not http?

    In reply to: Bug https url

    @ricsca2

    Participant

    Even though you have some influence over what they decide to do, this update is very simple and the right thing to do.
    Browsers flag all http sites as unsafe, so I believe 21% of http sites are essentially abandoned.
    Since 79% of sites are http, it’s logical that if a site doesn’t specify https, it’s a given that https will be prefixed instead of http.
    Or, they could just as easily leave the www without the http(s) in front.

    In reply to: Bug https url

    @ricsca2

    Participant

    Okay, thanks, I’ll do that, but I think this issue needs to be fixed in future updates. HTTP hasn’t been used in years.

    In reply to: Bug https url

    @ricsca2

    Participant

    99% of sites are in https and not http, so if you can, it would be a good idea to point this out to whoever handles bbpress updates.
    People who type in a domain start with www and never type https, so it’s really annoying to see URLs in http.

    In reply to: Bug https url

    @ricsca2

    Participant

    But seriously, are you telling me that it is normal that if a user writes www.google.com on bbpress it becomes http://www.google.com and not https:?

    In reply to: Bug https url

    @ricsca2

    Participant

    I couldn’t explain…
    If I type www.google.com when I post the topic, it becomes http://www.google.com instead of https://www.google.com

    Try writing a URL with only www and submitting the topic.

    @ricsca2

    Participant

    @ricsca2

    Participant

    Yoast told me…
    sorry, but Google Translate forgot a part πŸ˜…

    PS
    Did you get my email with the site?

    @ricsca2

    Participant

    you replied that the forum should already do this.

    @ricsca2

    Participant

    Liking posts is very engaging for users, especially if there’s a page that shows the users who have received the most likes. It’s true, but it’s a shame it doesn’t exist by default on BBpress.

    In reply to: Topic to be approved

    @ricsca2

    Participant

    Perfect, thanks, you’re always so kind…
    I wanted to send you a private message to show you the incredible results I achieved by migrating a custom forum to wp + bb + bbp, but there’s no way to contact you.
    I also tried contacting you on your website, but my antivirus is blocking it.

    In reply to: Topic to be approved

    @ricsca2

    Participant

    Is it because of this option I set by chance?

    Before a comment appears: Comment authors must have a previously approved comment.

    I also set “Keep a comment in queue if it contains 2 or more links (a common characteristic of comment spam is a large number of links).”

    and the post had 4 images loaded via code and HTML links.

    Are forum topics and comments treated as if they were WP comments?

    Thanks

    @ricsca2

    Participant

    Ok πŸ‘

    @ricsca2

    Participant

    What does this change do? Has it been fixed after five months?

    In reply to: Free bbpress theme

    @ricsca2

    Participant

    I found this one which is built for buddypress but the forum section is great even if you don’t use buddypress.

    BuddyX

    In reply to: Delete spam users

    @ricsca2

    Participant

    Thanks

    @ricsca2

    Participant

    But here we are not talking about adding new functions to bbpress …. simply that bbpress inherits the style of the theme used as all other plugins do. Now I do not know how to program but I do not think it is a complicated modification / update to do. How is it possible that a component that has more than 100,000 active installations and that is the component used to support bbpress.org which has millions of threads and posts, in 2024 is considered a plugin of little value and with hundreds of wordpress employees does not do this small update.

    @ricsca2

    Participant

    bbpress is the official wordpress plugin and is the one used on bbpress.org as well as being used by thousands of sites.
    I’m talking about inheriting at least the font size of the theme in which it is used, nothing exceptional…

    @ricsca2

    Participant

    According to this reasoning wordpress should not exist then.
    Here I am not asking for customizations to bbpress. simply that bbpress inherits the theme style, that is, inherits the font size. Buddypress does this so it is absurd that bbpress does not do it.

    @ricsca2

    Participant

    Thanks

    @ricsca2

    Participant

    It seems quite complicated to me…

    In reply to: Add required fields

    @ricsca2

    Participant

    I tried it and it works but then I don’t know how to move the various fields and another important thing I’m wondering is where this extra data is saved.

    In reply to: Add required fields

    @ricsca2

    Participant

    I mean custom fields

Viewing 25 replies - 1 through 25 (of 98 total)