Search Results for 'bbpress'
-
Search Results
-
Topic: Login Shortcode Assistance
I’m using the bbpress login shortcode [bbp-login]. The example shown on this page has a title and descriptive text but I don’t see any way/parameters for entering this:
I’m guessing this is just an image that was placed in a lightbox plugin. Wondering also if anyone knows how to get it into a modal window like this too.
Thanks for any assistance.
Tim
Topic: Ad King Pro breaks bbPress
I have been building a site http://www.racingpigeon.com
The site includes a bbpress forum.I found that there was peculiar things going on with the forum such as it could not be accessed from the back end. It can be viewed from the front end until someone logs in then it becomes blocked and returns 404. This happened first on the production site but was confirmed on a pilot installation also by deactivating and reactivating Ad King Pro. 1.9.9
bbPress 2.5.3Topic: Forum root confusion
Hi all.
My apologies if this is a fairly rudimentary query, or one covered elsewhere, I did search but managed to only confuse myself more ๐
My site is:
http://www.gastronomicslc.com/Running latest WP and a Genesis based theme from Studiopress. I installed bbPress but am having issues generating a coherent main page, I guess the forum root if you will. I followed the install instructions and made my forum root slug (foodie-talk), I also then made the foodie-talk page, however that doesn’t seem to work:
http://www.gastronomicslc.com/foodie-talk/
I have created two test sub-forums
http://www.gastronomicslc.com/foodie-talk/forum/general-talk/
http://www.gastronomicslc.com/foodie-talk/forum/ask-expert/with a test post in each. I have yet to link to the bbPRess directly from my site while I work on this. On the foodie-talk page I have the [bbp-forum-index] code right now.
I imagine I have made some simpleton fault, appreciate anyone pointing it out ๐
Hi. Is there a way to add mandatory custom fields in the BBPress registering process? I did get someone to add a text field for the location but it wasn’t mandatory and for the UK, they were adding variations like England, Britain etc so in my user directory and search, people looking for people in the UK would only find people in the UK and not in England or the United Kingdom etc. So I had to go and edit their profiles to say United Kindom so they would come up in the search. Sooo…what I really need is not a text field but a drop down or other thingy where new members have to choose where they are from from the options they are given. So I need a list of all countries and then for now, a list for US states and UK counties. I have a coder to do this for me (Ive not got a clue)….is it possible to do this by configuring BBpress or is a custom code thingy needed? If I can do it, I will show it here maybe so others can see?
Topic: Conflict with qTranslate
Hi all,
I try to make a multilingual website with WordPress and I have a bug (?) when I activate bbPress and qTranslate both.
Indeed, the bbPress’ menu in admin appears correctly when qTranslate is disabled, but disappears when both are activated. And if I try to go to the edit topic’s page, WordPress says to me I don’t have rights. I debug the allcaps WP_User property and I don’t find the edit_topics capability.How can I fix that problem?
Subsidiary question: Does bbPress allow multilingual?
My config :
– WordPress 3.8.1 (last)
– bbPress 2.5.3 (last)
– qTranslate 2.5.39 (last)Thanks!
Topic: bbpress installation errors
It has been about two weeks since I converted my vBulletin forum over to BBPress. The existing forum has been around since 2008 and since the conversion, we have been receiving emails over entire history of the site that topics have been replied to. These are notifications that have been sent non-stop since the conversion.
I installed Buddypress and BBPress at the same time, so I’m not sure exactly what is causing all of these emails to continue to be sent out. How do I stop these notification emails from going out? I’ve already attempted to add the following code to my site specific plug-in, but it does not seem to have helped much. I guess it helped with mentions but not the replies.
remove_action( ‘bp_activity_posted_update’, ‘bp_activity_at_message_notification’, 10, 3 );
remove_action( ‘bp_groups_posted_update’, ‘groups_at_message_notification’, 10, 4 );What are the BBPress hooks to stop reply notifications? I just want them to stop for awhile without disabling email site wide.
I kinda know how filters work right now and I’ve used them a few times to hide or change default bbPress functions.
As you can see at my screenshot I’ve completely removed the Merge, Split, Move and Reply links from my admin_links() function because I don’t need them. It’s a fun thing to do if you start to understand how it works.

The only problem is,
bbp_topic_admin_links(); is just a wrapper for all the links, each link has it’s own function and if you play nice with them you can copy them and use them straight into your page templates and you’ll see your link-/button show up wherever you want them to show up.
This is great, I’ve done something like this shmoo_bbp_topic_edit_link(); changed and reused the default topic link function and placed it at the top of the content as you can see in my screenshot.Great, only thing is, if I try to do the same with a function from a plugin developer it says; Fatal error: Call to undefined function get_topic_report_link()
Why is this function undefined ??
The developer has made that function in his plugin file – which hooks straight into my functions.php , why can’t I use his functions the way I do use the Core bbPress functions inside my functions.php file..I would like to remove the report link from the admin_links and bring it solo to the top of the content.
