Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress"'

Viewing 25 results - 1,551 through 1,575 (of 26,819 total)
  • Author
    Search Results
  • #222603
    #222589

    In reply to: Close own forum topics

    Robin W
    Moderator

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>Topic/Reply Display>item 17 and 18

    #222571
    Robin W
    Moderator

    bbp style pack

    dashboard>settings>bbp style pack>buttons

    #222557

    In reply to: bbpress and cache

    techinbermudas
    Participant

    you are correct. it still happens.
    even contacted the theme dev for some help, he removed most plugins and still didn’t work.

    looks like i have to leave wordpress.

    #222530
    Robin W
    Moderator

    either use the settings in

    dashboard>settings>discussion

    which lets you set say ‘before a comment appears’

    or use

    bbPress – Moderation Tools

    which though old still works fine

    #222507
    Robin W
    Moderator

    there should be a topic form at the bottom if you are logged in (presuming you are only allowing logged in users to post)

    you can add a button using

    bbp style pack

    dashboard>settings>bbp style pack>Buttons

    #222506
    mgfit1
    Participant

    Can anyone help with this? There is no way to post in forums at all. There is no post button. It just says “this forum is empty”
    I am using all the recent versions of things. This is a new website. It is a member only website using wordpress, BBpress, Buddypress and some other plugins. Please help! In a time crunch!

    http://www.michiganlibertyleaders.com

    #222494

    In reply to: Forum url changes

    Robin W
    Moderator

    ok you could also use a PHP variable rather than a wordpress function

    so

    $current_url = $_SERVER['REQUEST_URI'];

    should give you the displayed URL in all cases.

    you can then do an ‘if’ test to see if you are in forums using say

    if (strpos($_SERVER['REQUEST_URI'], '/qaforums/') == true ) …then you are in the forums

    #222471

    In reply to: Forum url changes

    Robin W
    Moderator

    sorry, I have given you some code which addresses, which does not seem to satisfy you.

    I am not quite sure why you think the plugin authors would want to make their plugin work for your exact circumstances, but if you want to post a defect then go here

    https://bbpress.trac.wordpress.org/

    #222461
    Robin W
    Moderator

    You can restrict who can see what by using

    Private groups

    #222460
    Robin W
    Moderator

    Hello, I have a membership website, and in it a forum with bbpress.
    I use restrict content pro and to restrict the forum I installed the restric content pro-bbpress plugin.
    The following happens to me, apparently this plugin is abandoned and they do not make updates for a lot of time, or so the security of my website indicates.
    My question is which one can I change it for and have it integrated with restric content pro.

    My version of: wordpress is
    5.8 bbpress 2.6.6
    RCP-bbpress
    1.0.1 My
    site is https://www.tactodebarro.com
    Thank you for your attention Nuria

    #222457
    nur1969
    Participant

    Hola, tengo una web de membresia, y en ella un foro con bbpress.
    Utilizo restric content pro y para restringir el foro instalé el plugin restric content pro-bbpress.
    Me ocurre lo siguiente, al parecer este plugin está abandonado y no hacen actualizaciones desde hace un montón de tiempo, o eso me indica la seguridad de mi web.
    Mi pregunta es por cuál puedo cambiarlo y que esté integrado con restric content pro.

    Mi versión de: wordpress es 5.8
    bbpress 2.6.6
    RCP-bbpress 1.0.1
    Mi sitio es https://www.tactodebarro.com
    Gracias por tu atención
    Nuria

    #222455

    In reply to: Forum url changes

    Robin W
    Moderator

    I’d suspect that because each forum is not an real individual wordpress page (ie not in dashboard>pages) , then retrieving the page_link might well return a ‘virtual’ ID, and this might be the top forum – not proven, just a hunch.

    My initial suggestions would be that you try get_permalink instead of get_page_link() – this retrieves the full url of the current displayed page, and should in theory get you what you want.

    If you need the existing get_page_link() for your other pages, you could try wrapping it in an if… eg:

    if (is_bbpress()) {
    get_permalink etc.
    }
    else {
    get_page_link()
    }

    Let us know if that helps

    #222364
    Robin W
    Moderator

    hmm…

    that is coming as a result of a wordpress page protection issue, so something in either page or posts is overriding… are any of your pages password protected?

    #222362
    tumptyteapot
    Participant

    Hi
    When logged in and we use the forum search the results are password protected and they shouldn’t be.

    WordPress 5.8
    bbPress Version 2.6.6

    Mizan Therapy

    I have disabled all plugins apart from bbPress and tried it on a default theme but the problem persists.

    #222327
    mophilly
    Participant

    Is it correct to say that if the BuddyPress group exists with some posts, and I set up a new bbPress forum in the backend, the existing posts will appear in the bbPress forum?

    I understand that the two are not the same. I also have a pretty good understanding of how data is handled in WordPress… not expert by any stretch, but not a beginner either. Also, I have decades of experience with dbms. So I assume the answer to my question is “no.”

    It would be cool to be able to recreate the posts from the BuddyPress group in the new bbPress forum. I don’t mind a bit of query and/or script writing to make things come together.

    Any suggestions or insights are very welcome.

    #222324
    aliforty
    Participant

    I was familiar, just a brain freeze early on Monday 🙂

    But please let me know what arguments I should pass that would get the outcome I am hoping for. I was wanting for “\r \n” in TinyMCE to be replaced with <br /> tags. The WordPress database was not saving those escaped characters or at the very least wasn’t displaying them back. Eerything was being shown in one line. Teeny and TinyMCE is enabled.

    For the time being, I did find an alternative solution. Replaced the “\r \n” with <br /> for the posts and disabled the bbp_code_trick_reverse filter that was removing them later.

    function bbp_convert_reply_breaks_to_tags($output, $args, $post_content){
            $text = str_replace(array("\r\n", "\n", "\r"), "<br />", $post_content);
            return $text;
        }
    
      function bbp_convert_topic_and_forum_breaks_to_tags($post_content){
            $text = str_replace(array("\r\n", "\n", "\r"), "<br />", $post_content);
            return $text;
        }
    
     add_filter('bbp_new_reply_pre_content', array($this, 'bbp_convert_reply_breaks_to_tags'), 10, 3);
            add_filter('bbp_new_topic_pre_content', array($this, 'bbp_convert_topic_breaks_to_tags'), 10, 1);
            add_filter('bbp_new_forum_pre_content', array($this, 'bbp_convert_topic_and_forum_breaks_to_tags'), 10, 1);
            remove_filter('bbp_get_form_reply_content', 'bbp_code_trick_reverse');
            remove_filter('bbp_get_form_forum_content', 'bbp_code_trick_reverse');
            remove_filter('bbp_get_form_topic_content', 'bbp_code_trick_reverse');
    #222298

    In reply to: bbpress and cache

    techinbermudas
    Participant

    From what my hosting said its a client issue but then i never had this type of issues anywhere.
    Is it related to WordPress in general?

    the solution could be if the plugin above would do the ctrl+shift+r force refresh instead of a regular refresh that doesn’t do anything.

    #222281

    In reply to: bbpress and cache

    Robin W
    Moderator

    you could give this a try

    Force Refresh

    and report back !!

    #222262
    Robin W
    Moderator

    yes it is, and it works with 5.8

    I’ve sent a message to the authors to ask them to update – as author of 6 plugins I know it is a pain to have to keep updating the info when WordPress keeps issuing new updates that don’t go anywhere near the plugins :

    Thanks for letting us know.

    #222260
    Fetch Designs
    Participant

    The plugin page shows last updated 9 months ago and Tested up to: 5.6.4 when the current version of WordPress is 5.8. Is bbPress still being maintained?

    francorbalan
    Participant

    I am working on a site through Elementor Pro (A website builder) and through it I create templates. The templates are then applied to the pages that I designate.

    I installed BBPress and assigned a template to the forums page. However, it does not apply to the users page. In this case the problem is that the main menu is almost invisible.
    Example of a user page: https://mariablaquier.com/forums/usuarios/lagorda/

    Does anyone know how I can fix this?

    Wordpress: 5.8
    BBPress: 2.6.6
    Site: mariablaquier.com

    #222254
    Mike Witt
    Participant

    @ritishsharma,

    If you’ve got a Captcha plug in, I don’t think wordfence will help any further with spam sign-ups (although it would certainly help with other types of hacking attempts, if you don’t already have any kind of firewall).

    Wordfence Security – Firewall & Malware Scan

    They also have some pretty cool security tutorials, if you poke around on the wordpress.com site.

    Robin W
    Moderator
    #222251

    In reply to: Add emoticons

    Back to Front
    Participant

    I spent a bunch of time configuring out emojis on my site, so interested in this question.
    But ’emojis’ are different than ‘smileys’.
    Wordpress supports ‘smileys’ aka ’emoticons’

    Could you search and replace in the database to change the old smilleys to these

    Using Smilies

    And then if you want to use custom images, try this?

    How to Customize the WordPress Emoticons

Viewing 25 results - 1,551 through 1,575 (of 26,819 total)
Skip to toolbar