Forum Replies Created
-
In reply to: Use bbpress functions.php outside of bbpress?
TKServer,
Do you have bbpress installed ? Or you created the forum yourself and now you want to expand your own development by uses some good functions from bbPress ?
Pascal.In reply to: Reply’s above the site (header)Hi kubert,
Seems a theme issue.Is it a public forum ? What is the URL ?
What theme do you use ?Pascal.
Hi ChrissiLisa,
Not sure what you want to obtain, but can this example help ?add_filter('bbp_get_topic_content', 'chrissilisa_function'); add_filter('bbp_get_reply_content', 'chrissilisa_function'); function chrissilisa_function($content){ return 'hiiiiiiii'.$content; }
Pascal.
In reply to: Second avatar image for donatorCiao tomtower,
bbPress only or do you use buddypress ?
Pascal.
In reply to: richer toolbarHi Denaize,
Any extras around bbPress are welcome. Let me know if you scripted something, or upload your plugin/theme to WordPress.org so others can benefit from it also.
Pascal.Hi,
I remember having something similar last year with pagination. The fault was somewhere the theme and the permalink settings that did not agree with each other. Unfortunately I don’t remember how it was solved.
Pascal.Hi,
with just this small portion of the code, it’s difficult to see the whole loop/picture of course. I’m not sure of what you try to obtain, but just one thing to start from your first one (custom_bbp_reorder_replies), to inverse the order I used:if ( bbp_is_single_topic() && !bbp_is_single_user() ) { $args['orderby'] .= 'post_modified'; $args['order'] .= 'DESC'; }
Pascal.
In reply to: richer toolbarYeah:
Convert emoticons like :-) and :-P to graphics on display
Maybe your Theme has it somewhere else. But if you don’t find it, contact the support of that plugin to get more detailed answers.Pascal.
In reply to: richer toolbarYou are sure you don’t have it ? I have it as first setting, top of the page, called ‘Formatting’.
Pascal.In reply to: add_action ( ‘bbp_show_topic’, .. ?Hi Chrissilisa,
Do you want to define your own functions ? Or just do something before every topic is displayed ? Maybe the last paragraphs of https://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum-part-5/ about the ‘bbp_before_X’ could help you out here.
Pascal.
In reply to: Get replies ID of a given topicHi,
Talking purely on the DataBase side: Every reply has a metatag with the id of the ‘parent’, so the id of the topic. If you know the topic id (let say it’s 123) then a query to the DB on the postmeta table where (meta_key = ‘_bbp_topic_id’) and (meta_value=123) should give you the all the replies (including the topic itself)
Talking functions, check out bbp_get_all_child_ids to get an array with the child records.
Pascal.
In reply to: how to show a topic list from just one forum ?Yeah, this seems to remove it. Place it somewhere where you can add CSS:
.bbp-topic-form .bbp-form legend { display: none; }
Pascal.
In reply to: how to show a topic list from just one forum ?Hi,
Maybe a CSS trick can help. Let’s have another look.In reply to: richer toolbarHi denaize,
I did not try any of the below, but just to give you ideas:
For the smileys you could try https://wordpress.org/plugins/wp-monalisa/
For attachments there is https://wordpress.org/plugins/gd-bbpress-attachments/Hope this gets you started.
Pascal.In reply to: how to show a topic list from just one forum ?Hi,
That shortcode calls the content-single-forum.php template file. So you’re options are to copy that file to your theme and edit it (but this will be reflected globally, not just in the shortcode).
Or create your own shortcode based off the bbPress one and have it use a custom template file.Pascal.
In reply to: You must be logged in to reply to this topicSo they were the same…
The only option I see is to really insist with your current provider, sorry for not being able of more help.
For the application caching, a lot of pages exist, like http://www.sitepoint.com/common-pitfalls-avoid-using-html5-application-cache/BEFORE DOING THE NEXT LINES, MAKE SURE YOU HAVE DIRECT ACCESS TO YOUR FILES ON THE SERVER IN CASE IT GOES WRONG.
Just a test to see if it helps, can you go in your dashboard, ‘Appearance > Editor’, choose on the right the ‘Header’ (header.php) file and when the file opens, find somewhere the <head> tag and copy the following lines just below :<meta http-equiv="cache-control" content="max-age=0" /> <meta http-equiv="cache-control" content="no-cache" /> <meta http-equiv="expires" content="0" /> <meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" /> <meta http-equiv="pragma" content="no-cache" />
If it helps, it could be a workaround for now, but you should not keep this forever.
Keep subscription to this topic. If I find something else, I’ll post it here, but for now I have no clue.
Pascal.
In reply to: You must be logged in to reply to this topicHi mica123,
I logged-in, played around and got indeed the same effect like you described.
I check your installation configuration and it seems all normal.Can you confirm that when you tested it on the other provider, you had the same theme (responsive) installed there ? And the same options set ? Because I see in some javascript that the theme is talking about ‘applicationcache’.
Please delete the test topics/replies and the login you created for me.
Pascal.
In reply to: Members account detailsHi blacklavaa
If you just use bbPress, you should have normal wordpress users. So on your dashboard, you should find them under ‘Users’.
Pascal.
In reply to: internal server errorHi peoriachuck,
Thanks for solving most of your own issues 🙂
Are you a keymaster when you try to view the trashed topics ?
Who can view the trash is depending on the permissions you have. Check ‘view_trash’ on https://codex.bbpress.org/getting-started/before-installing/bbpress-user-roles-and-capabilities/Pascal.
In reply to: Search function not showing resultsHi,
To start: make sure you have the following option ticked:
Settings > Forums > Forum Features > SearchI saw that some people installed advanced plugins like ‘Search Everything’ to get around this kind of issues.
Pascal.
In reply to: Strange cache issues (in profile and topic count)2 different plugins (unfortunately) for now:
– WP Overview (lite)
– Send System InfoThanks,
Pascal.In reply to: Advertica Lite Theme > CSS issues with forum repliesMy first reaction would be to ask the theme author, because it clearly is a theme issue.
For the CSS, you will have to play with the “bbp-reply-content” class, but I don’t see immediately what would be the best setting. Maybe somebody else can propose something here ?
Pascal.
In reply to: internal server errorIf you always get Internal Server Error, then you might have a conflicting plugin or theme. Try to disable some.
For the count you:
– could use the bbPress repair tools for recalculating
– need to be sure these are not hidden or marked as spam, but counted anyway.Pascal.
In reply to: Advertica Lite Theme > CSS issues with forum repliesIs it a public forum ? If you send me the link, I can have a look…
Pascal.
In reply to: Bulk-move bbPress topicsYou ask, you get ! Here you go : https://wordpress.org/plugins/bbp-move-topics/
Please check the sticky topics on the support tab for upcoming things.
Try it and PLEASE let me know how it goes (if bad: support tab, if good: review).
For all suggestions or issues about the plugin, make sure to use the support tab there and NOT this global thread anymore.Enjoy the moves,
Pascal.