Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '+.+default+.+'

Viewing 25 results - 51 through 75 (of 6,794 total)
  • Author
    Search Results
  • #241478
    Robin W
    Moderator

    ok, all I can suggest is the standard fault finding…

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentytwenty, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    #241453
    yt
    Participant

    Hello
    I use Block FSE theme in my site anfdactivate BBPress in it.
    so, How can I change the default font family of Visual Editor and style it?

    #241405
    Ricsca2
    Participant

    I don’t understand how it is possible that bbpress in 2024 does not inherit the theme style! Buddypress inherits the theme style so it is even more absurd that bbpress does not inherit it.
    Here we are not talking about new features but simply an obvious thing that should have by default.

    #241361
    Robin W
    Moderator

    Learndash I think hides some stuff, maybe try disabling and see if that is the issue, you can then look at what you need to do there.

    If not, then it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentytwenty, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

    #241339
    Salvatore Noschese
    Participant

    Thanks for reply but, sorry…
    Installed and keymaster issue (so, nothing work, I need to fix via your plugin): this is an important issue (cannot work without the fix by your plugin).
    Also, not work in FSE and also with your plugin I have bad result.
    FSE is out and default theme in wp from about 4 yrs and still not supported from bbpress.

    This really looks like an abandoned project.
    Other minor project (like asgaros
    And similar) work out of the box (install, shortcode, all work as expected).

    Best regards and I really hope bbpress team can work to fix asap this issue.

    #241306
    Robin W
    Moderator

    ok, that’s like sending your auto mechanic a picture of your Ford and asking him to say what is wrong 🙂

    The best I can say is it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentytwenty, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

    #241284
    gkldh
    Participant

    yes, @robin-w its working on server side by default buddyx-theme/twentytwenty and no need any additional code add. May i know the reason why didn’t work on localhost ??

    And Next time I will test it on the server first. If I face any problem then I will post it.

    thank you so much your great help @robin-w

    #241283
    Robin W
    Moderator

    ok, since I cannot see the site, troubleshooting is near impossible.

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentytwenty, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

    Clivesmith
    Participant

    I am trying to use wp to buffer to send my topics and replies to X etc, but it does not send a featured image is there a way to set a default featured image.
    wp to buffer give 3 options
    1 No Image
    2 Use open Graph settings
    3 Use Feat..Image not linked to post.

    wp to buffer said “No such option for bbPress topics and replies”
    but on the setup page it has settings for posts, forums, topics and replies.

    Hope that makes sense.

    #241203
    uksentinel
    Participant

    Hi Robin
    Your test forum I believe is arranged as bbp style pack > Forum Templates > Alternate Forum template 1
    My Forum is arranged as bbp style pack > Forum Templates > Default Forum Template > Click to Select
    Then under bbp style pack > Forum Display > (Item 1 checkbox is not Selected)

    My Forum presents all Forums in a horizontal format, which is great for views on Desktop / PC etc.
    But what I am looking to achieve is to change that horizontal format to a vertical format when somebody views my forums on a mobile device < 400 dpi.

    Horizontal View Mobile
    https://uktechhub.com/wp/wp-content/uploads/2024/08/horizontal-view.png

    Vertical View Mobile
    https://uktechhub.com/wp/wp-content/uploads/2024/08/vertical-view.png

    Horizontal View when bbp style pack > Forum Templates > Default Forum Template > Click to Select
    And looking to change this view to Vertical for mobile screens
    https://uktechhub.com/wp/wp-content/uploads/2024/08/horizontal-view-template-horizontal.png

    My Site URL: https://uktechhub.com/forums/

    #241162
    George
    Participant

    For anyone that landed here from a Google search. The pagination is not working for forums set up inside BuddyPress groups. You need to copy those two files from
    \plugins\bbpress\templates\default\bbpress
    pagination-topics.php
    pagination-replies.php

    and copy them to
    \wp-content\themes\[yourchildtheme]\bbpress

    Replace the code inside pagination-topics.php to:

    <?php
    
    /**
     * Pagination for pages of topics (when viewing a forum)
     *
     * @package bbPress
     * @subpackage Theme
     */
    
    // Exit if accessed directly
    defined( 'ABSPATH' ) || exit;
    
    do_action( 'bbp_template_before_pagination_loop' );
    
    // Use bbPress setting for topics per page
    $posts_per_page = bbp_get_topics_per_page();  // Dynamically get the value from bbPress settings
    
    // Get the current page
    $paged = (get_query_var('paged')) ? absint(get_query_var('paged')) : 1;
    
    // Set up the custom query
    $args = array(
        'post_type'      => bbp_get_topic_post_type(),
        'posts_per_page' => $posts_per_page,
        'paged'          => $paged,
        'meta_query'     => array(
            array(
                'key'   => '_bbp_forum_id',
                'value' => bbp_get_forum_id(),
            ),
        ),
    );
    
    // Run the custom query
    $forum_query = new WP_Query($args);
    
    if ($forum_query->have_posts()) :
    ?>
        <div class="bbp-pagination">
            <div class="bbp-pagination-count">
                <?php
                // Display the range of topics being viewed
                $start = ($paged - 1) * $posts_per_page + 1;
                $end = min($paged * $posts_per_page, $forum_query->found_posts);
                echo sprintf(__('Viewing %1$s to %2$s (of %3$s topics)'), $start, $end, $forum_query->found_posts);
                ?>
            </div>
            <div class="bbp-pagination-links">
                <?php
                // Generate the pagination links
                echo paginate_links(array(
                    'total'   => $forum_query->max_num_pages,
                    'current' => $paged,
                    'format'  => '?paged=%#%',
                    'add_args' => false,
                    'prev_text' => __('« Prev'),
                    'next_text' => __('Next »'),
                ));
                ?>
            </div>
        </div>
    <?php
    else :
        echo '<p>No topics found.</p>';
    endif;
    
    // Reset post data
    wp_reset_postdata();
    
    do_action('bbp_template_after_pagination_loop');
    ?>
    

    Replace the code inside pagination-replies.php to:

    <?php
    
    /**
     * Pagination for pages of replies (when viewing a topic)
     *
     * @package bbPress
     * @subpackage Theme
     */
    
    // Exit if accessed directly
    defined( 'ABSPATH' ) || exit;
    
    do_action( 'bbp_template_before_pagination_loop' );
    
    // Use bbPress setting for replies per page
    $posts_per_page = bbp_get_replies_per_page();  // Dynamically get the value from bbPress settings
    
    // Get the current page
    $paged = (get_query_var('paged')) ? absint(get_query_var('paged')) : 1;
    
    // Set up the custom query
    $args = array(
        'post_type'      => bbp_get_reply_post_type(),
        'posts_per_page' => $posts_per_page,
        'paged'          => $paged,
        'meta_query'     => array(
            array(
                'key'   => '_bbp_topic_id',
                'value' => bbp_get_topic_id(),
            ),
        ),
    );
    
    // Run the custom query
    $replies_query = new WP_Query($args);
    
    if ($replies_query->have_posts()) :
    ?>
        <div class="bbp-pagination">
            <div class="bbp-pagination-count">
                <?php
                // Display the range of replies being viewed
                $start = ($paged - 1) * $posts_per_page + 1;
                $end = min($paged * $posts_per_page, $replies_query->found_posts);
                echo sprintf(__('Viewing %1$s to %2$s (of %3$s replies)'), $start, $end, $replies_query->found_posts);
                ?>
            </div>
            <div class="bbp-pagination-links">
                <?php
                // Generate the pagination links
                echo paginate_links(array(
                    'total'   => $replies_query->max_num_pages,
                    'current' => $paged,
                    'format'  => '?paged=%#%',
                    'add_args' => false,
                    'prev_text' => __('« Prev'),
                    'next_text' => __('Next »'),
                ));
                ?>
            </div>
        </div>
    <?php
    else :
        echo '<p>No replies found.</p>';
    endif;
    
    // Reset post data
    wp_reset_postdata();
    
    do_action('bbp_template_after_pagination_loop');
    ?>
    
    hansderuiter
    Participant

    Thanks @robin-w,

    Nice to see that your plugin is being updated.

    Is there a default group that all users are added to? The particular forum that I want to restrict is one that everyone must be able to see and have access to. Having to manually add every new user to the right group wouldn’t work.

    #241015
    Robin W
    Moderator

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentytwenty, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

    #240855
    arnoldmatt
    Participant

    I’ve heard disabling plugins one by one and switching to a default theme can sometimes help with these AJAX functionality issues. Let me know if you try this and it works!

    #240854
    priyam1234
    Participant

    In the new version, I am encountering a major issue where all AJAX functionality, as well as BuddyPress and other plugins, are not working properly.

    I have checked every scenario, including using the default WordPress theme, and consistently face issues due to the new version of bbPress.

    I kindly request you to resolve this issue as soon as possible, as my client has raised a refund request because of this problem.

    houd
    Participant

    You need to pick the allowed html tags that the users can use in your “functions.php”, like so:

    function wp_bbpress_allow_tags(){
        return array(
            'span'=> array(
                'class'     => true,
                'style'     => true,
            ),
    	// add other tags to allow here
        );
    }
    add_filter('bbp_kses_allowed_tags', 'wp_bbpress_allow_tags');

    Keep in mind the tags you pick here are the only tags that will be allowed, so list all of them here.

  • Don’t ask me why the default allowed tags are different than the default shown TinyMCE buttons.
#240821
prashpbt
Participant

Hello Robin,

I am using the default Twenty Twenty-Two Version: 1.2 theme provided by WordPress in version WP 6.0.9, without any customizations.

Does that too need the above fix you mentioned?.

Also I have earlier version of BBpress i.e 2.6.9 working fine with WordPress 5.8 installed on one of a server, which works absolutely fine without any such issues.

Any way to debug the possible cause ?. Cause no errors in apache logs as well.

#240818

In reply to: Change log

Robin W
Moderator

Nothing new

The following 13 errors fixed

View RSS feeds return the all-topic feed if the view doesn’t exist
After export from SMF error: bbp_converter_db_connection_failed
BBP_Converter_DB does not have a method “__destruct
Restoring a trashed topic will set the post status to ‘draft’ as of WordPress 5.6.0
Default arg to “bbp_add_forums_roles()” can cause errors
Reduce subscription email subject duplication
Editor buttons missing since 2.6.8 upgrade
bbp_get_reply_url() generates incorrect link for a spammed topic
Search displays hidden forums to participants
The content-archive-forum.php template does not filter if the search form should be displayed
Recount topics for each user, counts only published topics
Statistics widget throws Undefined index if no replies or topics tags
“You may use these HTML tags and attributes:” not escaped correctly

#240812
Kokiri
Participant

Hello everyone,

I hope you’re all doing well. I wanted to bring up an issue I’m encountering with our forum roles not displaying correctly for custom roles since making a recent change. Here are the details:

Issue:

    Our custom forum roles were displaying correctly a few hours ago (e.g., instead of “Keymaster,” we had “Staff/Admin”). However, after disabling forum topic tags, the custom forum roles are no longer showing up. Instead, the default roles like “Keymaster” are being displayed.


Steps Taken:

    Disabled forum topic tags in the settings.
    Observed that the custom forum roles stopped displaying and reverted to default roles.

Has anyone else experienced a similar issue or have any suggestions on how to resolve this? Any help would be greatly appreciated!

Thank you in advance!

Best regards,

#240772
Robin W
Moderator

Go to Settings > Permalinks, select the default permalinks then save. Now select your preferred permalinks structure. This flushes the rewrite rules and can solve some possible 404 errors.

#240759
ttiefenbach
Participant

I’m trying to get a default featured image to display using a filter of “post_thumbnail_id” in my child theme’s functions.php file. I’m able to add a default thumbnail for post_type of topic, but I’d like it to be a custom thumbnail based on the id, or name of the forum the topic is in. Here’s what I have so far:

function my_filter_thumbnail_id( $thumbnail_id, $post = null ) {
	if ( $post->post_type != 'topic' )
		return $thumbnail_id;
	
	$forumname = get_forum_name( $post->forum_id );
	if ( $forumname == "wellness")
		$thumbnail_id = 7091;

	return  $thumbnail_id;
}
add_filter( 'post_thumbnail_id', 'my_filter_thumbnail_id', 20, 5 );

The issue is, “get_forum_name(),” is an undefined function. I’m not looking to override the default functions of bbPress, just be able to access the forum_id or forum_name from my theme’s functions.php file. Any help would be greatly appreciated! Thanks

#240722
Dean Scott
Participant

I just discovered more at the end of the PHP error…

LIMIT 0, 15 made by require(‘wp-blog-header.php’), require_once(‘wp-includes/template-loader.php’), apply_filters(‘template_include’), WP_Hook->apply_filters, bbp_template_include, apply_filters(‘bbp_template_include’), WP_Hook->apply_filters, bbp_template_include_theme_compat, BBP_Shortcodes->display_topic, bbp_get_template_part, bbp_locate_template, load_template, require(‘/plugins/bbpress/templates/default/bbpress/content-single-topic.php’), bbp_has_replies, WP_Query->__construct, WP_Query->query, WP_Query->get_posts

Is this helpful?

Yes, I’ve switched to 2024 theme AND deactivated all plugs, one-by-one. Same error.

#240679
teresaanderson
Participant

I copied the entire page. Please let me know if there’s something else you need. Thanks!

Site Details
PHP Version 8.1.29
WP Version 6.5.4
Multisite False
Active Members 1
Total Forums 9
Total Topics 3
Total Replies
Theme Twenty Twenty-Three 1.1
Theme Type FSE Block Theme
bbPress Version 2.6.9
Plugin Version 6.0.5
WP Debugging False

Site Plugins
MU Plugins Name and Version
– mu1 wpcomsh-loader.php

Active Plugins Name and Version
– active1 Akismet Anti-spam: Spam Protection 5.3.2
– active2 bbp style pack 6.0.5
– active3 bbPress 2.6.9
– active4 Enable Classic Editor 2.6
– active5 WordPress.com Editing Toolkit 4.26529
– active6 Gutenberg 18.5.0
– active7 Jetpack 13.6-a.5
– active8 Layout Grid 1.8.4
– active9 Page Optimize 0.5.5
– active10 Remove Footer Credit 1.0.14
– active11 Simple Custom CSS 4.0.6
– active12 What The File 1.6.0

Inactive Plugins Name and Version
– inactive1 BuddyPress 12.5.1
– inactive2 Crowdsignal Forms 1.7.2
– inactive3 Crowdsignal Polls & Ratings 3.1.1
– inactive4 Elementor 3.22.1
– inactive5 WP File Manager 7.2.9

File Generations
Filename Last Generation
bspstyle.css 2024-06-23 15:12:11
bspstyle-quotes.css 2024-06-10 13:43:35
bsp_delete.js 2024-06-10 13:43:35

Plugin Settings
Option Group Values
Theme Support
bsp_style_settings_theme_support

a:4:{s:3:”fse”;s:1:”1″;s:9:”fse_width”;s:0:””;s:17:”fse_template_page”;s:3:”101″;s:20:”fse_template_version”;s:1:”0″;}
BuddyPress
bsp_buddypress_support

No values set for: bsp_buddypress_support
Forums Index Styling
bsp_style_settings_f

No values set for: bsp_style_settings_f
Forums Templates
bsp_templates

No values set for: bsp_templates
Forums Display
bsp_forum_display

No values set for: bsp_forum_display
Forums Order
bsp_forum_order

No values set for: bsp_forum_order
Freshness Display
bsp_style_settings_freshness

No values set for: bsp_style_settings_freshness
Breadcrumbs
bsp_breadcrumb

No values set for: bsp_breadcrumb
Forum Buttons
bsp_style_settings_buttons

No values set for: bsp_style_settings_buttons
Login
bsp_login

a:1:{s:9:”update448″;s:1:”1″;}
Login Failures
bsp_login_fail

No values set for: bsp_login_fail
Forum Roles
bsp_roles

No values set for: bsp_roles
Subscription Emails
bsp_style_settings_email

No values set for: bsp_style_settings_email
Subscription Management
bsp_style_settings_sub_management

No values set for: bsp_style_settings_sub_management
Topic Order
bsp_topic_order

a:3:{s:18:”Default_OrderOrder”;s:1:”2″;s:18:”Forum_Order1Forums”;s:0:””;s:11:”reply_order”;s:1:”1″;}
Topic Index Styling
bsp_style_settings_ti

a:52:{s:19:”Pagination FontSize”;s:0:””;s:20:”Pagination FontColor”;s:0:””;s:19:”Pagination FontFont”;s:0:””;s:20:”Pagination FontStyle”;s:0:””;s:25:”Voice/Post Count FontSize”;s:0:””;s:26:”Voice/Post Count FontColor”;s:0:””;s:25:”Voice/Post Count FontFont”;s:0:””;s:26:”Voice/Post Count FontStyle”;s:0:””;s:27:”Topic Title LinksLink Color”;s:0:””;s:30:”Topic Title LinksVisited Color”;s:0:””;s:28:”Topic Title LinksHover Color”;s:0:””;s:20:”Topic Title FontSize”;s:0:””;s:20:”Topic Title FontFont”;s:0:””;s:21:”Topic Title FontStyle”;s:0:””;s:24:”Template Notice FontSize”;s:0:””;s:25:”Template Notice FontColor”;s:0:””;s:24:”Template Notice FontFont”;s:0:””;s:25:”Template Notice FontStyle”;s:0:””;s:31:”Template NoticeBackground color”;s:0:””;s:32:”Template Notice BorderLine width”;s:0:””;s:32:”Template Notice BorderLine style”;s:0:””;s:32:”Template Notice BorderLine color”;s:0:””;s:20:”Topic Started bySize”;s:0:””;s:21:”Topic Started byColor”;s:0:””;s:20:”Topic Started byFont”;s:0:””;s:21:”Topic Started byStyle”;s:0:””;s:49:”Sticky Topic/ReplyBackground color – sticky topic”;s:0:””;s:55:”Sticky Topic/ReplyBackground color – super sticky topic”;s:0:””;s:26:”Forum Information FontSize”;s:0:””;s:27:”Forum Information FontColor”;s:0:””;s:26:”Forum Information FontFont”;s:0:””;s:27:”Forum Information FontStyle”;s:0:””;s:33:”Forum InformationBackground color”;s:0:””;s:34:”Forum Information BorderLine width”;s:0:””;s:34:”Forum Information BorderLine style”;s:0:””;s:34:”Forum Information BorderLine color”;s:0:””;s:29:”Topic Index Headings FontSize”;s:0:””;s:30:”Topic Index Headings FontColor”;s:0:””;s:29:”Topic Index Headings FontFont”;s:0:””;s:30:”Topic Index Headings FontStyle”;s:0:””;s:13:”Lock IconSize”;s:0:””;s:14:”Lock IconColor”;s:0:””;s:18:”Sticky PinFontSize”;s:0:””;s:15:”Sticky PinColor”;s:0:””;s:11:”empty_forum”;s:0:””;s:19:”empty_forumActivate”;s:1:”1″;s:17:”must_be_logged_in”;s:0:””;s:18:”register_page_page”;s:0:””;s:17:”register_page_url”;s:0:””;s:16:”topic_title_link”;s:1:”0″;s:12:”topic_topics”;s:0:””;s:11:”topic_posts”;s:0:””;}
Topic Previews
bsp_style_settings_topic_preview

No values set for: bsp_style_settings_topic_preview
Topic/Reply Display
bsp_style_settings_t

a:51:{s:49:”Topic/Reply ContentBackground color – odd numbers”;s:4:”#fff”;s:50:”Topic/Reply ContentBackground color – even numbers”;s:7:”#fbfbfb”;s:34:”Topic/Reply HeaderBackground color”;s:7:”#f4f4f4″;s:48:”Trash/Spam ContentBackground color – odd numbers”;s:4:”#fdd”;s:49:”Trash/Spam ContentBackground color – even numbers”;s:4:”#fee”;s:36:”Closed Topic ContentBackground color”;s:4:”#fdd”;s:25:”Topic/Reply Date FontSize”;s:0:””;s:26:”Topic/Reply Date FontColor”;s:0:””;s:25:”Topic/Reply Date FontFont”;s:0:””;s:26:”Topic/Reply Date FontStyle”;s:0:””;s:25:”Topic/Reply Text FontSize”;s:0:””;s:26:”Topic/Reply Text FontColor”;s:0:””;s:25:”Topic/Reply Text FontFont”;s:0:””;s:26:”Topic/Reply Text FontStyle”;s:0:””;s:20:”Author Name FontSize”;s:0:””;s:20:”Author Name FontFont”;s:0:””;s:21:”Author Name FontStyle”;s:0:””;s:19:”Reply Link FontSize”;s:0:””;s:19:”Reply Link FontFont”;s:0:””;s:20:”Reply Link FontStyle”;s:0:””;s:15:”Author RoleSize”;s:0:””;s:16:”Author RoleColor”;s:0:””;s:15:”Author RoleFont”;s:0:””;s:16:”Author RoleStyle”;s:0:””;s:16:”Topic HeaderSize”;s:0:””;s:17:”Topic HeaderColor”;s:0:””;s:16:”Topic HeaderFont”;s:0:””;s:17:”Topic HeaderStyle”;s:0:””;s:21:”Topic Admin linksSize”;s:0:””;s:22:”Topic Admin linksColor”;s:0:””;s:21:”Topic Admin linksFont”;s:0:””;s:22:”Topic Admin linksStyle”;s:0:””;s:18:”Revisionsrevisions”;s:3:”all”;s:17:”mentions_priority”;s:0:””;s:12:”mentionsSize”;s:0:””;s:13:”mentionsColor”;s:0:””;s:12:”mentionsFont”;s:0:””;s:13:”mentionsStyle”;s:0:””;s:9:”hide_name”;s:1:”1″;s:11:”hide_avatar”;s:1:”1″;s:28:”participant_trash_topic_text”;s:43:”Are you sure you want to delete this topic?”;s:28:”participant_trash_reply_text”;s:43:”Are you sure you want to delete this reply?”;s:17:”must_be_logged_in”;s:0:””;s:12:”window_links”;s:1:”0″;s:16:”more_less_length”;s:3:”200″;s:9:”more_text”;s:7:”More…”;s:9:”less_text”;s:7:”Less…”;s:21:”new_reply_description”;s:16:”Create New Reply”;s:17:”topic_button_type”;s:1:”1″;s:16:”TopicButtonclass”;s:0:””;s:29:”topic_subscribe_button_prefix”;s:0:””;}
Topic Counts
bsp_settings_topic_count

No values set for: bsp_settings_topic_count
Topic/Reply Form
bsp_style_settings_form

a:27:{s:10:”LabelsSize”;s:0:””;s:11:”LabelsColor”;s:0:””;s:10:”LabelsFont”;s:0:””;s:11:”LabelsStyle”;s:0:””;s:25:”Text areaBackground Color”;s:0:””;s:13:”Text areaSize”;s:0:””;s:14:”Text areaColor”;s:0:””;s:13:”Text areaFont”;s:0:””;s:14:”Text areaStyle”;s:0:””;s:22:”ButtonBackground Color”;s:0:””;s:16:”ButtonText Color”;s:0:””;s:20:”SubmittingSubmitting”;s:10:”Submitting”;s:20:”Show_editorsactivate”;s:1:”0″;s:16:”topic_rules_text”;s:0:””;s:16:”reply_rules_text”;s:0:””;s:23:”topic_posting_rulesSize”;s:0:””;s:24:”topic_posting_rulesColor”;s:0:””;s:23:”topic_posting_rulesFont”;s:0:””;s:24:”topic_posting_rulesStyle”;s:0:””;s:35:”topic_posting_rulesBackground Color”;s:0:””;s:31:”topic_posting_rulesborder_color”;s:0:””;s:17:”placeholder_topic”;s:0:””;s:17:”placeholder_reply”;s:0:””;s:12:”htmlActivate”;s:1:”1″;s:15:”nologinActivate”;s:1:”1″;s:15:”errormsgMessage”;s:0:””;s:16:”no_anon_namename”;s:0:””;}
Profile
bsp_profile

No values set for: bsp_profile
Search Styling
bsp_style_settings_search

No values set for: bsp_style_settings_search
Unread Posts
bsp_style_settings_unread

No values set for: bsp_style_settings_unread
Quotes
bsp_style_settings_quote

No values set for: bsp_style_settings_quote
Moderation
bsp_style_settings_modtools

No values set for: bsp_style_settings_modtools
Latest Activity Widget Styling
bsp_style_settings_la

No values set for: bsp_style_settings_la
Custom CSS
bsp_css

a:1:{s:3:”css”;s:0:””;}
CSS Location
bsp_css_location

No values set for: bsp_style_settings_translation
Dashboard Admin
bsp_settings_admin

No values set for: bsp_settings_admin
bbPress Bug Fixes
bsp_style_settings_bugs

No values set for: bsp_style_settings_bugs
Block Widgets
bsp_style_settings_block_widgets

No values set for: bsp_style_settings_block_widgets
Column Display
bsp_style_settings_column_display

No values set for: bsp_style_settings_column_display
Topic Form Additional Fields
bsp_style_settings_topic_fields

No values set for: bsp_style_settings_topic_fields

#240637
isagazapla
Participant

I have created a subforum within a forum, and when generating the discussion, it gives this error:

Warning: Undefined variable $item in /homepages/25/d981722677/htdocs/clickandbuilds/nombreweb/wp-content/themes/classiadspro/includes/actions/general.php on line 121

Fatal error: Uncaught Error: Call to undefined function breadcrumbs_plus_get_parents() in /homepages/25/d981722677/htdocs/clickandbuilds/nombreweb/wp-content/themes/classiadspro/includes/actions/general.php:121 Stack trace: #0 /homepages/25/d981722677/htdocs/clickandbuilds/nombreweb/wp-includes/class-wp-hook.php(324): pacz_page_title() #1 /homepages/25/d981722677/htdocs/clickandbuilds/nombreweb/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters() #2 /homepages/25/d981722677/htdocs/clickandbuilds/nombreweb/wp-includes/plugin.php(517): WP_Hook->do_action() #3 /homepages/25/d981722677/htdocs/clickandbuilds/nombreweb/wp-content/themes/classiadspro/header.php(185): do_action() #4 /homepages/25/d981722677/htdocs/clickandbuilds/nombreweb/wp-includes/template.php(810): require_once(‘/homepages/25/d…’) #5 /homepages/25/d981722677/htdocs/clickandbuilds/nombreweb/wp-includes/template.php(745): load_template() #6 /homepages/25/d981722677/htdocs/clickandbuilds/nombreweb/wp-content/plugins/header-footer-builder/includes/theme-support/default/class-hfb-default-compat.php(63): locate_template() #7 /homepages/25/d981722677/htdocs/clickandbuilds/nombreweb/wp-includes/class-wp-hook.php(326): HFB\Themes\HFB_Default_Compat->override_header() #8 /homepages/25/d981722677/htdocs/clickandbuilds/nombreweb/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters() #9 /homepages/25/d981722677/htdocs/clickandbuilds/nombreweb/wp-includes/plugin.php(517): WP_Hook->do_action() #10 /homepages/25/d981722677/htdocs/clickandbuilds/nombreweb/wp-includes/general-template.php(38): do_action() #11 /homepages/25/d981722677/htdocs/clickandbuilds/nombreweb/wp-content/themes/classiadspro/page.php(20): get_header() #12 /homepages/25/d981722677/htdocs/clickandbuilds/nombreweb/wp-includes/template-loader.php(106): include(‘/homepages/25/d…’) #13 /homepages/25/d981722677/htdocs/clickandbuilds/nombreweb/wp-blog-header.php(19): require_once(‘/homepages/25/d…’) #14 /homepages/25/d981722677/htdocs/clickandbuilds/nombreweb/index.php(17): require(‘/homepages/25/d…’) #15 {main} thrown in /homepages/25/d981722677/htdocs/clickandbuilds/nombreweb/wp-content/themes/classiadspro/includes/actions/general.php on line 121
Ha habido un error crítico en esta web.

There has been a critical error on this website

Where it says nombreweb, I have replaced it with the name of my website so as not to leave it written here.

#240625
Uriahs Victor
Participant

I don’t know why, but the TinyMCE toolbar doesn’t show by default on Astra theme and Page Builder Framework theme. It does show on some default WP themes, but I don’t understand why.

In Astra, the toolbar is there in the HTML, but it has display: none set to the CSS because of this class string: .no-js .hide-if-no-js

I don’t quite understand what is causing that class to be added onto the toolbar. Can anyone shed some light? Is there some option or filter I need to set for this to show?

I at first thought it detected if there was No JS enabled in the browser but thats not the issue because I can use JS…im visiting my test forum just as Im visiting this one and it shows.

Viewing 25 results - 51 through 75 (of 6,794 total)
Skip to toolbar