Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress"'

Viewing 25 results - 276 through 300 (of 26,671 total)
  • Author
    Search Results
  • #238475
    user8472
    Participant

    So I added a forum on a wordpress page using shortcode. After that all the images on the page (outside the forum) disappeared. And I cannot add any – well I can add images, but they will not show (and no error messages). I have searched the posts here but cannot see an answer to this issue.

    I run the widget for all forums at the bottom of the page.

    #238457

    In reply to: Show user’s country

    Robin W
    Moderator
    #238456

    In reply to: Metallas to users.

    Robin W
    Moderator
    #238455

    In reply to: Create topic form.

    Robin W
    Moderator

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>buttons

    #238446
    Robin W
    Moderator

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>Forum Roles

    #238429
    huetaylt
    Participant

    Hi
    When I edit a forum. Set Forum Moderators properity and Click Update button, but bbPress didn’t update forum moderators and didnot show any error. I checked for sure that username (which chosen to set for forum moderators) exist in wordpress user manager. I don’t know why. Pls help me

    #238413
    Robin W
    Moderator

    This will let you do them inline, but no drag/drop.

    Inline Image Upload for BBPress

    Might be worth asking them if they could add that feature to their pro version

    Robin W
    Moderator

    you might also want to check that email from your site is working, you can use this plugin

    Check & Log Email

    If you enable logging, then even if they don’t come you can see it in the log.

    Robin W
    Moderator

    in that case if you have the capability – turn on debug

    https://wpforms.com/developers/how-to-enable-debugging-in-wordpress/

    traddictiv
    Participant

    Hi. I get a “There has been a critical error on this website.” error message when responding to a topic on the front-end of our website. All was working well until recently, but now responding to topics stopped working…

    Not sure if this is related to using WordPress Version 6.4.1?
    I have tried disabling plugins, but the issue persists…

    I do not use any theme as I use Oxygen Builder which “disables” any WordPress theme and overwrites them. I have not had any update on Oxygen for a while and bbPress was working fine all this time…

    Also, finally, I have disabled and re-enabled the plugin and re-saved all the settings, but again, the issue persists…

    I am using PHP 8.2. How can I fix this issue?

    #238398
    Robin W
    Moderator

    ok, 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

    #238396
    Robin W
    Moderator

    it is unusual to see index.php included in a url

    https://meltdowncnc.com/wordpress2/index.php/forums/topic/website-test-committee-input/

    what theme are you using?

    #238394
    electech1313
    Participant

    Not that I’m aware of. Meaning something in WordPress or elsewhere?

    #238384
    electech1313
    Participant

    See previous post and…

    I just noticed that when I click that link, it redirects to

    Edit Ad

    I really don’t know how that happened or how to fix it.

    #238383
    electech1313
    Participant

    https://meltdowncnc.com/wordpress2/index.php/forums/reply/385/edit/

    I hope this doesn’t go through more than once. It said I’ve already sent but it isn’t showing on my screen that is did.

    #238378
    electech1313
    Participant

    I recently installed bbpress and AWPCP Classifieds. Whenever a user clicks the edit button to edit their post, it takes them to a page that asks for the Ad email and access key. This page is default with AWPCP and is called -Edit Ad. Inside that page is the shortcode [AWPCPEDITAD]. I disabled the AWPCP plugin to test and the result was when a user clicked the edit button, it then just shows the shortcode text from the -Edit Ad page. I am little more than a beginner when it comes to web development. I have built a few websites but they are all basic and mostly wordpress sites. This is the site address if you would like to look at it. https://meltdowncnc.com/wordpress2/

    The site is for testing. Hopefully once it is done, I can put it into service for my club. Thanks if anyone can help.

    #238361
    Robin W
    Moderator

    not totally sure that you are spam, so I’ll reply

    bbp style pack

    should give you lots that you need, and has a list of other useful bbpress plugins

    #238328

    In reply to: Forum

    testdevs
    Participant

    I believe that Method 1 was used to create the forum page, but I cannot find any pages associated with this name in the WordPress pages section.

    #238306
    kelixirr
    Participant

    Serious css issues I am facing:

    1. My reply content are overflowing out of the box and subsequent replies are not properly inheriting the CSS styles even of the buddress and the styles that I added. Check my site here: https://neuraldemy.com/forums/topic/subscription-payment-related-queries/

    Other questions that I need help with:

    1. How to allow the use of Markdown in forum editor?
    2. How to highlight the first topic so that it can stand out from the crowd of replies just like wordpress org forums main topic.
    3. How to keep the author’s details and photo above the content (just like the WordPress org has) and shift this line “This topic was modified 1 day, 4 hours ago by XYZ.” below the content.
    4. How to allow admin or moderator to highlight the best reply of reply that contains solution or to ping the solution reply below the main topic.

    #238253
    markwilliams21
    Participant

    Certainly! In the WordPress REST API, creating a new topic and assigning it to a parent forum involves utilizing the wp/v2 endpoints for both forums and topics. To achieve this, you can follow these steps:

    ### 1. Get the Forum ID
    Firstly, you’ll need to know the ID of the parent forum to which you want to assign the new topic. You can retrieve this ID by making a GET request to the forums endpoint, typically /wp/v2/forums.

    For example:
    `http
    GET /wp/v2/forums
    `

    ### 2. Create a New Topic
    Make a POST request to the topics endpoint, usually /wp/v2/topics, providing the necessary parameters including title, content, and forum to link it to the specific forum.

    For example:
    `http
    POST /wp/v2/topics
    Content-Type: application/json

    {
    “title”: “New Topic Title”,
    “content”: “Content of the new topic”,
    “forum”: <forum_id>
    }
    `
    Replace <forum_id> with the ID of the parent forum retrieved from step 1.

    ### Example Using cURL
    Using cURL, the process might look something like this:
    `bash
    curl -X POST -H “Content-Type: application/json” -d ‘{“title”:”New Topic Title”,”content”:”Content of the new topic”,”forum”:1}’ https://yoursite.com/wp-json/wp/v2/topics
    `
    Replace https://yoursite.com with your actual WordPress site URL and 1 with the ID of the desired forum.

    Remember to authenticate the API request if your WordPress site requires authentication for creating new content.

    This approach allows you to create a new topic and assign it to a parent forum via the WordPress REST API. Adjust the endpoint URLs and parameters as needed based on your specific WordPress configuration.

    jgasba
    Participant

    I updated an issue about this on bbPress trac: https://bbpress.trac.wordpress.org/ticket/3355#comment:4

    #238192
    tutfox
    Participant

    Hey guys,

    the forums index is not showing and causing the site design to break whilst topics pages remain displaying fine.

    WordPress version: 6.4.1
    Theme: Divi version: 4.23.1
    bbPress version: 2.6.9

    https://umaps.org.uk/forums/

    Index slug /forums
    Other pages called forums? No (bin empty as well).
    I’ve done what was suggested in the bbp style pack and cleared static css files and disabled the option.

    I’ve also set the permalink structure to post name and saved it a couple of times.

    Can you help me with this?

    Warm wishes,
    Maria

    #238165
    Robin W
    Moderator

    without a pluguin

    Custom Capabilities

    with a plugin

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>roles

    #238130
    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

    #238118
    tamim78
    Participant

    Hello! I’m interested in having a forum for each of my classes that I have through Learndash and have setup bbpress to create those class forums, however, I need help with how to keep students in the class after they submit a question or reply in the forum. Right now, after they submit their question it takes them to the bbpress forum area but I’d like them to stay in the class. Any ideas on how to achieve that?

    http://www.lovenotions.com
    version 2.6.9 bbpress
    version 6.3.2 wordpress

Viewing 25 results - 276 through 300 (of 26,671 total)
Skip to toolbar