Search Results for 'bbpress'
-
Search Results
-
Topic: Custom CSS not working
Hey. Not sure if I’m missing something, but I’ve been looking around the forums following advice on using a custom bbPress CSS file, but it isn’t working.
I’m creating a theme based on underscores.me 1000 headstart theme.
I’ve copied the CSS file from ‘plugins/bbpress/templates/default/css/bbpress.css’ to ‘themes/underscores/bbpress.css’. I’ve read previously that that bbPress will then detect the custom CSS file and use it. Doesn’t appear to be the case.
Have I missed something?
Topic: New topic address
Hi!
I’m not sure if this is the right forum, but…
I’m trying to create separate page for creating new topic (user presses some “New topic” button, it redirects him to the page).I know I have to create new page in WP. I also know I have to use [bbp-topic-form] shortcode for that page. My problem is that I don’t know how to correctly setup the address for that page. I would like it to be in the form: “www.mydomain.net/forums/new-topic”. But I can’t select bbPress’s pages as the parent for my new page, so it looks like “www.mydomain.net/new-topic” in my case.
Any ideas how to make this work?
Hi everybody,
I work on a WP site which has BBPress integrated. I did not created the site, I just got the job passed to me. I was doing good, until I created a page with the BBPress:Create New Topic template. The page comes blank, and in the source, I get the PHP error:
Call to undefined function bbp_get_template_part() in /home/affinity/public_html/aaplonline.com/new/wp-content/themes/parallelus-salutation/page-create-topic.php on line 27
I realize it is because BBPress is NOT correctly integrated in the theme. BBP functions are not alive I guess.
Theme is already customized.
is there any way to fix it at this stage?
Hey guys,
I was installing bbpress but then I get an error saying that bbpress tried to allocate more memory but failed.
Any help?Thanks.
Ever heard of Sorcerer’s Apprentice? It is a poem by Goethe, set to music by Paul Dukas, and visualized by Walt Disney in the Movie ‘Fantasia’. (See: http://www.youtube.com/watch?v=XChxLGnIwCU)
In the movie, Mickey Mouse, the apprentice, dons the Sorcerer’s cap to animate a broom so that it will do Mickey’s chores for him. The broom soon gets out of control, and Mickey is forced to hack up the broom with an axe. But then each of the splinters of the broom become a broom, and Mickey’s troubles intensify.What does this have to do with bbPress? An interesting bug. The subscribe (and Favorites) toggle don’t work properly in Topics. Click once, good, state and text go to ‘unsubscribe’. Click again, good, state and text go back to ‘subscribe’. Click again, and nothing *appears* to happen. I’m new to bbPress, but I thought I’d take a shot at troubleshooting. The implementation uses javascript, jquery, ajax, and a wordpress jquery plugin called wpList. In the bbpress file topic.js, the function subsLinkSetup() is passed as an event handler for a click on the ‘Subscribe’/’Unsubscribe’ link. But every time this event handler is called, it ‘delegates’ a new instance of itself, and each new instance delegates a new instance, and so on…
For each click, the number of event handlers grows as follows:
Click # of Event Handlers
1 1
2 2
3 4
4 8
5 16
6 32
n 2^(n-1)
So after the second click, there are two event handlers.
On the 3rd click, the two event handlers each delegate a new event handler(now there are 4), each toggle the subscription state, (essentially canceling each other out) and the state appears unchanged. Since the number of event handlers is always even, their collective execution will always return the subscription state to the same state as that before they were executed.Example: 3rd click, 4 event handlers, state: subscribed, Event handlers result in the following state chain: unsubscribed->subscribed->unsubscribed->subscribed, and were are right back where we started from.
This is a dangerous bug, because when nothing happens, users tend to click again and again, and 10 clicks (for example) = 2^9=512 event handlers.A fix that works, but might not be the correct one, because it breaks the encapsulation of wpList (we must peer inside wpList to know that the event handler is bound to the subscription link via .delegate()) is to do the following:
In topic.js, function ubsLinkSetup(), replace the line
subscriptionToggle.get(0).wpList.process( subscriptionToggle );
with
subscriptionToggle.get(0).wpList.process( subscriptionToggle.undelegate() );
This removes the event handler before adding it back.
Parallel fix for favorites.Hoping to see some fix in the next release
Mumbling
Hi there !
I installed the plugin bbPress, everything goes well, but I have the following problem:
1. TinyMCE is not available in Visual and in HTML no buttons are available.
2. In the headlines I often had multiple words, such as “Private: Private: Forum headline”(like this http://www.timewalks.de/projekte/probe/probe_02/forum2.jpg)
3. When I “Create New Topic” or answers a post I get an error message appears:
Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘sc_save_post’ not found or invalid function name in /home/www/web468/html/wordpress/wp-includes/plugin.php on line 403
Warning: Cannot modify header information – headers already sent by (output started at /home/www/web468/html/wordpress/wp-includes/plugin.php:403) in /home/www/web468/html/wordpress/wp-includes/pluggable.php on line 881
When I go back and update the page, the text is available
I assume this has something to do with my theme, because in the theme “eleventwelv” there have been no problems. Can someone help me to get the theme compatible? Thank you!
The free theme is from antistar: http://www.screets.com/gp/projects/antistar_theme.html
Is that a plugin that is a viable solution to quote replies, or reply to other people who have replied? I am using bbpress 2.1.2, have tried the bbpress quotes but it has not been updated to work properly with this version.
I would think this is a must have for most people using forums, how are you guys implementing this feature with bbpress?