Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 1 through 25 (of 11,523 total)
  • Author
    Search Results
  • #244335
    Robin W
    Moderator

    could be hundreds of reasons, and may be coincidental of 6.8 or may not.

    so 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

    #244267
    Robin W
    Moderator

    ok, I am just a guy trying to help, I do not work for bbpress, and I simply listed what I did on my test site to get it to work.

    so I cannot help for your specific site, but you have installed guttenburg 20.x when the instructions say a different version.

    But if the instruction don’t work, then you are on your own to get it going.

    #244196

    In reply to: Memory Leak?

    Robin W
    Moderator

    There are many reasons why this might occur, that are site specific. This is not a known error with bbpress and more likely to be related to either the set up of your site, or 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

    If that does not point to the error, then I’d suggest you contact your host provider for help.

    #244084
    yosmc
    Participant

    Hi all,

    I’ve been doing a test run today to import my old phpBB board to bbpress, and it worked surprisingly well (as in: the whole process finished without hanging).

    In the end, though, I do have a number of problems, and I was wondering if anyone doing a similar import was able to solve them.

    – The old board has thousands of registered users (many of them spammers :/ ), and I didn’t want to clutter my WordPress install with all those accounts, especially since it’s a multisite install and I’m mainly migrating the board for archiving purposes. So I didn’t check the “import user accounts” box, but now all user names are just “Anonymous”. Any way to migrate the user names without the accounts?

    – It seems like quoted posts are broken, as the “bbcode_quote” tag isn’t applied where it should be.

    – Smilies aren’t imported properly. The relative path to the smilies is lost, and when there’s more than one smiley in a row, only the first one has an image tag.

    – [img] tags aren’t being properly converted either. Or rather the conversion seems to work ok, but after the actual link, the [img] code, which bbpress can’t read, is retained for some reason.

    – Like I said, overall conversion seemed to work well, but cluttered the error log with hundreds of these messages:

    PHP Warning: Trying to access array offset on value of type bool in /wp-content/plugins/bbpress/includes/admin/parser.php on line 1289

    Anything to worry about?

    – I understand that no attachments are imported by default, but maybe someone found a workaround?

    Thanks!

    #244051
    krishanatwp
    Participant

    I cannot subscribe to group forums.
    When clicking “subscribe”, nothing happens.
    I created a private test forum. In this test forum, subscribe works just fine, i.e. the link changes to “unsubscribe”.

    https://metaphorum.org
    WP 6.7.2
    Astra, Astra Pro. I did not try with a standard theme because it works on my test forum.
    bbpress: 2.6.12
    BuddyPress: 14.3.4

    #244035
    Robin W
    Moderator

    ok there are thousands of themes, and tens of thousands of plugin, so whilst I have had a quick look at my test site with Astra, I cannot spend time on the theme to work out what you need to do.

    So to test 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

    #244016
    Robin W
    Moderator

    On a quick test, I’m not seeing titles on any pages !

    But try looking in

    dashboard>astra>customize>custom post types>forums>archive forums>and look in the title section which has a toggle and lots of settings.

    There also seem to be settings for single forums, topics and replies, so you may need to work through these.

    #244012
    izzi8181
    Participant

    Hi, I’ve recently installed bbpress for a new site and am currently setting it up. I’ve encountered a problem which is that none of my forum pages are showing the title.

    I’m using the Astra theme and title show on my other webpages, so I don’t believe I have it disabled anywhere, which means I can’t figure out why it’s hidden!

    I have bbstylepack and can’t find anything there for showing/hiding titles (I’ve hidden the breadcrumbs, but that’s not what I’m meaning).

    This is my forum page (you can click into the test forums and test topics and see there are no titles on any of the pages)
    https://www.triptathlon.com/forums/

    But you can see on my holding pages there are titles; for example:
    https://www.triptathlon.com/shop-2/
    https://www.triptathlon.com/groups/

    Any idea why the page titles are displaying on my pages but not my forum pages? It makes things hard to follow without the title there, particularly for topic pages. All I can think is there’s something somewhere hiding in the settings for my theme, but the only places I’ve found have the page titles set to show….

    amarynth
    Participant

    This has worked for many years and just now it screwed up.

    I attach an image. The box where you point to the image appears. I go and get the image and in the box appears there has been a critical error on this website.

    bbPpress Version 2.6.12
    Latest WP
    bbPress Enable TinyMCE Visual Tab Version 1.0.1

    Thanks if anyone knows about this. Searching this, there are hundreds of support requests all over the place for a ‘critical error on this website’, but it only here that it appears. The rest of the site functions normally.

    neon67
    Participant

    Perhaps someone will find it useful. This code does not load the system and saves the result in temporary storage.

    // Function to fetch the latest image from a topic
    async function fetchLatestImageFromTopic(topicUrl) {
        // Check if there is cached data and if it is fresh
        let cachedData = localStorage.getItem('latestImageData');
        let cachedTimestamp = localStorage.getItem('latestImageTimestamp');
        const cacheLifetime = 24 * 60 * 60 * 1000; // 24 hours
    
        // If there is cached data and it's fresh, display it
        if (cachedData && cachedTimestamp && (Date.now() - cachedTimestamp < cacheLifetime)) {
            document.getElementById('latest-image-container').innerHTML = cachedData;
            return;
        }
    
        // Request to the server to get the topic data
        try {
            const response = await fetch(topicUrl);
            if (!response.ok) throw new Error('Page load error');
    
            const text = await response.text();
            const parser = new DOMParser();
            const doc = parser.parseFromString(text, 'text/html');
    
            // Extract all replies in the topic
            const replies = Array.from(doc.querySelectorAll('.bbp-reply'));
    
            let latestImage = null;
            let latestDate = 0;
            let heading = '';
            let description = '';
    
            // Loop through all replies and find the freshest image
            for (let reply of replies) {
                const postDate = new Date(reply.querySelector('.bbp-post-meta .bbp-post-date').textContent).getTime();
                const img = reply.querySelector('img');
                
                if (img && postDate > latestDate) {
                    latestImage = img;
                    latestDate = postDate;
                    heading = reply.querySelector('h3') ? reply.querySelector('h3').innerText : '';
                    description = reply.textContent.trim().replace(heading, '').trim();
                }
            }
    
            // If an image is found, create HTML content
            if (latestImage) {
                const imgSrc = latestImage.getAttribute('src');
                const imgAlt = latestImage.getAttribute('alt') || '';
    
                const outputHtml = 
    
                    <div style="text-align: center;">
                        ${heading ? <code><h3>${heading}</h3></code> : ''}
                        <img src="${imgSrc}" alt="${imgAlt}" />
                        ${description ? <code><p>${description}</p></code> : ''}
                    </div>
                ;
    
                // Save the data in local storage
                localStorage.setItem('latestImageData', outputHtml);
                localStorage.setItem('latestImageTimestamp', Date.now());
    
                // Display the result on the page
                document.getElementById('latest-image-container').innerHTML = outputHtml;
            } else {
                document.getElementById('latest-image-container').innerHTML = '<p>No images found.</p>';
            }
        } catch (error) {
            console.error('Error:', error);
        }
    }
    
    // Call the function with the topic URL
    fetchLatestImageFromTopic('https://www - yours - topic');

    How This Code Works:
    Cache Check:

    First, we check if there is any cached data in localStorage.

    If the data exists and is still fresh (within the last 24 hours), we display it on the page.

    Server Request:

    If there is no cache or it’s outdated, we send an AJAX request to the server to retrieve the topic data.

    We only need to parse the HTML content to extract images and publication dates.

    Finding the Freshest Image:

    We loop through all the replies and extract the image and publication date.

    If the date of the current reply is more recent than the previous one, we update the image and data.

    Caching the Result:

    After finding the freshest image and associated content, we save the result in localStorage so we don’t need to make repeated requests.

    Displaying the Result:

    We display the result on the page, including the image, heading (if available), and description.

    Where to Place This Code?
    HTML: Insert this code within a <script> block on the page where you want to display the image.

    #243670
    Robin W
    Moderator

    As a test, can you try

    add_filter ('bbp_get_topic_reply_count', 'rew_return_int', 10 , 2) ;
    
    function rew_return_int ($replies, $topic_id ) {
    return int($replies) ;
    }

    Put this in your child theme’s function file –

    ie wp-content/themes/%your-theme-name%/functions.php

    where %your-theme-name% is the name of your theme

    or use

    Code Snippets

    and let me know if it works

    #243602
    duffy50
    Participant

    I was trying to use the Latest Activity (style pack) Widget with a specific Forum Id in a sidebar and in a custom widget area. The problem I ran into was that the options to customize the widget in the custom widget area will not open up. I did also try and use the Widget multiple times within the sidebar and ran into the same issue.

    My WordPress and bbpress are current, I also have the style pack plugin. My site is built using Divi.
    https://iowaminiz.com/membership-forum/

    Is there a conflict if the Latest Activity Widget is used more than once and is there a workaround?

    Thanks.

    #243568

    In reply to: The tags are missing

    Robin W
    Moderator

    I suspect you are feeling some frustration as am I !. I have been supporting bbpress for 14 years, and I wrote the first version of bbp-style-pack over 10 years ago and have developed and supported it since then.

    Every website is a combination of WordPress and its settings, your theme and its settings, any adjustments to that theme, and all the plugins and each of their settings. That’s before we look at things like php versions, apache stuff, ht-acess, hoster settings and limitations and a bunch more stuff.

    That makes most sites pretty unique, so site A will never replicate site B in it’s problems and issues, so what works on my test site is not guaranteed to work on your site.

    So what I ask you to do is based on my best view of what might be the issue, but I am using past skill and knowledge to make informed guesses.

    so can you send me a screenshot of the following page

    dashboard>settings>bbp-style-pack>Dashboard Admin

    thanks

    #243551

    In reply to: The tags are missing

    Robin W
    Moderator

    ok, so if you are on style pack version 6.2.8 and have checked the setting as described above, it should appear.

    But I am suspecting that the links that are added by another plugin or plugins – the ones that do link stats, SEO details, SEO title and SEO desc might be overriding my settings.

    As a test, can you deactivate the related plugin and see if tags appear, if they do, let me know which plugin you are using to do those extra options

    #243274
    Robin W
    Moderator

    1. not sure what is the ‘thankyou message’ you get?

    A reply I make just gets accepted and then goes to the reply with the url which is the ID of the reply.

    /forums/topics/testtopic/#post-33905

    so what is adding the ‘thankyou’ message

    2. If it is written to the database it will be in

    dashboard>settings>replies either in all, pending, trash or spam – if it is not there, then it is not in the database.

    3. what have you got set in
    dashboard>settings>bbp style pack>Topic/Reply Form item 16 if checked, try unchecking it or visa versa

    4. and check items 13 and 14 if ticked untick to see if that fixes

    #243212
    bobjgarrett
    Participant

    Done that but it still goes to a 404 error page. I am using a specific log in page not WP nor bbPress. The link in the email sent goes to a “test_content” page.

    #243139
    Robin W
    Moderator
    #243051
    Robin W
    Moderator

    Thanks

    This is just a warning that WordPress 6.7 introduced.

    bbpress in itself does not issue that warning, so I’d suspect that another plugin is affecting this.

    so you need to test to see which other plugin or your theme is doing this.

    I’d start with loco translate and LearnPress – bbPress Integration as likely candidates.

    If not you’ll need to work out which

    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

    #243042
    novawebb
    Participant

    Hi Robin

    Thank you for your response.

    We have already tried several troubleshooting steps, including:

    Changing the theme.
    Deactivating all plugins.
    Contacting Divi (theme) support.
    Contacting bbPress support.
    Creating a new .htaccess file.
    Uploading fresh WordPress core files.
    Following the recommendations in this video: YouTube link.
    Testing with the Health Check & Troubleshooting plugin.

    After extensive testing and investigation, our web hosting provider has concluded that bbPress is attempting to use an abnormally high amount of PHP memory. They have also provided us with an error log file that might help clarify the issue further. Please let me know how we can upload this.

    We would appreciate any insights or suggestions you may have to resolve this problem.

    Looking forward to your response.

    #243031
    Robin W
    Moderator

    I’d start by deactivating 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

    #242980
    kpstraus
    Participant

    @mentions don’t seem to be working on my forum at sparkt.caadpe.org/forums. I’m using bbpress with Memberpress. How can I troubleshoot this? You can see my attempts here: https://sparkt.caadpe.org/forums/topic/notification-test/. You’ll need to register a free account to see this.

    #242917
    Joakim Nömell
    Participant

    Hello. I run a site where I use the theme Blog FSE. BBPress does not work with this theme. It works fine with Twentysixteen, for example. Is there any way to solve this so that BBPress can work with Blog FSE so I don’t have to change themes? My knowledge of PHP is low and I have a visual impairment and therefore it is quite difficult to work too much in PHP code.

    Latest WordPress and BBPress versions.

    #242835

    In reply to: Seo for bbPress

    yt
    Participant

    Hello Mr. Robin
    This plugin has a problem with not updating and has received a warning:

    “This plugin has not been tested with the latest 3 major releases of WordPress. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.”

    Will this cause security issues, or problems with the plugin’s functionality, or interference with other plugins, especially with the new version of WordPress, etc.?

    #242734
    kampot888
    Participant

    Advanced Editor Tools

    Advanced Editor Tools + BBPRESS

    I’ve read this topic, but it’s still unresolved, so I’d like to ask a new question here.

    I’m currently installing and testing it, but it won’t load in the BBPRESS text area. Is there a way to set it?

    #242678
    casperrues1
    Participant

    I’m looking to add a creative “broken screen” effect to my bbPress forum. The idea is to make it look like the screen is cracked, either when someone first enters the forum or after performing a specific action.

    I’m unsure of the best way to achieve this. Should I use custom CSS or JavaScript to create the effect? Or is there a plugin or feature in bbPress that could help with this?

    Any suggestions will be very helpful for me.

    Example page: Broken Screen

    I’ve explored custom CSS and JavaScript options, and also checked out the following resources:

    bbPress

    Codex


    https://wordpress.org/plugins/

    Even after going through these, I’m still unsure of the best way to achieve the effect.

Viewing 25 results - 1 through 25 (of 11,523 total)
Skip to toolbar