Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress"'

Viewing 25 results - 376 through 400 (of 26,737 total)
  • Author
    Search Results
  • #237943

    In reply to: Image upload

    ibnat
    Participant

    Hi, I use GD bbPress Attachments

    GD bbPress Attachments is an easy-to-use plugin for WordPress and bbPress for implementing files upload for bbPress Forums topics and replies. You can control file sizes from the main plugin settings panel, or you can change some attachments settings for each forum individually.

    Works fine for my forum

    norcom41
    Participant

    In a bbPress forum I want to prevent participants from creating topics but allow replies. In searching the Internet I found code examples from which I selected some to build a plugin. I know a little PHP but WordPress is like a “black box.”

    add_action(‘wp_loaded’,’modify_participant’);

    function ‘modify_participant'()
    {
    add_filter(‘mod_participant’, ‘upd_participant’);
    }

    function upd_participant($role,$caps)
    {
    $role = bbp_get_participant_role();
    $caps = modify_capabilities($role);
    }

    function modify_capabilities($role)
    {
    return array(

    // Topic caps
    ‘publish_topics’ => false,
    ‘edit_topics’ => false,
    ‘edit_others_topics’ => false,
    ‘delete_topics’ => false,
    ‘delete_others_topics’ => false,
    ‘read_private_topics’ => false,

    // Topic tag caps
    ‘manage_topic_tags’ => false,
    ‘edit_topic_tags’ => false,
    ‘delete_topic_tags’ => false,
    ‘assign_topic_tags’ => false
    )
    }

    For instance the WP loaded hook causes it to run once at the start which should call those functions to initialize things. Is an add_filter also executed at that time to complete initialization? Then the black box proceeds with the bbp_get_parcipant_role routine so that the capabilities array elements can be updated. I read that WP filters always expect an object to be returned. It seems that these wouldn’t be permanent but just temporary in memory for executing that page. However my suspicion is that more coding would be necessary because that would be too much to depend on the black box for.

    #237917
    fadilla
    Participant

    Hello everyone, I’m a beginner using the bbPress plugin in WordPress. I have some questions, and I hope I can get some help.

    1. If I have 3 forums, Forum A, Forum B, and Forum C, and there’s User1 who wants to create a topic but doesn’t want to enter a specific forum first. They want to create a topic and then choose the forum. How can I create a form for this and add the option to select a forum when User1 wants to create a topic?
    2. Can the admin set it as a default so that when User1 creates a topic and someone replies, it automatically goes to their email?
    Thank you in advance.

    #237915
    Ricsca2
    Participant

    I need to create an area on my site where users can write what they need and interested professionals can respond to them.
    I was trying to understand how to do it with wordpress and I thought that I could create categories by type where users can insert a post and all professionals receive an email that that post has been created in the category that they have “selected” as the category of interest.
    If you know other ways I could do this besides bbpress that would be even better.

    #237890
    kingtetra
    Participant

    caching provided by wordpress and jetpack

    #237888
    kingtetra
    Participant

    I need help fixing this issue with my forum the staging site works fine! The production site does not, I have talked to wordpress support and they couldn’t figure it out either. Everything is the same… How do I fix this issue. Everytime I post to the forum I have to clear cache and cookies to see it. but it works just fine on test site? SOMEBODY HELP! Thank you, here is my sites:
    staging: https://staging-018d-simplysoundadvice.wpcomstaging.com/
    Production: https://simplysoundadvice.com

    #237842
    Robin W
    Moderator

    I am not a bbpress author, just someone who helps out here.

    Moving bbpress between sites is surprisingly difficult.

    This is because bbpress is so tightly integrated into WordPress.

    This gives 2 main issues:

    1. Users – bbpress stores topic and reply authors as their WordPress user ID number. So unless the all the bbpress authors users on the source site a) exist on the target site and b) have exactly the same ID numbers on the target site, then imports can have issues.

    2. bbpress users WordPress Custom post types and the WordPress Posts table. This means that bbpress forums, topics and replies are not in a separate table, but integrated into posts and pages table. Many plugins use this method. So on the source site a fourm might have a post ID of say 168, but on the target site post 168 might already exist as say a page. So on import WordPress importer will just allocate it the next ID number in the posts table, lets say 265. Now when topic belonging to the forum 168 on the source site is imported it still thinks it belongs to a forum with a post ID of 168, but this is already allocated to a page, so the topic is not listed as belonging to any known forum. The same applies to topics and replies.

    I’ll post more on this later, but that outlines why it is not working

    #237821
    scratchy101
    Participant

    BTW, I’m using this plugin to sort by descending order.

    #237820
    scratchy101
    Participant

    I’m having the same issue.
    I have the post sort order set to descending and posts per page set to 25.
    On multi-page threads (more than 25 posts) the pagination works correctly for most links except the “Last Post” link. When users click on the link under last post column, they are taken to the last page instead of the first page with the newest reply.
    Would this plugin resolve this issue?
    Or can I edit a PHP file to fix this?

    #237796
    Robin W
    Moderator

    I appreciate that you are feeling a sense of frustration.
    But both WordPress and bbpress are free software, and come with free support offered by volunteers.
    In effect you are asking someone to take their free time to help you, and then complaining that it is not at the level you want.
    When I asked for a link to your forum page, you were unable to provide this, giving a link to a page that does not exist. As such it is hard to help – a bit like asking for help with your car, but then not allowing me to examine your car.
    If you provide a link to the forum, the I may be able to help further, otherwise ethe best I can offer is to read the documentation

    Step by step guide to setting up a bbPress forum – Part 1

    and/or the advice in

    Before Posting

    #237793
    yagirlrenae
    Participant

    I added blog to site but it keeps taking me to homepage with clicking on topics and categories. Also why is it so difficult to use the forum it suppose to be made for wordpress. Also, why is it that noone can walk me through each step instead of sending information that is not useful for someone who is not good at code?

    #237789

    In reply to: Forum layout settings

    Robin W
    Moderator

    bbp style pack

    has lots of options to style and add features to bbpress

    #237788
    kudejstari
    Participant

    Hi, I’ve been seeing that it is generally suggested to use the bbpress importer to get the data from kunena, but in my case it freezes in step 1 and I guess it’s because of the version difference (since bbpress importer has support until kunena3).

    I am looking to migrate a kunena forum in joomla to bbpress with wordpress. The kunena version is 6.x. Is there any way to do it?

    Wordpress version: 6.3.1
    Bbpress version: 2.6.9

    Robin W
    Moderator

    you might do better to just install

    bbp style pack

    this should let you match or contrast elements as you wish

    sethbburgess
    Participant

    New to BBPress. WordPress version 6.3.1. Avada theme 7.11.2, BBPress 2.6.9. The default installation of BBpress is picking up colors from my theme which I don’t want. I have followed the instructions in the article https://codex.bbpress.org/themes/theme-compatibility/ like this “The “css” directory contains style sheets that work with the default markup. Copy any you want to modify into a directory named “css” in your theme’s root. eg. /wp-content/themes/%your-theme%/css/” I have created the css directory in the theme root directory and copied the bbpress-rtl.css file to that css directory. I have not yet modified the file. There is no change to the look of BBPress. I even rebooted the server. What am I missing?

    #237707
    Robin W
    Moderator

    if they want to look at code that already does this, then they can download and crack open the code in

    bbp profile information

    #237695

    Topic: Help Please

    in forum Installation
    yagirlrenae
    Participant

    I have fololowed all instructions to setup forum and when I click on a titler it sends me straight to my homepage whats is going on? its frustrtaing making me want to ditch wordpress

    #237670

    In reply to: upload images

    ibnat
    Participant

    Hi, I use GD bbPress Attachments

    GD bbPress Attachments is an easy-to-use plugin for WordPress and bbPress for implementing files upload for bbPress Forums topics and replies. You can control file sizes from the main plugin settings panel, or you can change some attachments settings for each forum individually.

    Works fine for my forum

    #237668
    Robin W
    Moderator

    This is one of the new FSE themes, so you need a fix to work with bbpress.
    As well as bbpress install

    bbp style pack

    once activated, navigate to

    dashboard>settings>bbp style pack, and you should see the first tab called ‘Theme Support’ – if you don’t see this, come back.

    In that tab, select

    Enable Theme Support

    and save

    The forums should then display

    #237647
    Robin W
    Moderator

    if you change them to hidden then you and mods can see

    Otherwise

    Private groups

    #237597
    Robin W
    Moderator

    sorry, I’m just a free volunteer, I generally don’t have the time to look at individual problems, and this seems to be specific to your site.

    I am suspicious that it might be caching software – can you confirm that neither your site or hoster use this, or if they do as a test disable.

    I would also try

    dashboard>settings>permalinks and just click save – this resets the permalinks and may help

    Then I would do the following

    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

    #237589
    Josh Virkler
    Participant

    Ok, so beloaw is the most recent response from Cloudways. Can anyone from bbPress possibly provide the info requested so we can properly exclude this from Redis? Thanks!

    ————————-
    These specific errors typically occur due to the buddy boss caching group conflicting with the Redis keys.
    It is usually essential to exclude some of the cache groups/plugins to ensure that there are no conflicts due to different ways of handling of cache key which can cause issues with transients.

    If any conflicts are observed, the best way to do this is to exclude them as instructed in the guide below:-

    https://wordpress.org/support/topic/understanding-ignored-groups-and-how-to-best-apply/

    https://objectcache.pro/docs/ignoring-groups

    This typically requires a bit of testing due to different caching statuses which can still be utilized to ensure the proper allocation of resources.

    We have already implemented a documented fix that was typically applied by Buddy Boss:-
    https://github.com/buddyboss/buddyboss-platform/issues/1715

    However, despite numerous methods, the issue remains. Due to the circumstance of this issue, it’s imperative to check in with the plugin team before excluding their groups further, they can typically provide proper cache groups which can ensure perfect performance as other caching groups involving BuddyBoss typically was not documented and could have a negative performance impact if excluded without proper evaluation.

    #237580
    TreeTrail
    Participant

    Significant Problem:

    Every few days, some Sub-Forums stop displaying!  This seems to happen after a new topic is added.  I’m not sure when this problem started.  Currently, the “HIKING” sub-forums do not display.  Sometimes I can get this issue to reset by changing the Sub-Forums Visibility setting to “Public” and then back to “Private”.  I clear browser histories and resave Permalinks.  But this is a temporary solution.  With my limited knowledge, I’ve spent many many hours trying to pinpoint the cause and resolve this.  I now set up a test copy site, that is using the WP 2022 theme with only 2 plugins: a page builder and bbPress.  And there are no bbPress scripts in the Function.php file.  The problem still persists.  Any assistance would be very greatly appreciated!  Testing site: https://staging39.wilmingtontrailclub.org/bbpress-forum-test/

    *******************************************
    Testing Site Configuration:

    
    ### wp-core ###
    
    version: 6.3.1
    site_language: en_US
    user_language: en_US
    timezone: America/New_York
    permalink: /%postname%/
    https_status: true
    multisite: false
    user_registration: 1
    blog_public: 1
    default_comment_status: closed
    environment_type: staging
    user_count: 1974
    dotorg_communication: true
    
    ### wp-paths-sizes ###
    
    wordpress_path: /home/customer/www/staging39.wilmingtontrailclub.org/public_html
    wordpress_size: 67.23 MB (70494422 bytes)
    uploads_path: /home/customer/www/staging39.wilmingtontrailclub.org/public_html/wp-content/uploads
    uploads_size: 390.90 MB (409892014 bytes)
    themes_path: /home/customer/www/staging39.wilmingtontrailclub.org/public_html/wp-content/themes
    themes_size: 23.65 MB (24802712 bytes)
    plugins_path: /home/customer/www/staging39.wilmingtontrailclub.org/public_html/wp-content/plugins
    plugins_size: 187.12 MB (196210432 bytes)
    database_size: 287.33 MB (301287561 bytes)
    total_size: 956.24 MB (1002687141 bytes)
    
    ### wp-active-theme ###
    
    name: Twenty Twenty-Two (twentytwentytwo)
    version: 1.4
    author: the WordPress team
    author_website: https://wordpress.org/
    parent_theme: none
    theme_features: core-block-patterns, post-thumbnails, responsive-embeds, editor-styles, html5, automatic-feed-links, block-templates, widgets-block-editor, wp-block-styles, editor-style
    theme_path: /home/customer/www/staging39.wilmingtontrailclub.org/public_html/wp-content/themes/twentytwentytwo
    auto_update: Disabled
    
    ### wp-themes-inactive (2) ###
    
    Kleo Child: author: SeventhQueen, version: (undefined), Auto-updates disabled
    Kleo: version: 5.2.0, author: SeventhQueen, Auto-updates disabled
    
    ### wp-mu-plugins (1) ###
    
    restrict username email character: version: 1.1, author: BENACEUR
    
    ### wp-plugins-active (2) ###
    
    bbPress: version: 2.6.9, author: The bbPress Contributors, Auto-updates disabled
    WPBakery Page Builder: version: 7.0, author: Michael M - WPBakery.com, Auto-updates disabled
    
    ### wp-plugins-inactive (32) ###
    
    amr users: version: 4.59.4, author: anmari, Auto-updates disabled
    amr users plus: version: 3.27, author: anmari, Auto-updates disabled
    amr users plus buddypress: version: 2.6, author: anmari, Auto-updates disabled
    amr users plus pmp: version: 1.1, author: anmari, Auto-updates disabled
    bbp style pack: version: 5.6.7, author: Robin Wilson, Auto-updates disabled
    BP Profile Shortcodes Extra: version: 2.5.2, author: Venutius, Auto-updates disabled
    BuddyPress: version: 11.3.1, author: The BuddyPress Community, Auto-updates disabled
    Classic Editor: version: 1.6.3, author: WordPress Contributors, Auto-updates disabled
    Classic Widgets: version: 0.3, author: WordPress Contributors, Auto-updates disabled
    CMS Tree Page View: version: 1.6.8, author: Jon Christopher, Auto-updates disabled
    Email Encoder - Protect Email Addresses: version: 2.1.8, author: Jannis Thuemmig, Auto-updates disabled
    Envato Market: version: 2.0.10, author: Envato, Auto-updates disabled
    Events Manager: version: 6.4.5.1, author: Pixelite, Auto-updates disabled
    Events Manager Pro: version: 3.2.7, author: Pixelite, Auto-updates disabled
    Events Manager Pro - PayPal: version: 1.2, author: Pixelite, Auto-updates disabled
    Force First and Last Name as Display Name: version: 1.2.1, author: Stranger Studios, Auto-updates disabled
    K Elements: version: 5.1.2, author: SeventhQueen, Auto-updates disabled
    Paid Memberships Pro: version: 2.12.2, author: Paid Memberships Pro, Auto-updates disabled
    Paid Memberships Pro - bbPress Add On: version: 1.7.3, author: Paid Memberships Pro, Auto-updates disabled
    Paid Memberships Pro - Extra Expiration Warning Emails Add On: version: .4, author: Stranger Studios, Auto-updates disabled
    Paid Memberships Pro - Member Directory Add On: version: 1.2.4, author: Paid Memberships Pro, Auto-updates disabled
    Paid Memberships Pro - Membership Card Add On: version: 1.1.2, author: Stranger Studios, Auto-updates disabled
    Paid Memberships Pro - Membership Manager Role Add On: version: .3.2, author: Stranger Studios, Auto-updates disabled
    Paid Memberships Pro - Pay by Check Add On: version: 0.11.2, author: Stranger Studios, Auto-updates disabled
    Redirection: version: 5.3.10, author: John Godley, Auto-updates disabled
    Restrict Usernames Emails Characters: version: 3.1.3, author: benaceur, Auto-updates disabled
    Slider Revolution: version: 6.6.16, author: ThemePunch, Auto-updates disabled
    User Switching: version: 1.7.0, author: John Blackbourn & contributors, Auto-updates disabled
    Wordfence Security: version: 7.10.3, author: Wordfence, Auto-updates disabled
    WP FullCalendar: version: 1.5, author: Pixelite, Auto-updates disabled
    WP Mail SMTP Pro: version: 3.9.0, author: WP Mail SMTP, Auto-updates disabled
    WP Rollback: version: 1.7.3, author: GiveWP.com, Auto-updates disabled
    
    ### wp-media ###
    
    image_editor: WP_Image_Editor_GD
    imagick_module_version: Not available
    imagemagick_version: Not available
    imagick_version: Not available
    file_uploads: File uploads is turned off
    post_max_size: 256M
    upload_max_filesize: 256M
    max_effective_size: 256 MB
    max_file_uploads: 20
    gd_version: 2.3.3
    gd_formats: GIF, JPEG, PNG, WebP, BMP, AVIF, XPM
    ghostscript_version: 9.56.1
    
    ### wp-server ###
    
    server_architecture: Linux 3.12.18-clouder0 x86_64
    httpd_software: Apache
    php_version: 8.2.10 64bit
    php_sapi: cgi-fcgi
    max_input_variables: 3000
    time_limit: 600
    memory_limit: 768M
    max_input_time: 120
    upload_max_filesize: 256M
    php_post_max_size: 256M
    curl_version: 7.85.0 OpenSSL/3.0.9
    suhosin: false
    imagick_availability: false
    pretty_permalinks: true
    htaccess_extra_rules: true
    current: 2023-09-24T21:12:57+00:00
    utc-time: Sunday, 24-Sep-23 21:12:57 UTC
    server-time: 2023-09-24T17:12:57-04:00
    
    ### wp-database ###
    
    extension: mysqli
    server_version: 5.7.39-42-log
    client_version: mysqlnd 8.2.10
    max_allowed_packet: 33554432
    max_connections: 500
    
    ### wp-constants ###
    
    WP_HOME: undefined
    WP_SITEURL: undefined
    WP_CONTENT_DIR: /home/customer/www/staging39.wilmingtontrailclub.org/public_html/wp-content
    WP_PLUGIN_DIR: /home/customer/www/staging39.wilmingtontrailclub.org/public_html/wp-content/plugins
    WP_MEMORY_LIMIT: 256M
    WP_MAX_MEMORY_LIMIT: 768M
    WP_DEBUG: false
    WP_DEBUG_DISPLAY: false
    WP_DEBUG_LOG: false
    SCRIPT_DEBUG: true
    WP_CACHE: false
    CONCATENATE_SCRIPTS: undefined
    COMPRESS_SCRIPTS: undefined
    COMPRESS_CSS: undefined
    WP_ENVIRONMENT_TYPE: staging
    WP_DEVELOPMENT_MODE: undefined
    DB_CHARSET: utf8mb4
    DB_COLLATE: undefined
    
    ### wp-filesystem ###
    
    wordpress: writable
    wp-content: writable
    uploads: writable
    plugins: writable
    themes: writable
    mu-plugins: writable
    
    

    *******************************************

    ~April Schmitt

    WTC Webmaster <wtcwebmaster1@gmail.com>

    #237566
    Robin W
    Moderator

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>unread posts

    #237531

    In reply to: Best profile plugin?

    Robin W
    Moderator

    best I can offer is

    bbp profile information

Viewing 25 results - 376 through 400 (of 26,737 total)
Skip to toolbar