Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress"'

Viewing 25 results - 2,476 through 2,500 (of 26,822 total)
  • Author
    Search Results
  • #211274
    #211269
    failxontour
    Participant

    Hey so I’m trying to enqueue custom CSS for bbPress v2.6.4 on the WP 5.4.1 clan website running a WP Twenty Twenty-child theme.

    This is what my functions.php currently looks like

    <?php
    /**
    * Child theme stylesheet einbinden in Abhängigkeit vom Original-Stylesheet
    */
    add_action( 'wp_enqueue_scripts', 'child_theme_styles' );
    function child_theme_styles() {
      wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
      wp_enqueue_style( 'child-theme-css', get_stylesheet_directory_uri() .'/style.css' , array('parent-style'));
      wp_enqueue_style( 'child-theme-css', get_stylesheet_directory_uri() .'/css/bbpress.css', array());
    }
    ?>
    

    And this is how my bbpress.css looks like.

    
    #bbp-forum-info,
    #bbp-forum-topic-count,
    #bbp-forum-reply-count,
    #bbp-forum-freshness {
      color: #232323;
    }
    #bbpress-forums {
      background: transparent;
      clear: both;
      margin-bottom: 20px;
      overflow: hidden;
      font-size: 1.75rem;
      color: #232323;
    }
    

    The changes I applied in the bbpress.css won’t update the bbpress CSS on the above mentioned site. So their must be something wrong with my functions.php but I can’t yet put my finger on it how to load it properly as I’m pretty new when it comes to WordPress. I wanna append these changes globally to all parts of bbPress forum.

    Can someone tell me to if and what i need to specify inside the arrray() call for the bbpress.css to load properly? Or hint me towards what’s wrong here.

    #211256
    Robin W
    Moderator

    This plugin will let you style it to match your theme, and do much else besides

    bbp style pack

    #211252
    tumptyteapot
    Participant

    Hi
    I’m trying to move a forum from one site to another.
    I’m using the WordPress export/import function
    I can see the structure of the imported forums including topic numbers and replies but there is no information in the topics. The error says ‘Oh, bother! No topics were found here.’

    I used the Cimy User Manager to import all the users and that worked fine.

    I’ve tried resetting permalinks but still nothing shows in the topics.

    Have I done something wrong?

    #211250
    Robin W
    Moderator

    Put this in your child theme’s function file – or use

    Code Snippets

    //This function changes the text wherever it is quoted
    function change_translate_text( $translated_text ) {
    	if ( $translated_text == 'old text' ) {
    	$translated_text = 'new text';
    	}
    	return $translated_text;
    }
    add_filter( 'gettext', 'change_translate_text', 20 );

    and change the old text and new text to suit.

    Robin W
    Moderator

    ok, let’s try adding this

    add_filter( 'bbp_verify_nonce_request_url', 'my_bbp_verify_nonce_request_url', 999, 1 );
    function my_bbp_verify_nonce_request_url( $requested_url )
    {
        return 'http://localhost:8888' . $_SERVER['REQUEST_URI'];
    }

    Put this in your child theme’s function file – or use

    Code Snippets

    #211235
    thomasprice61
    Participant

    This was occurring before Members was installed.
    I only loaded Members to see further inside users, roles and capabilities as native WordPress offers little capability of diagnosing such issues.

    Happy to give you access.
    How do I pm you?

    #211227
    thomasprice61
    Participant

    No.
    I’m on WordPress 5.4.1

    redevelop
    Participant

    Hi there, I’m experiencing the following error after installing bbPress on my local PC (the site is not public) and setting up a test forum:

    “WordPress database error Incorrect DATETIME value: ‘0’ for query SELECT p.ID FROM wp_posts AS p WHERE p.post_date < ‘0’ AND p.post_type = ‘forum’ AND ( p.post_status = ‘publish’ OR p.post_status = ‘private’ OR p.post_status = ‘hidden’ ) ORDER BY p.post_date DESC LIMIT 1 made by require(‘wp-blog-header.php’), require_once(‘wp-includes/template-loader.php’), include(‘/themes/twentytwenty/singular.php’), get_header, locate_template, load_template, require_once(‘/themes/twentytwenty/header.php’), wp_head, do_action(‘wp_head’), WP_Hook->do_action, WP_Hook->apply_filters, adjacent_posts_rel_link_wp_head, adjacent_posts_rel_link, get_adjacent_post_rel_link, get_adjacent_post”

    My setup:
    A new WordPress 5.4 install with no other self-installed plugins
    Theme: Twenty Twenty
    Windows 10
    PHP 7.4.4
    MySQL 8.0.19
    I created a forum called ‘Test Forum1’ & this appears in the WordPress Admin. When I click the permalink to view the forum I see the above error on a blank white screen.

    Any advice much appreciated – thanks.

    #211198

    Hi,

    I use WordPress version 5.4.1 and bbpress version 2.6.4 on my website http://www.afvallenkunjeleren.nl with the theme woostify.

    I have something strange: I have downloaded the .mo file (named it bbpress-nl_NL.mo, and the .po file is bbpress-nl_NL.po) from the official bbpress site and uploaded it through file manager in my forum.

    But nothing will be translated. When I look in the plugin Loco translate, that I use there is nothing translated.

    Can anyone help me please?

    Thank you very much in advance!

    With warm regards,
    Klaziena Waerts

    #211193

    Topic: login plugin

    in forum Installation
    momomoko
    Participant

    Hello there,

    I am stucked with this issue since some days : i am using the default bbpress connection widget (bpress version : 2.6.4) , but i am not satisfied by it behaviors such as redirect to wordpress admin login, the fact that the link on registration mail, bring the user again to wordpress back end, and also that email sender adress is the wordpress email (not mine !!) .. i had tried to change this last issue with this code in my functions.php :

     add_filter( 'wp_mail_from', 'your_email' );
    function your_email( $original_email_address )
    {
    	return 'myemail@domain.com';
    }
    
    add_filter( 'wp_mail_from_name', 'custom_wp_mail_from_name' );
    function custom_wp_mail_from_name( $original_email_from )
    {
    	return 'My Forum Name';
    }

    But instead i just received a “mail delivery failed”

    I have tried other plugins such as “weaver” or “bbPress login register link..” but still not found the “good one” (or surely didn’t know how to optimize it)

    Did someone know how to solve this problem ??

    robertherold
    Participant

    Hi,

    I added some new user fields to the WordPress admin page, but I would like them not to be visible on the bbPress profile page.
    How can this be solved?

    #211181
    Robin W
    Moderator

    If you want to add styling and features try

    bbp style pack

    #211176

    Topic: If user is author

    in forum Plugins
    robertherold
    Participant

    Hello,
    I have completely customized the bbPress profile page and would like to display e.g. next to the name an icon (or whatever) if that user is also a WordPress author.
    Does anyone know a solution?

    #211150
    pinksparklegirl
    Participant

    I’m trying to convert my SMF database, but nothing is being imported (runs through each step, but nothing to import).

    I’m using SMF 2.0.17, the most recent versions of bbPress and WordPress.

    Can anyone advise how to pinpoint the problem? There were no errors listed.

    #211134
    Robin W
    Moderator

    Put this in your child theme’s function file – or use

    Code Snippets

    or it is available as an option in

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>Topic/Reply Form

    fullmetalmikey
    Participant

    Ah – I did not have that check box marked for comments needing approval. BUT I believe the problem I’ve been having is due to the Comment Moderation if it contains links! We use links a lot so this is likely the culprit.

    Thanks joyridek9! After the recent bbpress and wordpress update I started experiencing this problem. Looks like some settings were reset. Mine were set to moderate if it contained two links or more. Set this number to 0 and poof, problem solved.

    (It should be noted that I have a protected forum hidden with bbgroups. If you have a public facing forum, setting this to zero could increase spam posts so tread carefully.)

    #211116
    rashidkalwar
    Participant
    #211115
    rashidkalwar
    Participant

    Shortcodes
    Codex Home → bbPress Features → Shortcodes
    Since Version 2.0 bbPress support so called Shortcodes. They have been introduced for creating macros to be used in the layout of your forum content on WordPress pages. To use any of the shortcodes simply insert the desired shortcode into any WordPress page.

    To get the required numerical ID for $forum_id, $topic_id, $reply_id and $tag_id you will need to visit your /wp-admin/ section and either by editing the post or by hovering your mouse over the applicable forum/topic/reply/tag post type you will see a numeric ID for that post eg. /wp-admin/post.php?post=47

    Forums
    [bbp-forum-index] – This will display your entire forum index.
    [bbp-forum-form] – Display the ‘New Forum’ form.
    [bbp-single-forum id=$forum_id] – Display a single forums topics. eg. [bbp-single-forum id=32]

    Topics
    [bbp-topic-index] – Display the most recent 15 topics across all your forums with pagination.
    [bbp-topic-form] – Display the ‘New Topic’ form where you can choose from a drop down menu the forum that this topic is to be associated with.
    [bbp-topic-form forum_id=$forum_id] – Display the ‘New Topic Form’ for a specific forum ID.
    [bbp-single-topic id=$topic_id] – Display a single topic. eg. [bbp-single-topic id=4096]

    Replies
    [bbp-reply-form] – Display the ‘New Reply’ form.
    [bbp-single-reply id=$reply_id] – Display a single reply eg. [bbp-single-reply id=32768]

    Topic Tags
    [bbp-topic-tags] – Display a tag cloud of all topic tags.
    [bbp-single-tag id=$tag_id] – Display a list of all topics associated with a specific tag. eg. [bbp-single-tag id=64]

    Views
    [bbp-single-view] – Single view – Display topics associated with a specific view. Current included ‘views’ with bbPress are “popular” [bbp-single-view id=’popular’] and “No Replies” [bbp-single-view id=’no-replies’]

    Search
    [bbp-search] – Display the search input form.
    [bbp-search-form] – Display the search form template.

    Account
    [bbp-login] – Display the login screen.
    [bbp-register] – Display the register screen.
    [bbp-lost-pass] – Display the lost password screen.

    #211109
    momomoko
    Participant

    Please i need your help : No one can sudgest me a good plugin that avoid any wordpress mention (including wordpress email, redirection after registration or set password default wordpress template) ?

    #211078
    thanhpham123
    Participant

    Subforums are not listed.
    The subforums not being listed will be fixed in 2.6.1.

    A few more questions:

    Using any caching plugins?
    Using any SEO plugins that might be interacting with CSS files?
    Using a right-to-left language?
    Overriding any constants? (WP_CONTENT_DIR, WP_PLUGIN_DIR, WP_THEME_DIR, etc…)
    Anything else about your WordPress installations you can share?

    The only related change I can find, is: https://bbpress.trac.wordpress.org/ticket/3012

    If you’re able to edit that file in bbPress directly, and revert it back, and test, that would be super helpful to confirm or disconfirm if that does it.

    #211072
    Robin W
    Moderator

    ok install this and put the code in the custom css section.

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>custom css

    bobdebilder
    Participant

    Hi lisabyrde, I went with MYBB software, as I was able to import all my old forum data via their plugin into that software. I haven’t heard anything further about BBpress

    good luck with your decision. I am an ardent user of wordpress and ideally would like to have stayed close to their structure

    #211064
    momomoko
    Participant

    I am looking for a way to change default adress (wordpress) for registration email . Is it possible ?

    Kikis
    Participant

    BbPress has over 300+ supported plug in with WordPress you can easily design your web site the way you like and making your forum unique I can tell you fact bbpress doesn’t have that’s full functionality but you can create your own custom plugins to work with it

Viewing 25 results - 2,476 through 2,500 (of 26,822 total)
Skip to toolbar