Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 10,401 through 10,425 (of 64,515 total)
  • Author
    Search Results
  • #178136

    Topic: Resizing avatar size?

    in forum Themes
    dogwomble
    Participant

    Hey all,

    I thought I’d post this here because I’m tearing my hair out and the only stuff I seem to be able to find is quite old so pertains to older versions.

    I have a BBPress based forum set up at https://www.crispygeek.com/forums

    Depending on who posts, the avatars can sometimes be a touch … gigantic shall we say. What I want to do is set the maximum size to, say, 48 pixels.

    I’ve had some success finding a tag in style.css as part of my global theme. The problem is, this also messes up the images on my front page news feed. And while I am starting to get the hang of this, I’m still relatively noob when it comes to some parts, I’ve found some really old posts that suggest some changes, but they tend to confuse me as to exactly where I need to make these changes. I’m hoping someone is able to offer some guidance on what I need to do to get this going,.

    #178131
    giobby
    Participant

    Hi @senatorman , I think you’ve replied in the wrong topic (https://bbpress.org/forums/topic/bbpress-2-6-alpha-problem-importing-phpbb/page/2/#post-178123).

    Just to follow up on your error: I’ve copied and pasted my queries from a Ms Word document and something got broken.
    In fact you look at the single quotes in the queries they are all wrong (’ instead of ‘).

    I have fixed the query for you and you can find the new version below:

    
    /* Get all posts with wrong author and correspondent right author from translator table */
    
    create table TMP_ORPHANS as
    select
    <YOUR_SCHEMA>.wp_posts.ID,
    <YOUR_SCHEMA>.wp_posts.post_author,
    <YOUR_SCHEMA>.wp_bbp_converter_translator.value_id real_author,
    IFNULL(<YOUR_SCHEMA>.wp_posts.post_date, NULL) post_date,
    IFNULL(<YOUR_SCHEMA>.wp_posts.post_date_gmt, NULL) post_date_gmt,
    <YOUR_SCHEMA>.wp_posts.post_content,
    CASE
    WHEN <YOUR_SCHEMA>.wp_posts.post_type = 'reply'
    THEN (SELECT tmposts.post_title from <YOUR_SCHEMA>.wp_posts as tmposts where tmposts.id = <YOUR_SCHEMA>.wp_posts.post_parent)
    ELSE <YOUR_SCHEMA>.wp_posts.post_title
    END post_title,
    <YOUR_SCHEMA>.wp_posts.post_excerpt,
    <YOUR_SCHEMA>.wp_posts.post_status,
    <YOUR_SCHEMA>.wp_posts.comment_status,
    <YOUR_SCHEMA>.wp_posts.ping_status,
    <YOUR_SCHEMA>.wp_posts.post_password,
    <YOUR_SCHEMA>.wp_posts.post_name,
    <YOUR_SCHEMA>.wp_posts.to_ping,
    <YOUR_SCHEMA>.wp_posts.pinged,
    IFNULL(<YOUR_SCHEMA>.wp_posts.post_modified, NULL) post_modified,
    IFNULL(<YOUR_SCHEMA>.wp_posts.post_modified_gmt, NULL) post_modified_gmt,
    <YOUR_SCHEMA>.wp_posts.post_content_filtered,
    <YOUR_SCHEMA>.wp_posts.post_parent,
    <YOUR_SCHEMA>.wp_posts.guid,
    <YOUR_SCHEMA>.wp_posts.menu_order,
    <YOUR_SCHEMA>.wp_posts.post_type,
    <YOUR_SCHEMA>.wp_posts.post_mime_type,
    <YOUR_SCHEMA>.wp_posts.comment_count,
    (	select <YOUR_SCHEMA>.wp_postmeta.meta_value
    from <YOUR_SCHEMA>.wp_postmeta
    where
    <YOUR_SCHEMA>.wp_postmeta.meta_key = '_bbp_author_ip' and
    <YOUR_SCHEMA>.wp_postmeta.post_id = <YOUR_SCHEMA>.wp_posts.id
    ) user_ip
    from <YOUR_SCHEMA>.wp_posts
    left join <YOUR_SCHEMA>.wp_users on <YOUR_SCHEMA>.wp_posts.post_author = <YOUR_SCHEMA>.wp_users.id
    left join <YOUR_SCHEMA>.wp_bbp_converter_translator on <YOUR_SCHEMA>.wp_posts.post_author = <YOUR_SCHEMA>.wp_bbp_converter_translator.meta_value
    where
    <YOUR_SCHEMA>.wp_posts.post_type in ('forum', 'reply', 'topic') and
    (<YOUR_SCHEMA>.wp_users.id is null or
    <YOUR_SCHEMA>.wp_users.id = 1) and
    <YOUR_SCHEMA>.wp_bbp_converter_translator.value_type = 'user' and
    <YOUR_SCHEMA>.wp_bbp_converter_translator.meta_key = '_bbp_old_user_id';
    
    /* Do this to be able to create indexes later – some may not work */
    ALTER TABLE TMP_ORPHANS modify column post_date datetime default NULL;
    ALTER TABLE TMP_ORPHANS modify column post_date_gmt datetime default NULL;
    ALTER TABLE TMP_ORPHANS modify column post_modified datetime default NULL;
    ALTER TABLE TMP_ORPHANS modify column post_modified_gmt datetime default NULL;
    ALTER TABLE TMP_ORPHANS modify column user_ip varchar(40);
    ALTER TABLE TMP_ORPHANS modify column post_title varchar(255);
    
    /* we create indexes to speed up the update process */
    ALTER TABLE TMP_ORPHANS ADD INDEX(post_date);
    ALTER TABLE TMP_ORPHANS ADD INDEX(post_author);
    ALTER TABLE TMP_ORPHANS ADD INDEX(real_author);
    ALTER TABLE TMP_ORPHANS ADD INDEX(user_ip);
    ALTER TABLE TMP_ORPHANS ADD INDEX(post_title);
    
    /* Revert bad authors to good authors */
    UPDATE
    <YOUR_SCHEMA>.wp_postsINNER JOIN <YOUR_SCHEMA>.TMP_ORPHANS
    ON <YOUR_SCHEMA>.wp_posts.id = <YOUR_SCHEMA>.TMP_ORPHANS.id
    set <YOUR_SCHEMA>.wp_posts.post_author = <YOUR_SCHEMA>.TMP_ORPHANS.real_author
    where <YOUR_SCHEMA>.wp_posts.post_type in ('reply', 'topic') ;
    
    /* Drop TMP table */
    DROP TABLE <YOUR_SCHEMA>.TMP_ORPHANS;
    

    Please remember to execute each query individually and not all of them together.
    You can easily distinguish the queries as I have put a comment before each of them.

    #178128
    Pascal Casier
    Moderator

    Hi Simon,
    Please check my response to https://bbpress.org/forums/topic/bbpress-disapeared-from-wp-admin/ and let me know if that helped or not.
    Pascal.

    #178126
    Robin W
    Moderator

    @deeve007 – it’s doable, but you’ll need to do some coding.

    The key file you want is

    wp-content/plugins/bbpress/templates/default/bbpress/user-details.php

    so

    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

    find
    wp-content/plugins/bbpress/templates/default/bbpress/user-details.php
    Make a copy of this file, and put in in the directory called bbpress that you created above, so you end up with
    wp-content/themes/%your-theme-name%/bbpress/user-details.php

    bbPress will now use this template instead of the original
    and you can amend this

    you’ll see the tabs in this file.

    Do come back with what you are trying to do if you need further help

    #178125
    Pascal Casier
    Moderator

    Hi,
    If you confirm that WordPress is correctly sending out emails for other WordPress tasks, then it’s most probably one of the other plugins blocking something. Did you try to deactivate plugins like bbPress – Private Replies, bbPress – Report Content and bbPress Protected Forums ?
    Pascal.

    #178120
    senatorman
    Participant

    Thx @Giobby. A had already read your topic, and do as you told, but i keep this problem.

    -The first topicpost has always the correct author
    -The second ans all other posts in that topis has the anonymous as author.

    This problem has nog every topic, some topics had for al posts the correct author.

    Iám sure, there is a problem in the converting file, and it looks that this problem online exist by big phpbb forums

    Please. BBpress team, can you look at this problem?

    #178117
    ddennison2016
    Participant

    Hello, for some reason my site is not sending email notifications of new posts to users that have either “Subscribed” to a forum or checked the “notify me via email” option.

    I have confirmed that my server is supported for SMTP and have even installed the Easy WP SMTP plugin and verified that my site is indeed capable of sending emails.

    Info about my configuration:

    WP: 4.6.1
    Theme: Ultimatum

    Plugins (all up to date):
    bbP private groups
    bbP topic count
    bbPress
    bbPress – Private Replies
    bbPress – Report Content
    bbPress Protected Forums

    Check Email
    Easy WP SMTP
    fusionSpan | netFORUM Single Sign On
    FV bbPress Tweaks
    GD bbPress Attachments

    Google Analytics
    Google Analytics Dashboard for WP
    Login Logo
    OSD Social Media Sharing
    PDF Embedder
    PhpSword Favicon Manager
    Subscribe to Category
    Ultimatum Connect BBPress
    User Profile Picture

    #178113
    dandr69
    Participant

    I deactivated bbpress today, and the next thing all site is broke with HTTP code 500.
    I tried to reset plugins, reset themes, checked for htaccess entries, nothing.
    I put it back, no chance.

    Class ‘BBP_Theme_Compat’ not found in /home/sites/pcforum.ro/public_html/wp-content/themes/pcf/functions_bb.php on line 32

    Update – i fix it.
    Found the code and remove it. Thanks

    #178111
    Stephen Edgar
    Keymaster

    Check out the docs in the codex, this I think should help you get started:

    Functions files and child themes – explained !

    #178110
    Stephen Edgar
    Keymaster

    bbPress shares WordPress’ users settings, you an see an example of it for your own bbPress.org and WordPress.org profiles here:

    https://bbpress.org/forums/profile/darrenbergman93/
    https://profiles.wordpress.org/darrenbergman93/

    When logging into bbPress it is just logging into WordPress with the same username and password so you should be good to go there also 🙂

    #178108
    jvooys
    Participant

    Hello

    I’m having difficulty using bbpress and woocommerce membership plugin together. I can create a forum, log in with a user that has participant permission and create a topic and content. once it is posted to the forum, the user is unable to view the content within the topic, in fact the original post is not visible. The Admin user is able to view all topics and comments.

    Doesn’t seem to matter what permission settings I give the user, the content is not visible.

    Anyone out there get woocommerce membership plugin and bbpress to work together?

    #178107
    Stephen Edgar
    Keymaster

    Hi if you’re still around would like to know how you changed Freshness to Last Post?

    bbPress 2.6 will no longer use “Freshness”, the default is now “Last Post”

    #178106
    Stephen Edgar
    Keymaster

    You can do this by creating a child theme and editing the form-anonymous template, you can find details on doing this here https://codex.bbpress.org/functions-files-and-child-themes-explained/

    #178105

    In reply to: topic post type issue

    fdecicco
    Participant

    sorry,
    the conflict is with a custom taxonomy named Topics, not a post type as I thought before.

    It seems that I should be able to change the slug for bbPress but not sure how and where. The settings page does not do it.

    #178104
    fdecicco
    Participant

    i am trying to integrate bbPress on a site that has a custom post type of ‘topic’ and this seems to be preventing me from getting bbpress working. I cannot get to the topics page for any forums as the custom post type somehow redirects all the links.

    Any idea of what I might be able to do to get around this issue. changing the topic post type that already exists is not an option at this point.

    I already tried to change the bbPress settings but nothing seems to make a difference. I am totally out of ideas and things to try.

    thank you.

    #178101
    Dave
    Participant

    This should be simple but haven’t been able to find info on how to do this.

    I want to add a custom tab/link with content to the bbPress profile page (NOT using Buddypress at all), I’ve come across people saying it can be done, but no actual guide/info to how it can be done.

    Any help appreciated. Thanks.

    #178098
    Robin W
    Moderator

    less shouty with the title, and a little bit of patience would be great !

    bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Then come back

    #178097
    ammii101
    Participant

    Hey, so recently I set up a localhost server (WAMPSERVER) and installed WP and bbPress. I then tested out the sign up function and realised that the Password Confirmation email was not being sent; even after using different emails and providers.
    I would appreciate some help in fixing the problem 🙂

    #178095
    parker012
    Participant

    Installed BBpress Forum plug in. cannot see it anywhere on my wordpress site. Any help would be great, John

    [mod note: fixed title]

    #178094
    lincelot
    Participant

    I have updated WordPress but still have the same problem. When I change my admin roles I can briefly see the BBpress options in the wp menu. But after one click they disappear form the menu…

    Seems like a bug to me or a malfunction with an other plugin?

    Ansif
    Participant

    Hi,

    Anyone, can you please let me know : How can i able to modify listing options in default bbpress templates?

    I want to edit listing options in : bbpress/loop-topics.php

    I referred this forum : https://bbpress.org/forums/topic/display-list-of-topics-under-specific-forum/

    But, not helped well.

    Thanks! 🙂

    #178089
    403laura
    Participant

    I read through this forum because I am experiencing similar issues…(I am a keyholder). I am using both Buddypress and bbpress. I do not have programming knowledge or experience, I do not understand codex or php, I’m just looking for someone to hopefully assist me with a simple solution to these issues, so that when people sign up as users, their interactions are seamless and they are able to quickly find the information they are looking for.

    1. When logged in as a user, I am not able to access forums without using the URL to the page. I used the “user roles and capabilities” plugin as recommended above, to change the user settings in the back end so I could view “private” posts and that sort of worked but I still have to use the URL to find the forum page. I have also run the tools for both Buddypress and bbpress. There are several links in the user profile area but they all seem to direct me to the user activities only…I cannot link to any of the content posted by other users through those links. (Same with the tool bar at the top of the page and all of the drop down menus).

    2. I just created a topic to post under a forum. Under my keyholder account, I am able to see the topic when I click on it but when I try clicking on it as a user, it doesnt show up. It just tells me there is “0 replies, has 1 post, and last updated by me” and the topic is not there.

    #178083
    Robkk
    Moderator

    On the theme’s product information page located on Themeforest it says it is.

    It even has this listed in the other features area in their product description.

    Custom bbpress styling + custom login system – you can now build a community with ease.

    #178082
    jiujitsutoday
    Participant

    I have the latest version of WP and I will be using this WP theme.

    Should bbpress install and run ok?

    #178081
    giobby
    Participant

    I hope this helps you: https://bbpress.org/forums/topic/import-phpbb-wrong-authors/
    I had to write some custom queries to fix the wrong authors problems.
    Can’t promise it’s going to work, but when I’ve run some counts on the tables during the process it looked that all the orphan posts were correctly reassigned to the wrong author.

    Good luck!

Viewing 25 results - 10,401 through 10,425 (of 64,515 total)
Skip to toolbar