Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress'

Viewing 25 results - 9,376 through 9,400 (of 26,874 total)
  • Author
    Search Results
  • #148246
    tharsheblows
    Participant

    @robinw – I just came across this too and thought exactly the same as you, that it needed that filter or something like that. I was trying to change the “Topic tags: ” (or something like that) bit of the tags archive pages.

    It was picking up the default taxonomy-topic-tags.php file. This must have been picked up from the plugin default theme, not mine – it’s in /extras in my theme folder but changing it there had no effect, I had to move it out of there to the root of the theme folder. This totally makes sense from a WordPress standpoint but was non-obvious because I was looking in the bbPress folder in my theme.

    ANYWAY it’s sorted now but if someone else comes across it, check for some hidden template. I couldn’t get that filter to work for anything. I tried very very hard to make it work. It didn’t.


    @saulmarq
    – what you can do is make a new page and make the permalink your forum root. So my forum root (in settings) is forums and the page is at example.com/forums. Then use the [bbp-forum-index] shortcode. The gotcha is that this page will *only* use the bbPress template, I think – you can’t make a custom template for it. I might be misremembering that, but I do know you can’t change the default template. Someone tried to tell me this was a good thing, whatever.

    Doing it this way is nice because then you can write an intro like:

    Hi! Welcome to our forums. Dive right in. Post a lot, whoo!

    [bbp-forum-index]

    #148231
    localplayer
    Participant

    Hi Stephen, thank you.
    Here’s the link:
    You need to login to see the content: localp / localplayer1
    http://www.thework-coaching.de/forums/forum/beziehungsprobleme-gibts-nicht-die-challenge/
    Wordpress Version: 3.9.1
    bbPress Version: 2.5.4
    Buddypress: 2.0.1

    #148214
    Stephen Edgar
    Keymaster

    Doesn’t this require the person to put the image somewhere – ie on Smugmug – and then use the IMG tags to reference that image?

    Yes

    I was looking for something that allows you to just decide to show a photo in a forum post and upload it then and there to the site and have it display inside the post.

    For this a common a plugin is this one https://wordpress.org/plugins/gd-bbpress-attachments/

    #148208
    Stephen Edgar
    Keymaster

    You’ll have all sorts of shiny new and cool things when you do 🙂

    Check your web hosts support and FAQ section, they should have some pretty good docs on how to backup your WordPress site and your database. They might even have those fully automated and implemented for you so you only need to confirm the backup is there, it is current, and it has all your content that you expect to be.

    #148204
    Deamion
    Participant

    Hi Stephen,

    Are you talking about the bbPress toolbar when creating a topic or reply?

    Yes.

    What happens if you switch to the Twenty Fourteen theme?

    The Twenty Fourteen theme has the same issue.

    Have you disabled any TinyMCE plugins?

    I didn’t install a plug-in called TinyMCE. I thought it was included by default.

    Have you tried disabling all your plugins except bbPress to see if the issue is resolved?

    No. As I said, the site works find when using Chrome, or IE on the Linux/Apache box (with all plug-ins enabled). When I use the site hosted by Windows Server/IIS 8.5, Chrome, IE, and Firefox work.
    So it looks like a bug that only shows up when Firefox + Apache + bbpress are all working together. Any other combination seems to work fine.

    What version of WordPress and bbPress are you using?

    Latest version of both.

    Note: Please don’t bump old topics, create a new topic please, things change and most of the time the issue will be a different issue.

    Very sorry. I’ll do that next time.

    Note: I’ve decided that I’m just going to leave it as is. If Firefox users want to post, they can forfeit the editing tools, or use another browser.

    Sorry to have wasted your time. Maybe I’ll try to troubleshoot it again when I have more time.
    Thanks for your reply.

    #148201
    Stephen Edgar
    Keymaster

    Are you talking about the bbPress toolbar when creating a topic or reply?

    What happens if you switch to the Twenty Fourteen theme?

    Have you disabled any TinyMCE plugins?

    Have you tried disabling all your plugins except bbPress to see if the issue is resolved?

    What version of WordPress and bbPress are you using?

    Note: Please don’t bump old topics, create a new topic please, things change and most of the time the issue will be a different issue.

    #148197
    Stephen Edgar
    Keymaster

    Some more information would be helpful, a link to your site, what version of WordPress and bbPress are you using etc.

    Note: I split this from the other topic, no sense bumping old topics for something that sounds familiar but 99% of the time never is…

    #148184
    Stephen Edgar
    Keymaster

    Firstly, you should update WordPress to v3.9.1, if you have some reason you must remain using the 3.7.x version upgrade to 3.7.3.

    That said line #1198 of your style.css has the following:

    
    .hentry {
    border-bottom: 2px solid #f7f7f8;
    margin-left: 120px;
    padding-bottom: 15px;
    position: relative;
    }

    You will need to override that for your bbPress forums with a custom entry in a child themes CSS.

    eg.

    
    #bbpress-forums .hentry {
    margin-left: 0px;
    }
    
    #148176
    Ihatetomatoes
    Participant

    Hi,
    I am using iThemes Exchange and bbPress Membership Add-on and want to include access to a specific forum in one of the memberships.

    The issues is that the list of forums is not showing on a page where it should list all the forums available for that membership. I have logged this issue with iThemes, but replied with the following:


    I was installing bbPress on my site to test this issue and I got the following:

    Notice: bbp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). Please see Debugging in WordPress for more information. (This message was added in version 2.3.) in /public_html/wp-includes/functions.php on line 3245

    Can you start a ticket with them as well. There’s a good chance this could be part of the issue.

    Thanks for any help.
    P.

    #148163
    Robin W
    Moderator

    Getting bbpress to work with the many very clever (too clever!) themes is not always easy

    Ok, we could spend a lot of time getting a forum specific sidebar for your theme, but maybe easiest to get your sidebar working to display in bbpress

    so install widget logic

    https://wordpress.org/plugins/widget-logic/

    Then set up whatever sidebar is being displayed on the bbpress page for all the widgets that you want it to display, both for the homepage and bbpress

    Then you’ll see each widget now has a widget logic condition.

    For items you want to display only on bbpress add the logic

    is_bbpress()
    

    For items say only on a home page add

    is_home()
    

    for items you want on all pages apart from bbpress use

    !is_bbpress()
    

    Come back if anything is not clear

    Robin W
    Moderator

    It may well be that you’re search form is just including the forum posts.

    bbpress uses custom post types of ‘topic’, ‘forum’ and ‘reply’. You site wide search may well need to exclude these types so that forums results do not get filtered into the search.

    see https://codex.wordpress.org/Function_Reference/get_search_form

    In particular

    <input type=”hidden” value=”post” name=”post_type” id=”post_type” />
    Here we submit the value post. The default value is any, meaning, posts, pages and custom post types.

    ie the default is any would include forum entries.

    #148140
    Robin W
    Moderator

    my plugin private groups should do what you want

    https://wordpress.org/support/plugin/bbp-private-groups

    #148130
    Stephen Edgar
    Keymaster

    I can’t reproduce this using bbPress 2.5.4, BuddyPress 2.01 and WordPress 3.9.1 with the Twenty Fourteen theme.

    #148129
    Stephen Edgar
    Keymaster

    Everything here is working and is expected behaviour for bbPress.

    You are correct replies no longer have a title, the slug of a reply is now the reply ID.

    You would typically only notice this working in the backend by not seeing a reply title in the ‘edit reply’, yet when you look at the list of replies in the backend just like bbPress you will see all the replies have a title, this title is inherited from the topic title.

    The key thing here is that when viewing a single reply on the front end it has no context without it’s parent topic. We also encourage the use of the vast majority of bbPress via the front end and not the backend, the backend is really only meant to be used if you cannot do something via the front end, we try to make everything work via both interfaces but due to other issues further upstream in WordPress Core we can’t replicate all the functionality we implement.

    As you stated via @JJJ until WordPress 3.7 replies had to have a title, this imposed some limitations on what we could and could not do with replies, further to this change in bbPress there will be even further enhancements coming to bbPress, maybe 2.6, if not 2.7 due to this new found freedom and functionality we have with our replies.

    As I continue reading the previous page I knew this was coming 😉

    Why do I want this?
    1. permalink without reply-title, but only with reply-ID is not good for search engines.

    Neither is duplicated content, previously if your topic URL was /topic/topic-title, then your replies would be /reply/topic-title-1, /reply/topic-title-2 etc, similar content but not the same content, now each reply has a unique URL.

    2. if I open a reply-post in the admin area, there is no title “reply to: …. (topic title) …” (the title bar is empty) and I do not know to which post this reply refers. This is not good for handling the forum in practice.

    This is one of those things I just mentioned above, about working via the frontend vs the backend and until the updates upstream flow from WordPress Core this field will remain empty until we can actually hide it completely. You should be editing replies via the frontend, moderators and users all use the frontend to perform all the tasks required. I’m only a moderator here on bbPress.org and can perform any task bbPress needs just fine, it is the preferred experience as just because you can do something in the backend does not always mean you should.

    Apologies that I only saw this this morning, crazy week last week.

    #148124
    Robin W
    Moderator

    ok, with the code in, try the following

    Deactivate bbpress tweaks
    Dashboard>plugins>bbpress tweaks>deactivate

    Go into widgets
    Dashboard>appearance>widgets

    And look at the bottom of the left hand side. You’ll see an “inactive sidebar”, with your entries on
    Below this is an “inactive widgets”
    Drag all the entries from the inactive sidebar to the inactive widgets area.
    This then allows wordpress to delete the sidebar
    I normally log out and in again at this stage – probably not needed, but I’ve never bothered to check
    Then basically reverse the above
    Re-enable bbpress tweaks
    You see the bbpress sidebar returns
    Drag the entries back from the inactive widgets area to the sidebar

    #148119
    Stephen Edgar
    Keymaster

    Can you create a ticket on Trac please and we can take a look.

    https://bbpress.trac.wordpress.org

    #148086
    Stephen Edgar
    Keymaster

    bbPress includes the WordPress natively supported embed providers:

    Flickr Videos & Images WordPress 2.9
    Hulu Videos WordPress 2.9
    Imgur Images WordPress 3.9
    Instagram Images WordPress 3.5
    Photobucket Images WordPress 2.9
    SmugMug Photos WordPress 3.0

    (SmugMug and Photobucket support is being removed for WordPress 4.0 is released, see #28379)

    For any of the above you simple paste the URL on a new line by itself:

    e.g. https://flic.kr/p/57FFQn
    bbpress

    Any other images hosted elsewhere you simple link to them using the <img src=''> HTML

    e.g. <img src="https://farm4.staticflickr.com/3130/2701069417_4d5234fc18_o.jpg" width="198" height="49" alt="bbpress">

    bbpress

    #148069
    aslauda
    Participant

    That make sense, do i have to manually add in the members on wordpress under “users” even if i only want them to have access to the website and simplify it for them or do i have to find a plugin for that as well?

    Because as far as i know, (unless im told differently) they only want a forums for members, it wont be used for anything else for the time being besides the general public website

    #148067
    Robin W
    Moderator

    Example of my set up: On forum topic is open for all member’s to see and comment on
    the other topic is set for Officers only.

    You’ll need my plugin :

    https://wordpress.org/plugins/bbp-private-groups/

    #148065
    Robin W
    Moderator
    #148059
    joeyaberle
    Participant

    I just noticed that spectators and even blocked users, can see the Forum Settings page on the WordPress Dashboard. This is an issue because they can then go and change any of the settings of the forum.

    Has anyone else noticed this (or am I just crazy) and is there a solution to this?

    bbPress: 2.5.4
    Wordpress: 3.9.1
    BuddyPress: 2.0.1

    #148055
    Robin W
    Moderator

    Yes wordpress does like to try and show the toolbar which I hate !!

    Put the following in your functions file

    //disable toolbar for non-admins
    
    if (!current_user_can('manage_options')) {
    show_admin_bar(false);
    }
    

    This will mean that only admins can see the toolbar

    If you don’t know how to add code to the functions file, work you way through

    https://codex.wordpress.org/Child_Themes
    https://codex.wordpress.org/Functions_File_Explained

    How To Safely Add PHP Code To WordPress

    #148036
    Robin W
    Moderator

    I haven’t tested or used this plugin with buddypress, but this sets up private groups to prevent search and /topics revealing topics, and has widgets for recent topics and recent replies

    https://wordpress.org/plugins/bbp-private-groups/

    #148035
    charris25
    Participant

    I’m having the same/similar issue when I click into a group and click on the forum tab I can see

    “This forum contains 1 topic and 1 reply, and was last updated by Admin 1 week, 2 days ago.”

    “Viewing topic 1 (of 1 total)”

    But under “Viewing topic” topics are not showing up for any user.

    I had turned the search engine option on the dashboard on/off… that didn’t work.

    I changed the theme to the word press default theme and topics seem to be working properly there so I believe its something with the theme but I’m not sure I’m currently using the salutation theme. http://themeforest.net/item/salutation-responsive-wordpress-buddypress-theme/548199

    I’m using WordPress 3.9.1 bbpress 2.5.4 and Buddypress 2.0.1

    Any help would be greatly appreciated!

    #148030
    garyc14569
    Participant

    Hi I have a problem with having members register on my website. I have set up the login widget and register page. When I do a test registration it brings me to my wordpress login page and says user registration is not allowed.

    So I went to general settings and put anyone can join. When I did another test registration, it went successfully but it allowed me access to the dashboard/backend. I set the new user title as subscriber and contributor but both lead to the dashboard. How do I have the user subscribe but without access to my dashboard?

Viewing 25 results - 9,376 through 9,400 (of 26,874 total)
Skip to toolbar