Forum Replies Created
-
Nothing on the profile pages or single topic views yet… but potentially in the future 🙂
Correct.
In reply to: Lightbox for bbPress?Here is what is on the home page.
http://pastebin.com/hw3svPP5Here is what is on your forums.
http://pastebin.com/q0PzuM4TSo you need to link the image on the forums to the full sized image, if that makes sense?
In reply to: Remove "Edit this" link at top of topicsHmm, not sure, would be useful to see a link, but then of course everyone would have your link to edit your topics/forums.
In reply to: Upload imagesInside forums > settings do you have any option for Fancy Editor?
In reply to: Remove "Edit this" link at top of topicsCheck what the default role people are being assigned inside Settings > Forums > Default User Role
Just to make sure they aren’t being registered as moderators or anything.
In reply to: Lightbox for bbPress?What you can do is add the current lightbox you have installed to a specific element on your site.
For example, something like this inside script tags in your theme, or inside a js file:
jQuery(“.bbPress .bbpress-forums img”).lightbox();
This does depend on your theme though, might be easier if you could post a site link?
Good luck!
In reply to: Remove page title only for forum pages.You could use…
.bbp-content .entry-title { display: none; }
in your css file.
In reply to: Problems after installationTry going to settings > permalinks and re-save them. It can help with some page not found errors.
In reply to: Profile Page LayoutYou can edit the user-profile.php file to use whatever layout you like 🙂
I never had an issue with updating wordpress to 3.5 or updating bbPress so I would guess that it might be a plugin conflict, but I am not sure.
Have you tested deactivating certain plugins?
In reply to: Remove "Edit this" link at top of topicsYou can remove this inside your template.
Do all users see this, or is it just your admin account that can see it? Just wondering as the wordpress edit page is to edit the description of the forum, not replies or topics from users.
All I can see at the moment is this: https://codex.bbpress.org/type/actions/
I think the documentation is continually being worked on, but I believe the focus is more on the actual plugin at the moment, correct me if I am wrong anyone.
If you do find a list of great actions and hooks then share them! All it takes is for one person to go through, use them and help others out by posting their findings.
Good luck!
In reply to: Custom forum login using external databaseIt’s weird though, whenever I enter an invalid customer ID, I get the MySQL error saying “mysql_num_rows() expects parameter 1 to be resource, boolean”.
You should probably check that $result has something before passing it to mysql_num_rows.
This page has a lot of actions you can use.
https://codex.wordpress.org/Plugin_API/Action_ReferenceAnd this page has a lot of filters you can use.
https://codex.wordpress.org/Plugin_API/Filter_ReferenceIn reply to: "Freshness" Bug after Topic MoveI would guess some kind of plugin conflict, but I am not sure.
In reply to: Showing recent posts in parts of the site?This also works, you can specify a post parent if you use this.
Or the WP_Query reference is here, which could help: https://codex.wordpress.org/Class_Reference/WP_Query
Good luck!
In reply to: separate out tags for each forumSo should they be using “basketball rules” as a tag instead? Say I want to find out various rules of various sports, the “rules” tag would be perfect, just thinking from a user point of view.
In reply to: "Freshness" Bug after Topic MoveIf you go to Tools > Forums you can recalculate most stuff in the forums. Usually when moving forums that is where I go 🙂
Good luck!
In reply to: bbPress Google+ CommunityJust joined, the community feature in G+ looks nice.
In reply to: Custom Forums Page (with categories)Can you use
echo do_shortcode(‘[bbp-single-forum id=32]‘);
Inside the template files, should work I think?
In reply to: Lightbox for bbPress?You should be able to install a standard lightbox or thickbox and then look for images that reside inside the forum containers and then call the lightbox on them using jQuery. Shouldn’t be too difficult.
Have you implemented a lightbox yourself before without a plugin?
In reply to: Google AuthorshipDoes google authorship require a link to the persons google plus account? Or is that not the only way to do it?
In reply to: Is there a way to remove underlinings?text-decoration: none; will remove underline.
You can do this inside your bbpress css file, just apply it to the correct element.
Good luck.
In reply to: bbPress Topic to Post ConverterThere is not a default way to promote a topic into a post, that I know of anyway.
You will probably be looking for a plugin to do that.