Forum Replies Created
-
In reply to: Change TinyMCE to not add paragraphs
not my field of expertise, but suggest you have the wp code,
and try
function bbp_enable_visual_editor( $args = array() ) { $args['tinymce'] = true; $args['quicktags'] = false; return $args; } add_filter( 'bbp_before_get_the_content_parse_args', 'bbp_enable_visual_editor' );this just does the ‘turn on’ earlier
may work, may not !!
In reply to: UI issue in ../extend/buddypress/groups.phpgreat – thanks for posting
In reply to: UI issue in ../extend/buddypress/groups.phpand if you want to suggest code changes, then this is the place
In reply to: UI issue in ../extend/buddypress/groups.phpI am just a humble user, so can’t comment on changing core code, but is it is styling capability you want you could filter the actual title eg
add_filter( 'bbp_get_forum_title', 'rew_title'); function rew_title () { $title = '<span class="rew">.$title.'</span>' ; return $title ; }In reply to: No Forum role created for new userusers are assigned their role when they first log in, so you would not see a role on user creation
In reply to: bbPress forum and topic menugreat – glad you are fixed
In reply to: bbPress forum and topic menuok, closest without code would be :
1. go into
dashboard>settings>bbp style pack>breadcrumbs
Leave Disable all forums breadcrumbs UNTICKED
but tick disable on 1, 2, & 3
then put this into
dashboard>settings>bbp style pack>Custom css
.bbp-breadcrumb-forum { border-radius: 28px; padding: 7px 15px; text-decoration: none; background: #3498db linear-gradient(to bottom, #3498db, #2980b9) repeat scroll 0 0 } .bbp-breadcrumb-forum::before { content: "Back to "; }you may need to play with the background color to get it to suit your website – I’ve given you a blue gradient
In reply to: TTFB problemthink you’re being a tad optimistic 🙂
In reply to: bbPress forum and topic menuso
1.no breadcrumb – that’s easy to achieve
2. back button – yes but back to what –
a) forum->topic and then back to forum for that topic – yes do-able
b) forum->sub-forum and then back to higher forum – yes do-able
what else?In reply to: TTFB problemnot quite sure what you are expecting as a reply – the guy you paid answered your question.
Basically he is telling me that we won’t be able to achieve good loading time, because it is running on WordPress and the database design is a problem.
bbpress runs on wordpress, and as wordpress is running on 74 million websites, I suspect that the database won’t be migrated away from mysql anytime soon.
In reply to: Topic Heading not visible on the detail pageyou are telling me that this was working, and now it is not.
If you have changed bbpress version, then revert to the previous, but I strongly suspect that this not the case.
Otherwise you have changed something, either in a theme version, a wordpress setting, a page settings, a template, a theme setting, a plugin update or something else such as a php version, a server setting etc, etc. etc.
I cannot possibly guess at what you have changed, so I cannot see how to help.
In reply to: I get HTTP ERROR 500 when i visit forum rootI believe version 2.6 will
7.1 introduced some funny things, and screws up many plugins !
In reply to: I get HTTP ERROR 500 when i visit forum roottry resetting permalinks
dashboard>settings>permalinks
and just click save
then come back
because the membership plugin is able to create also other membership privileges and content and that does not work if the member has a forum role of participant.
can you give us specific examples of what this means
In reply to: Topic Heading not visible on the detail pageok, so it will have been something that has changed.
Not sure how we can help further
In reply to: Adding to menu bargood, so you are making progress
In reply to: Adding to menu barok, I don’t have avada, but have a look on the bottom left of the appearance>menus page and see if there is an option under any of the items there to add a forum
then come back
In reply to: Topic Heading not visible on the detail pageBut previously we were able to view the Title of the forum
so this is something that was working, but now isn’t?
In reply to: Adding to menu barI suspect they are just links in a menu.
go back into
dashboard>appearance>menus
where they appear in the menu’s against each item on the right you should see words like ‘page’ ‘posts’ ‘category’ ‘custom link’ etc.
what do the forums have against them?
In reply to: HTML content and attach fileuse the plugin GD bbpress attachments for files.
In reply to: Topic Heading not visible on the detail pagesorry but it is theme related.
since you bought a paid theme, suggest you contact them for support
In reply to: Column total topics and post HOME FORUMyour theme is doing this.
Do you know how to ftp files to your server?
In reply to: Adding to menu barthis sound like a theme issue.
do you have a link to whatever this ‘dropdown’ is?
In reply to: Blank screen w/ error messageGreat – glad you’re fixed
In reply to: Blank screen w/ error messageseems like that will be fixed in bbpress 2.6
so 3 fixes
1. downgrade to a lesser version of php
2. upgrade to bbpress 2.6beta-2
3. in bbpress 2.5.12 change line 1851 from$meta_query = $posts_query->get( 'meta_query' );to
$meta_query = $posts_query->get( 'meta_query', array() );Since the next upgrade will fix that anyway, no issue in changing the bbpress file
best I can offer I’m afraid