Forum Replies Created
-
In reply to: Disable Topic Type
Your Welcome. 🙂
In reply to: How to add user profile link to specific menu?no problem 🙂
In reply to: Changing the destination of “To Forums List”…You do not need to put the forum index shortcode in a page. And you can add content above the forum by editing the forum archive template if you copied it in a child theme in a folder called bbpress.
The actual forum index/root page is the one that the forum list button is redirecting to.
Yes there is a bug, it is fixed in the latest dev version.
Use this temporary solution to fix the issue for now.
Good find on this bug, and thanks for posting your temporary solution. I tried the solution and it works for most of the replies, while I was testing I got some that seemed to not work and it went to the wrong post still.
The error is not only present in the replies created section in your forum profile but also if you click the post id next to a reply (#1234), you might be directed to the wrong reply.
I tried this on the latest dev version of 2.6 and this issue is not present.
In reply to: Disable Topic TypeIt should only appear for moderators and Keymasters. Are your participant users seeing this??
In reply to: Make the forum pages full-widthGlad you resolved your own issue. L)
In reply to: Phpbb import failed, no replies shownWhat version of phpbb are you trying to import from??
In reply to: make everything under topic-edit-box unvisibleCan you take an image of what exactly you want to make invisible?
In reply to: How to add user profile link to specific menu?If it is only those two items, you could be able to float the other item to the right and if the unordered list is floated to the left it will make the profile link the first item.
li#menu-item-2679 { float: right; }
Make sure the forum in the private group is also private by editing the forum and setting the visibility in the specific forum by going to Forums > All Forums.
Now after that make sure to run the repair tools in Tools > Forums.
Doing this hid it from the topic index for me. It should work for the widgets since the forum is private too.
In reply to: Latest author reply avatarGlad your issue is resolved though. 🙂
In reply to: Revision logs notes code?Are you just using the_author and the_modified_time to just display 1 revision log. You can use the default revision logs and then use a function or some CSS to display 1 revision log instead.
PHP functiion, place in your child themes functions.php file or in a functionality plugin.
// Only return one entry for revision log otherwise it gets cluttered function bbp_trim_revision_log( $r='' ) { $arr = array( end( $r )); reset( $r ); return( $arr ); } add_filter( 'bbp_get_reply_revisions', 'bbp_trim_revision_log', 20, 1 ); add_filter( 'bbp_get_topic_revisions', 'bbp_trim_revision_log', 20, 1 );
CSS snippet, place in your child themes style css or in anywhere else you can place custom css snippets like a custom css plugin.
.bbp-topic-revision-log li { display:none; } .bbp-topic-revision-log li:last-child { display:block; }
Probably the SQL query code he posted a week ago.
Reset forum don’t work, how to clean up the db with phpmyadmin?
In reply to: When I deactivate bbPress, I cannot log inYou unable to remove it because of some error, or you do not want to remove it??
I cannot really test the optimizepress plugin since it is a premium plugin.
In reply to: Reply’s above the site (header)Thanks 🙂
In reply to: HTML dont works at bbpress homepageIn reply to: get user-id of $topic_idYou can also keep download a copy of bbPress and search through through the files as well.
In reply to: What is _bbp_activity_id and do I care about it?_bbp_activity_id
is part of the BuddyPress integration code in bbPress specifically the activity component part of BuddyPress.In reply to: Use bbpress functions.php outside of bbpress?Are you saying that you want to move the bbpress-functions.php file into your theme to make it easier to customize the functions already in the plugin??
You can do that, just copy the bbpress-functions.php file into your theme/child theme.
If you want to customize some functionality in bbPress, you can use the hooks and filters provided in the plugin too.
In reply to: HTML dont works at bbpress homepageThis is somewhat theme related and bbPress theme compatibility related.
What theme are you using, and I can take a look to see what I could do to fix it.
In reply to: Members account detailsNo that is not what he meant.
When your users sign up to your site, you should be able to see the emails of the users in Users > All Users in your site WordPress backend.
In reply to: extra fields in topicform (edit-function)In reply to: Reply date format based on ISO 8601Glad you resolved your issue 🙂
In reply to: get user-id of $topic_idThis should help.
bbp_get_topic_author_id()