Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 3,601 through 3,625 (of 64,471 total)
  • Author
    Search Results
  • #217361

    In reply to: Avatar issues

    JLee
    Participant

    Hello neon67,

    try to css:
    #bbpress-forums .widget_display_replies img.avatar, #bbpress-forums .widget_display_topics img.avatar, #bbpress-forums div.bbp-template-notice img.avatar, #bbpress-forums p.bbp-topic-meta img.avatar, #bbpress-forums ul.bbp-reply-revision-log img.avatar, #bbpress-forums ul.bbp-topic-revision-log img.avatar
    {display:none !important;}

    The code above worked beautifully!!

    Thank you neon67!!

    #217359

    In reply to: Minor HTML Error

    neon67
    Participant

    best way – to write wordpress.org/support/plugin/gd-bbpress-attachments/

    Although the author of the plugin (Milan) regularly visits here.

    #217358
    neon67
    Participant

    This is more a question to the author of the theme you are using. Start with this.

    If the theme is not intended for bbpress, you can make a separate page (item in the menu) – for example, using shortcodes – to create page user profile.

    The bbpress shortcodes are in the bbpress codex.

    If this is still difficult, there are special plugins

    #217355

    In reply to: Minor HTML Error

    neon67
    Participant

    Where is this?
    This is generated by bbpress or a plugin like wp-wrapper..

    Robin W
    Moderator

    ok, so do you have a link to an example that works (say in worpress) and one that doesn’t in bbpress?

    #217336

    In reply to: PowerSearch bug

    Chuckie
    Participant

    Please see this discussion:

    https://wordpress.org/support/topic/searching-for-terms-like-10-19/

    Turns out this is a bug in bbPress. My main website search engine is fine. Just the bbPress tool failing.

    Can a ticket be raise?

    neon67
    Participant

    Thank you! But I’m looking for a way to apply link: data-rel=”prettyPhoto” target = “_ self” to all available bbpress images. It can be loaded in any way, it doesn’t matter.

    Found the code

    function add_image_responsive_class ($ content) {
        global $ post;
        $ pattern = "/ <img (. *?) class = \" (. *?) \ "(. *?)> / i";
        $ replacement = '<img $ 1class = "$ 2 img-responsive" $ 3>';
        $ content = preg_replace ($ pattern, $ replacement, $ content);
        return $ content;
    }
    add_filter ('the_content', 'add_image_responsive_class');

    but for wordpress. Will it work for bbpress?

    #217323
    Robin W
    Moderator

    so what does ‘ I’ve achieved this by editing all of the template files that bbPress has dealing with viewing a reply or being able to post. ‘ mean ?

    #217318
    Robin W
    Moderator

    if only registered users can post, then I’d start by looking at how they are registering – bbpress just uses wordpress registration, so how are your users joining ?

    #217317
    MrFent37
    Participant

    My bbPress forum is integrated with WooCommerce Memberships, so that only members can view topics and post replies. I’ve achieved this by editing all of the template files that bbPress has dealing with viewing a reply or being able to post. So none of the reply forms will even load if the user is not an active member. Still every once in a while, a spammer is able to create an account and post a new topic. How is this possible if they are not a member? Is there another way that someone is able to create a forum post that doesn’t involve having to click the “Create new topic” button (which isn’t there) can they post via URL or RSS? Is there any way to see how they are posting?

    #217316
    Gunivortus
    Participant

    This is just a small cosmetic thing …
    In the footer of this site under the title “Forum Statistics”, which is a bbpress widget, between the topics and the numbers should at least be one empty space.
    How can I get that?

    #217309

    In reply to: Avatar issues

    neon67
    Participant

    try to css:

    #bbpress-forums .widget_display_replies img.avatar, #bbpress-forums .widget_display_topics img.avatar, #bbpress-forums div.bbp-template-notice img.avatar, #bbpress-forums p.bbp-topic-meta img.avatar, #bbpress-forums ul.bbp-reply-revision-log img.avatar, #bbpress-forums ul.bbp-topic-revision-log img.avatar
    {display:none !important;}
    neon67
    Participant

    I want to make all uploaded pictures open as …a class=”my-class” rel=”prettyPhoto” href=”pic_address”…

    I found how to filter all the necessary pictures through css. It’s like this:
    # bbpress-forums div.bbp-reply-content img, # bbpress-forums div.bbp-topic-content img
    {
    display: block;
    max-width: 100%;
    height: auto;}

    Question. What to add to the css or functions so that the picture gets a link like rel = “prettyPhoto”. Once I met a solution specifically for WordPress, but now I can’t remember…
    That can I do for this (through a css, filter or declarations provided by the loader for the class?)

    Thanks for a possible answer.

    #217305

    In reply to: GD Attachments Archive

    Milan Petrovic
    Participant

    Hi,

    I am the author of the GD bbPress Attachments plugin, and you are right, there is no such feature. But, all files are in the media library, so you can create your own template for a theme that can pull files attached to topics and forums and display them.

    A feature like that would be available in the GD bbPress Toolbox Pro plugin, most likely next month, but there are no plans to implement it in the free version.

    Regards,
    Milan

    #217291
    JLee
    Participant

    Robin,

    bbp style pack By Robin Wilson

    Just realized you are the creator of bbp style pack plugin…INCREDIBLE contribution to the “bbPress community”!!

    Thank you!!

    #217287

    In reply to: Moving Breadcrumbs

    Robin W
    Moderator

    if you want the bbpress breadcrumb in the forums, then you would need to find out which theme template astra is using to display the forum page.

    You would then use this template and rename to bbpress.php and add the breadcrumb back which is what I think the first link you quoted was trying to do.

    This plugin will tell you which tempate is being used

    What The File

    and then (presuming you are using a child theme) you would copy that template (quite often page.php) and rename it bbpress.php.

    you would then add

    <div class="truebreadcrumbs"><?php bbp_breadcrumb(); ?></div>

    in the appropriate place in that file

    #217276

    In reply to: Moving Breadcrumbs

    Robin W
    Moderator

    looking at that suggestion, not sure what 1 & 2 are trying to do – not a section I wrote !

    so to move them out of bbpress, then yes, use css and do this

    div.bbp-breadcrumb {
     display: none; /*this will hide all breadcrumbs*/
     }

    put this in your theme’s custom css file.

    The other part will be theme dependant – are you creating a theme or using an existing one?

    #217273
    andyinspired
    Participant

    Hi,
    I’m trying to move the breadcrumbs out of the forum container and to the top of the page as explained in the codex here:
    http://codex.bbpress.org/layout-and-functionality-examples-you-can-use/#7-how-can-i-remove-all-the-breadcrumbs-from-the-templates-and-set-them-at-the-top-of-the-page

    However, if I create a bbpress.php file (or copy the one from the plugins folder) in the root of my child theme it breaks the forum completely!.

    Any help appreciated!

    Thanks.

    #217271
    Robin W
    Moderator

    the easiest way is

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>Topics Index Styling and tick item 16 don’t show this message

    if you want to do it using FTP then

    find
    wp-content/plugins/bbpress/templates/default/bbpress/feedback-no-topics.php

    transfer this to your pc and remove

    <div class="bbp-template-notice">
    	<ul>
    		<li><?php esc_html_e( 'Oh, bother! No topics were found here.', 'bbpress' ); ?></li>
    	</ul>
    </div>

    and save (this file must exist, but we just make it empty!)

    create a directory on your theme called ‘bbpress’
    ie wp-content/themes/%your-theme-name%/bbpress

    where %your-theme-name% is the name of your theme

    Then transfer the file you saved above and put in in the directory called bbpress that you created above, so you end up with
    wp-content/themes/%your-theme-name%/bbpress/feedback-no-topics.php

    bbPress will now use this template instead of the original

    #217214

    In reply to: User Statistics

    Robin W
    Moderator

    Anyone coming new to this thread, I have added a revised version of this plugin to my site which can be downloaded from

    bbpress-improved-statistics-users-online

    This plugin is one which WordPress withdrew as it violated their guidelines (suspected to be listing users without login, but not certain).

    You can download and use, but I offer no support or warranty that this code works !

    #217193
    Robin W
    Moderator

    I am just a guy who sites in his kitchen and writes code for enjoyment, and I like to try and help others on the forums.

    I do not get paid to do this, I have no connection with bbpress and all code (inc wordpress and bbpress) is offered under OSF, which is that it is free, open source to allow others to amend it, and offered with no support and no warranty that it does anything.

    bbpress authors are free to decide what they put in their code, as am I. I do not suggest what should be in bbpress, nor do I consider that they should take any notice of me.

    The topics for posts plugin has not been updated for a while because the authors do not choose to do so, that is their right, it is free code offered at the point of publishing. You are free to learn php and update and amend it as you wish.

    I am not author of topics for posts, I have just been granted access as I wish to update it, which I will do when I am ready to do so.

    #217192
    Ricsca2
    Participant

    Article comments should be integrated into defoult’s bbpress in my opinion.

    bbPress Topics for Posts

    I do not understand why this function does not actually exist and wordpress mentine these two desired services. In this way today few people leave comments and few people write in the forum …
    I saw that the creatre of this plugin is @Robin W so I would like to ask him why wodpress doesn’t take this option into consideration.
    Also I’d like to ask why this plugin hasn’t been updated in a while.
    Thanks

    #217186
    uksentinel
    Participant

    I am running a little custom CSS custom code to underline all my Hyperlinks on my BBPRESS forum, which work well, but I now wish to not underline Topics – can anybody advise addition code needed ?

    Thanks:

    main a {
    text-decoration: underline !important;
    }

    Site: uktechhub.com

    #217173

    In reply to: User Statistics

    Chuckie
    Participant

    I think this was why:

    https://wordpress.org/support/topic/bbpress-advanced-statistics-logged-out/

    I have only just noticed this. I use the “bbPress Advanced Statistics” plugin as I like the way it presents the data at the bottom on the forum page.

    However, if I “log out”, it still lists all the names of the users from the last 24 hours. That is not right. It should only list last 24 forum activity if a user is logged in. Technically it is exposing users names for a non logged in user when I don’t want it to.

    #217170

    In reply to: User Statistics

    Chuckie
    Participant

    Yes, I have the code. And originally it was available and after I made my first concern about it exposing usernames when it shouldn’t somebody decided (somehow) to lock it online in the plugin repository.

    This is my current plugin (with my corrected code discussed above):

    https://www.dropbox.com/s/vjovpjnk22gxcct/bbpress-improved-statistics-users-online.zip?dl=0

Viewing 25 results - 3,601 through 3,625 (of 64,471 total)
Skip to toolbar