Forum Replies Created
-
In reply to: How to list Top Users by most topics?
I don’t know of any plugin that does this at the moment
my bbp topic count plugin shows topics/replies/totals for users in topics and replies
Not sure what to advise for best.
I’m not a bbpress author, so have no direct influence on code.
However I have 6 plugins that are sub-plugins to bbpress most of which have shortcodes that won’t display correctly under 2.6rc5.
I have asked the authors to reconsider restricting bbpress – the min file is only 32kb, so won’t affect load times to go on all pages – it is just downloaded once when the site is accessed.
If they decide to go as is, I will need to duplicate part or all of the bbpress.css file in my plugins, which means that someone using 3 of my plugins will get the same css downloaded 4 times – 3 by me and one by bbpress which is not good 🙂
So watch this space.
if you are deep into coding, you could just enqueue a copy of bbpress.css in your theme, or probably much easier just dump the contents of bbpress.css into your theme’s css – that will fix it.
I’ve now set up a quick test site for 2.65c5 to validate
I can confirm that
<?php echo do_shortcode("[bbp-forum-index]"); ?>
doesn’t work but the shortcode on a page on it’s own does.
However your issue with profiles is a theme/bbpress one, it all works on my test site.
Can you try adding this to your themes css
#bbpress-forums ul.bbp-forums, #bbpress-forums ul.bbp-lead-topic, #bbpress-forums ul.bbp-replies, #bbpress-forums ul.bbp-search-results, #bbpress-forums ul.bbp-topics { overflow: visible !important; }
that seemed to fix it for your site, but I haven’t checked that it doesn’t create issues elsewhere !
need a link to your site and the forum, so that I can see live
bbpress using a custom post type and relies heavily on wordpress to then put these into the posts and post meta table.
So you would need to completely rewrite the core of bbpress, so in practise the answer is that you can’t.
ok, 2.6 is trying to just load on bbpress content pages, but obviously is missing those that use code.
I’ll update the trac ticket
Sorry, but I support live versions, so I’m reluctant to load RC code to my test site, so I’ll keep asking you to do stuff if that’s ok !
Can you create a page and put the shortcode in there – I want to test if that makes a difference over using code to call it.
I’ve found a trac ticket for this and logged this chat here
which shortcode are you calling ?
In reply to: Size of box for listing sub forumsgreat – glad you are fixed !!
interesting…
so I can see in style editor that
the bbpress.min.css is not being loaded on the home page
but bbpress.min.css IS being loaded on the bbpress pagecan you confirm that with 2.6 under twenty fifteen it is loading the bbpress.min.css on the homepage?
so test results
2.6 on twenty fifteen – works
2.5.14 on twenty fifteen – works2.6 on your theme – doesn’t work
2.5.14 on your theme – worksAbove all correct ?
In reply to: Size of box for listing sub forumssorry – was buzzing between subjects and missed your screenshot
with the link http://e-sporturkiye.net/forum/
Mine is fine in Firefox, Edge, Chrome and IE
All looks good to me
In reply to: Size of box for listing sub forumsI see the counter strike forum with a list of 4 sub forums all looking good – can you explain exactly what the issue is with this one ?
your theme (or maybe other plugin) is only loading bbpress.css on what it thinks are bbpress pages, and it is not treating the front page and profile as bbpress.
I don’t think bbpress 2.6 is doing that, but a quick flip to twentyfifteen would confirm, although I think you are saying you have already tested that above?
Do you have a plugin that is trying to minimise css loading or is your theme being too clever ?
In reply to: Size of box for listing sub forums@emiralem you’ll need to provide a link to a topic example – all I could see were blank forums
In reply to: we are ip and emails in the database?great – glad you are fixed
In reply to: Do not see the topic in forumok, 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
In reply to: we are ip and emails in the database?You query is at fault, as you should get some results !
Is your site public ?
I haven’t tried that version, so can’t comment.
make sure you have cleared the cache in your browser.
But yes would need to see an accessible version to see what is happening
In reply to: Do not see the topic in forumtry
dashboard>settings>permalinks
and just click save, that will reset them
In reply to: we are ip and emails in the database?they are held in the postmeta table
so taking a topic or reply make a note of the id – in the example below it is 16191.
then go into the postmeta and enter this sql command
SELECT * FROM
wp_postmetaWHERE
post_idLIKE '16191'
assuming your table prefix is ‘wp_’
you see entries for both the IP and email
In reply to: @mentions not working@pjbarry21 – thanks for that.
Having looked at the link (https://bbpress.org/forums/topic/mentions-not-becoming-links-some-times/ ) you gave, and that both @elhardoum and @netweb – I’m not going to better their responses.
I’m not sure if 2.6 helps – the trac ticket is marked as closed, but the milestone is 2.6
In reply to: how to switch bbpress template?all the templates are held in
templates/default/bbpress
the main forum is displayed using
content-archive-forum.php
and that then calls pretty much the rest in a hierarchy, so start there