Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress"'

Viewing 25 results - 501 through 525 (of 26,703 total)
  • Author
    Search Results
  • #236222
    Robin W
    Moderator

    php level.

    Frankly it’s really not easy to move forums, topics and replies between sites if not moving the while site.

    bbpress users custom post types, and manages the relationships between them via both post_parent and post meta. If you just export and import again, if the post ID frtom the source site is already being used by the destinatiion site, the the wp import process just allocates a free number, so the relationships gets all messed up.

    ditto if the user ID’s do not exactly match, then again these get to be wrong.

    I have done transfers as paid jobs for clients in the past, and have some code that does a few bits that get over this, but it is not really generic, so would need someone who knows WordPress database well and is happy with php. I am short on time at the moment to do the job.

    #236210
    codejp3
    Participant

    I’m posting this on behalf of another user from this topic/post. I can’t verify this, but they claim that the TinyMCE visual editor used to show for guest posters (yes, guest posting is enabled on their forum).

    They’re claiming that at some point within the past few months, that stopped.

    I tried on my dev server and confirmed that guests do NOT see any visual editor buttons, but I don’t know how long that has been the case, or if guests were ever able to see the TinyMCE editor in the first place.

    I’m scratching my brain trying to figure out how to enable the TinyMCE editor for guests. There’s nothing helpful related to this in the WP TinyMCE docs, WP Rich Text Editor Filters, or in the TinyMCE v4 docs. Browsing through /wp-includes/class-wp-editor.php (specifically the editor_settings method) was also a bust.

    The only check I’ve been able to find that determines whether or not to display it is “user_can_richedit()”, and even forcing ALL users to have richedit capabilities doesn’t solve it:
    add_filter('user_can_richedit', '__return_true');

    So my question – How do you enable the TinyMCE editor for guests???

    #236201

    In reply to: Plugin bbP g-plus-one

    Robin W
    Moderator
    #236198
    Robin W
    Moderator

    On the basic bbpress plugin, you can approve/reject topics in the backend dashboard, but the user sees nothing.

    There is a moderation section in my style pack additional plugin which adds better moderation options

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>Moderation

    #236197
    Robin W
    Moderator

    ok, no one else is reporting this, and I cannot replicate this error.

    This suggests it is site specific.

    If you are happy that you are getting this on a reply from you where you have definitely only hit the submit button once, then I can only suggest you do 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

    Then come back

    Otherwise maybe talk to your hosting provider about site speed

    #236194

    In reply to: Account

    ricoto
    Participant

    I want the same user menu as on this site bbpress.org.
    How can I do it?
    It’s the same as there is in the toolbar than WordPress at the top right.
    https://postimg.cc/Lhwz65RW
    https://postimg.cc/LYT2QnD8

    PS: How to post an image on the forum I don’t know how to do it

    #236183
    Robin W
    Moderator

    sorry no, bbpress only works as a plugin within wordpress.

    #236178
    Bruce
    Participant

    I assume that bbPress can be installed without WordPress. However, is there documentation for the process especially the MySQL setup?

    #236155

    In reply to: Account

    Robin W
    Moderator

    bbpress just uses the WordPress registration system, so google around to find a WordPress registration and logion plugin that suits you.

    additionally this plugin adds some features such as adding registration prfile and login to wordpress menus

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>login

    #236154

    In reply to: topic user template

    Robin W
    Moderator

    Kadence does extensive changes to how bbpress displays, including templates and css. So issues such as order in templates, you will need to take this up with Kadence authors.

    If you are using bbp-style-pack, then I have added some limited support for css issues

    bbp style pack

    #236153
    Robin W
    Moderator

    this is a notification error, and is not fatal.

    Bbpress authors have not changed this one yet.

    WordPress recommends that debug is not used on livre sites, so users should not see this.

    It was a WordPress decision to change blacklist and whitelist due to racial connotations.

    if you want to stop this displaying change the code in the file (lines 818-820) from

    // Strict mode uses WordPress "blacklist" settings
    	if ( true === $strict ) {
    		$hook_name   = 'blacklist';
    		$option_name = 'blacklist_keys';

    to

    // Strict mode uses WordPress "blacklist" settings
    	if ( true === $strict ) {
    		$hook_name   = 'disallowed';
    		$option_name = 'disallowed_keys';

    and keep a note of this change

    We are a writer group running a 6.2.2 WordPress install, 7.4.33 PHP version, the current version of OceanWP theme, PaidMembershipPro 2.11 (current), and BBPress 2.6.9. Our host is SiteGround shared hosting.

    Our forum users are experiencing intermittent time-out issues when replying to forum posts. The issue seems to be with longer reply posts, 450 words or more, getting Page Unresponsive messages after hitting SUBMIT Page unresponsive issue

    I increased the Dynamic timeout in .htaccess but that doesn’t seem to helping:

    <IfModule mod_dtimeout.c>
    <Files ~ “.php”>
    SetEnvIf Request_URI “index.php” DynamicTimeout=300
    SetEnvIf Request_URI “wp-admin/themes.php” DynamicTimeout=300
    SetEnvIf Request_URI “wp-admin/admin-ajax.php” DynamicTimeout=300
    SetEnvIf Request_URI “wp-admin/admin.php” DynamicTimeout=300
    </Files>
    </IfModule>

    I’m not sure what’s generating this Page Unresponsive message, and why it’s intermittent. The reply posts don’t seem that large, and there are only 2 or 3 users on at a given time.

    #236144

    In reply to: Register / Sign In-Out

    Robin W
    Moderator

    bbpress just uses the WordPress registration system, so google around to find a WordPress registration and logion plugin that suits you.

    deliverteam
    Participant

    In the search results page, the All in one SEO pack plugin does not show the title tag.
    Please tell me how to output the title tag on the search results page, even if it is a wordpress function.

    Robin W
    Moderator

    sorry, link failed to insert

    Private groups

    Robin W
    Moderator

    As described this would be very complicated, requiring both single sign on, and data links between two wordpress sites.

    I suspect it is doable, but would take many hours work and probably custom code to achieve.

    Using a single site, you could have bbpress and use this additional plugin to create private forums for groups whilst having other forums visible by all groups.

    This will not fix the sub groups having events and blog posts

    #236068
    Robin W
    Moderator

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>Subscription Emails

    #236063

    In reply to: Subscription help

    Robin W
    Moderator

    So first off, when someone makes a post on a thread I an subscribed to, I get and email. Is there a was I can switch this off for the whole site?

    Sorry, I’m a bit confused. The only function of subscribing is to get email notifications of posts made to a thread, so if you don’t want emails, don’t subscribe to a thread 🙂

    I want everyone to automatically subscribe to a thread that they post in.
    Is there a way to do that?

    bbp style pack

    once activated go to

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

    #236030
    Robin W
    Moderator

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>Topic/Reply Display item 19

    #236025

    In reply to: these theme

    Robin W
    Moderator
    #236008
    Robin W
    Moderator

    ok, can you remove that code, and install this plugin :

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>bug fixes and you’ll see a tick box

    Fix ‘A variable Mismatch has been detected’ click and save

    #236005

    In reply to: topic user template

    Robin W
    Moderator
    #236000

    In reply to: Forum Dashboard

    Robin W
    Moderator

    only a keymaster can appoint another keymaster.

    If there are NO keymasters then install this plugin

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>bug fixes

    and you’ll see the ability to set yourself as keymaster

    once done you can deactivate and remove the style pack plugin if you wish, or look at the other features it offers

    #235978
    Robin W
    Moderator

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>Topic/Reply Display>item 19

    #235961
    Robin W
    Moderator

    bbpress has not had a release since November 2021, so what do you mean by ‘has lately’ – if after that, then suspect something else is now making that not work.

    You suggested cause (‘I suspect the code doing this is non-standard’) may be correct and something else is now causing this to show or it may not be bbpress causing this. Maybe look at what else has changed – wordpress, php versions, other plugins etc.

    Without knowing your set up or indeed your technical ability (although from you post this seems to be good!) I’d also initially suggest 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

    Then come back

Viewing 25 results - 501 through 525 (of 26,703 total)
Skip to toolbar