Forum Replies Created
-
In reply to: Making Topics and Replies Takes So Long
I need more help with this. Last night I disabled all my plugins, I reinstalled bbpress, noone has had this problem before?
In reply to: Filter BreadcrumbsThank you, I appreciate it.
In reply to: Missing Forums Tab on BB Settings PageHello. I have the same issue, you can trouble shoot on the thread I’ve established.
https://buddypress.org/support/topic/missing-forums-directory/
I believe the reason this is occurring is because you’re not a Super Admin therefore you have hindered capabilities from setting the appropriate page to forums.In reply to: Change BBpress breadcrumb URLbump
In reply to: Create new Topic Typesbump! 🙁
In reply to: How can forum visitors register or log in?You need to use the login shortcode and the register page template. Theres also a login widget available.
Is there a way to create a new kind of topic type?
In reply to: Feature request – "Reply" button in every postEasy.Download a plugin called GD BBpress Tools. It will add a quote link to every post, when clicked it will send the user to the bottom of the page to reply to the post.
I really don’t like the auto-formatting in this bbpress forum demo ><
The simplest way would be to edit css your sidebar classes. For mine it would be .sidewrap {display:none;}and then you’d have to increase the mid section to fulfill the full-width look you want which is..midwrap {width:;}
Aesthetically this will remove the sidebars but the offside to doing this simple method is that the widgets and the sidebar will take up loading time.
In reply to: Create new Topic Typesbump
In reply to: Display Forum DescriptionI put two asteriks and it made blank pages italic o-o.
I mean certain portions of my site changed to blank pages after I inserted that code in the content-single-forum.php
Is there any other way to display the forum description?
In reply to: Whishlist & OptimizePress.Try updating the permalinks.
Settings> Permalinks
In reply to: Number of Topics per PageThanks Lynq, I’ll try it.
I’m not trying to be offensive or “rude” to anyone. I always appreciate the help. Apparently telling them to read it again was what I thought was going to get me an answer to my problem and it did. I apologize if I offended anyone.
- This reply was modified 12 years, 3 months ago by DNBrawler.
In reply to: Number of Topics per PageRead what I said.
Again, I want the homepage to show 5 topics and the other pages to show 15 topics. I don’t want 15 topics globally on each page.In reply to: BBpress Customizing The Number of Topicsbump
In reply to: BBpress Customizing The Number of TopicsBUMP
Does anyone have an answer for varying the number of topics for a given page?In reply to: [GD BBpress tools] Quoting feature not workingStill won’t work.
I went back to the twentyten theme for further testing and found that after removing the entire bbpress-functions file the quoting feature still worked. So my problem from what I perceive isn’t in the functions? Now I’m confused.
I’m going to take a fresh GD BBpress tools plugin download again and see if that works.In reply to: [GD BBpress tools] Quoting feature not workingIt’s calling JQuery scripts–the only one I could find is this one:
wp_enqueue_script( 'bp-js', BP_PLUGIN_URL . '/bp-themes/bp-default/_inc/global.js', array( 'jquery' ) );
I tried to implement the topic.js many times It’s just not working :/In reply to: [GD BBpress tools] Quoting feature not workingI’m stumped. lol
Do I have to call the script? :L I have no idea.. what to do.
I found this:
if ( bbp_is_single_topic() ) wp_enqueue_script( 'bbp_topic', $this->url . 'js/topic.js', array( 'wp-lists' ), $this->version, true );
Am I close ? :/
Okay now I do believe that my theme is causing the problem since I switched themes and it started to work. I have more work to do.In reply to: BBpress Customizing The Number of TopicsSorry must not have worked. Here it is again:
'_bbp_reply_count', 'meta_value' => '1', 'meta_compare' => ' 'date', 'show_stickies' => false ) ) ) : ?> <!-- #topics-front -->
“ EDIT: Now it’s deleting the content of the code sample. Here’s the link from pastebin. http://pastebin.com/3TLgVni2
In reply to: [GD BBpress tools] Quoting feature not workinghttp://www.dnbrawler.com/topic/new-class-kali/
here you go! thanks for the swift reply
User ID: test
Password: testing- This reply was modified 12 years, 4 months ago by DNBrawler.
In reply to: Display Profile Fields under Author of PostI don’t know the languages enough to write them, but I can pinpoint a source and edit it. You can see what I’ve done so far in http://www.dnbrawler.com.
So I should be making customizations in the theme files, I’ll look into that now.
In user-details.php I was able to find the source here:
<div id=”entry-author-info”>
<div id=”author-avatar”>
<?php echo get_avatar( bbp_get_displayed_user_field( ‘user_email’ ), apply_filters( ‘twentyten_author_bio_avatar_size’, 60 ) ); ?>
</div><!– #author-avatar –>
<div id=”author-description”>
<h1><?php printf( __( ‘About %s’, ‘bbpress’ ), bbp_get_displayed_user_field( ‘display_name’ ) ); ?></h1>
<?php echo bbp_get_displayed_user_field( ‘description’ ); ?>
</div><!– #author-description –>
</div><!– #entry-author-info –>
This is where I’m stuck.