Forum Replies Created
-
In reply to: view count in bbpress group forum doesn’t work
Yeah I don’t know what to tell you it just doesn’t work.
I tried that way that you had views , and some other views plugins that didn’t work also.
Ya still got the issue Lionel??
I see noone picked this up so if you are still having the issue I will post a link to this to the Devs and see if they have any ideas.
If it is mysterious to the Devs then I will recommend you to hire a developer as a last resort to fix this mysterious issue.
In reply to: How to create Dynamic URL for “subscriptions”Adding menu links like that is quite difficult unless you manually create the menu in HTML and just not worry about the WordPress menu configuration.
I suggest maybe creating a copy of the login widget and add whatever links you want for the suer to the bbPress login Widget.
This explains it quite briefly.
If you need help or an example plugin to create this please reply back.
In reply to: New theme available: Scoun@muchman13 and @dreambot
Guys this is an old topic
The theme was probably for bbPress v1 so not for the bbPress 2 plugin
the guy doesn’t even use WordPress, that is just a static site hosted on I think Github
In reply to: @mentions featureI don’t know , suggest you hire a developer if you really want this functionality.
but by default bbPress and BuddyPress do not use the visual editors so Id say just use the default text editor.
In reply to: bbPress 2.5.5To create a topic you choose the forum you want to create a topic in from the left forums list.
then you scroll down to the topic form.
to fix your issue.
#bbpress-forums .reply, #bbpress-forums .reply:hover { color: #000000 !important; }
In reply to: Converting from PHPBB3 only converts “replies”I am importing data from a PHPBB3 3.1.4 installation.
Known issue that is being worked on.
I just need to populate the space after the colon with the offending word:
That might be some custom development and you might need to hire a developer for that.
It wouldnt be that hard I am sure there is a filter to change that.
In reply to: Forum replies are getting cut offeither one is okay as long as you put the bbpress.css file in a folder called css in your child theme , and the style.css from your theme is a child theme.
I just checked your site , and I see you basically just copied and pasted the example template and created a bbpress.php from it.
I told you it is not that easy, that’s why your pages look a little off.
If you still need help with this then reply back.
In reply to: view count in bbpress group forum doesn’t workits a spammer ignore it.
as for your topic, I haven’t dabbled deep with BuddyPress and maybe later today I will play with it and see what I can come up with.
In reply to: BBpress and theme compatiblityI was guessing with the Javascript thing,
But i mean there could be conflicting js from your theme??
Contact theme author or if you are the theme author , work backwards and find the problem??
If you find the problem report back and post what it was so hopefully other users do not have the same issue in the future.
In reply to: BBpress and theme compatiblityTry posting a reply to that topic in another theme and see if it works.
If it does there is an issue with your CUrrent Theme.
If it still does not work , deactivate all your plugins except bbPress and see if you can post a reply again.
In reply to: BBpress and theme compatiblitydo you have some ajax comments on your site??
did you minify any javascript??This is planned for a future release , I think the next big release??
You can track the progress here
In reply to: BBpress and theme compatiblityTry these plugins one at a time and see if it fixes the issue.
In reply to: table with most popular topicsI found something awhile ago , sorry I forgot about this topic.
i cannont seem to find the code i used though.
But you can just use this plugin instead , it should do the same thing.
https://wordpress.org/plugins/bbpress-popular-topics/
The shortcode is something like this for that plugin.
[bbpresspopulartopics qty = 5]
In reply to: Forum replies are getting cut offbbPress is inheriting some CSS from your theme that is suppose to be for the WordPress comments.
try this custom CSS to fix the issue
#bbpress-forums .reply { margin: 0px; }
In reply to: Youtube Embed is Not workingtry the general issues troubleshooting from here
In reply to: Youtube Embed is Not workingas long as you have embed media checked
and also a full hyperlink from youtube.
then it should work.
looking forward to your template or codex changes
I just updated the codex article and put an example template to look and study off of.
It is not just copy and pasting the template into a file and it working, you have to study it and read the comments in the code and find similarities in your index.php file. Then you can create a bbpress.php file from your index.php file.
If I add the short-code to a custom page using the page.php code it works
Yes I know but it is just that page, you need all of the bbPress forum pages. Using shortcodes like that means you would have to put a topic shortcode for every topic you have in a bunch of pages. And that is not what either of us are looking for , right??
It doesnt matter if the default forum uses index.php or page.php – it doesnt work.
Yes it does, and you have to edit the new bbpress.php file.
I have sequentially copied pages.php and index.php and made them bbpress.php and each time I can see that the default forum is using it, and each time it doesnt work
Its not as easy as just renaming it.
So i guess I need a generic index.php that will work (which I think you said you were producing) OR some workaround so the generic forums page doesnt appear in the directory path
Was busy with other stuff , but yes i uploaded an example template to look over and compare to your index.php. You cannot just copy and paste , you have to look at the simple code and read how it works in the comments i left in the code.
In reply to: Youtube Embed is Not workingJust place the url of the video and it should automatically embed.
In reply to: Can’t get small avatar picture to show on websitePlus i basically just got this code from here
In reply to: Can’t get small avatar picture to show on websitedid you copy it correctly I just tested it out and pasted it right from my functions.php file
Im going to paste it again just in case it was me that forgot something.
function my_bbp_change_avatar_size($author_avatar, $topic_id, $size) { $author_avatar = ''; if ($size == 14) { $size = 24; } $topic_id = bbp_get_topic_id( $topic_id ); if ( !empty( $topic_id ) ) { if ( !bbp_is_topic_anonymous( $topic_id ) ) { $author_avatar = get_avatar( bbp_get_topic_author_id( $topic_id ), $size ); } else { $author_avatar = get_avatar( get_post_meta( $topic_id, '_bbp_anonymous_email', true ), $size ); } } return $author_avatar; } /* Add priority (default=10) and number of arguments */ add_filter('bbp_get_topic_author_avatar', 'my_bbp_change_avatar_size', 20, 3); add_filter('bbp_get_reply_author_avatar', 'my_bbp_change_avatar_size', 20, 3);
In reply to: Can’t get small avatar picture to show on websiteuse this PHP function to resize the small avatars
function my_bbp_change_avatar_size($author_avatar, $topic_id, $size) { $author_avatar = ''; if ($size == 14) { $size = 24; } $topic_id = bbp_get_topic_id( $topic_id ); if ( !empty( $topic_id ) ) { if ( !bbp_is_topic_anonymous( $topic_id ) ) { $author_avatar = get_avatar( bbp_get_topic_author_id( $topic_id ), $size ); } else { $author_avatar = get_avatar( get_post_meta( $topic_id, '_bbp_anonymous_email', true ), $size ); } } return $author_avatar; } /* Add priority (default=10) and number of arguments */ add_filter('bbp_get_topic_author_avatar', 'my_bbp_change_avatar_size', 20, 3); add_filter('bbp_get_reply_author_avatar', 'my_bbp_change_avatar_size', 20, 3);
The CSS you would have to use now is
#bbpress-forums .bbp-author-avatar .avatar-24 { width: 24px !important; height: 24px !important; padding: 0 !important; border: none !important; }
and you can remove the first function i gave you to test with