Robin W (@robin-w)

Forum Replies Created

Viewing 25 replies - 676 through 700 (of 14,314 total)
  • @robin-w

    Moderator

    ok, so if you can’t the fields, that means they aren’t being saved.

    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

    @robin-w

    Moderator

    if you know phpmyadmin, you could also check the post meta for the topic, you should see entries for the fields eg

    bsp_topic_fields_label_name2 This is a new field
    bsp_topic_fields_label2 this is the data

    That would tell us if they are being stored, so it is a display issue, or not being stored so it is an input issue

    @robin-w

    Moderator

    ok, lets see if I can replicate with your settings

    Can you go to

    dashboard>settings>bbp style pack>plugin Information

    and ‘copy row to clipboard’ of the Topic Form Additional Fields info to clipboard, it is right at the bottom and then paste back here

    @robin-w

    Moderator

    ok, so can you (as a test) take out the Forum no.s from all fields in the settings, so we eliminate forum restrictions from the display part

    @robin-w

    Moderator

    ok are you ok with browser developer tools – if so take a look and see if the words and in the html, but just not displaying.

    @robin-w

    Moderator

    found and fixed bug, will be in the next release, I’ll hold for a day to see if I need to fix your display issue above as well

    @robin-w

    Moderator

    ok, so have you tried all 3 settings?

    Show fields above the topic
    Show fields above the topic content
    Show fields below the topic content

    and do any show?

    @robin-w

    Moderator

    not sure what you mean – this is not you explaining it badly, just that words are not the best medium.

    Any chance of an image with an X where you want the fields?

    @robin-w

    Moderator

    You thoughts are essentially correct, bbpress just uses wp_posts.

    So yes if you migrate dev to live you will overwrite the forum, the same is true for comments and anything else that uses the posts table, which is quite a few other plugins you might use later. lots of other tables used by wp plugins also can change in live whilst you are trying things in dev.

    In essence you should treat dev as just that – ie not a copy of live, but an environment to check site functionality and look.

    There is also a danger if you work in dev and add links and images, these will be the url of the dev site, so when the pages are migrated across all will look ok on the front end, but actually you will be using data/images from dev.

    So plugin and theme updates should be tried in dev first, and then repeated in live rather than migrating.

    For pages and posts, copy/paste is very easy to use – much of the time you will only be changing one or 2 pages.

    If you are using the standard blocks, then switching to the code editor (the 3 vertical dots top right of a page or post edit and then look for the ‘code editor’ choice) make copying/pasting pages and posts super easy.

    Yes it is a bit more of a pain, but as you site develops you’ll be glad you learned the techniques

    @robin-w

    Moderator

    if it is, you can test by deactivating style pack

    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

    @robin-w

    Moderator

    sorry, I can’t see a way to do this, they are either above or below

    http://gos.rewweb.co.uk/wp-content/uploads/2024/06/Screenshot-2024-06-05-170150.png

    @robin-w

    Moderator

    can you just confirm this is on the form that they complete not the topic display – yes?

    @robin-w

    Moderator

    I’ve added that capability to my style lack plugin, so add this to your site

    bbp style pack

    once activated go to

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

    and you will see options for this in items 19,20 & 21

    @robin-w

    Moderator

    no sorry that would not work, as the user can just delete the labels etc. and a placeholder would be too easily overwritten

    @robin-w

    Moderator

    dashboard>settings>forums>replies per page

    or are you saying that this does not work?

    @robin-w

    Moderator

    That’s great to hear, it is a useful addition to my plugin, so thanks for making me think about how to do it.

    @robin-w

    Moderator

    This requires you to be able to FTP – do you know how to do this?

    @robin-w

    Moderator

    So if you are already using my style pack plugin, the new version 6.0.3 contains a new tab for ‘Topic Form Additional Fields’

    If you haven’t then install

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>Topic Form Additional Fields

    and you’ll see how to set up and style additional fields.

    The plugin has lots more useful features as well

    In reply to: Restrict post creation

    @robin-w

    Moderator

    Thanks for reporting back that it does 🙂

    @robin-w

    Moderator

    ok, I don’t have access to the astra pro plugin, so hard for me to replicate.

    If you are happy that you are fixed, I’ll leave it there.

    @robin-w

    Moderator

    I’m in testing phase, but will need one more day.

    It will go as a solution in the next update of my style pack plugin, which I’ll release as soon as I’ve done.

    @robin-w

    Moderator

    ok, thanks, let me have a think

    @robin-w

    Moderator

    if it is use ftp to take out the code snippets plugin

    @robin-w

    Moderator

    so was that on plugin activation?

    @robin-w

    Moderator

    as a quick test, can you try

    install https://en-gb.wordpress.org/plugins/code-snippets/

    and add this code

    function rew_astra_bbpress_fix ($value) {
    		if (bbp_is_single_user()) return false ;
    		if (bbp_is_search()) return false ;
    		if (bbp_is_topic_tag()) return false ;
    		if (bbp_is_single_view()) return false ;
    return $value ;
    }
    
    add_filter ('astra_single_layout_one_banner_visibility', 'rew_astra_bbpress_fix', 50) ;
Viewing 25 replies - 676 through 700 (of 14,314 total)