Search Results for 'code'
-
AuthorSearch Results
-
May 26, 2012 at 11:16 am #113560
In reply to: Making sense of Full Width and shortcode
Lynq
ParticipantInside your theme folder for bbpress.
/wp-content/plugins/bbpress/bbp-themes/<YOUR_THEME>May 26, 2012 at 11:08 am #113749In reply to: Custom Header for Forum
Lynq
ParticipantThese will do the majority of your forum, in fact, I think they might do all of them? Check it out and see what you get.
if (get_post_type() == 'forum')
if (get_post_type() == 'topic')
if (get_post_type() == 'reply')
if((get_post_type() == 'forum') or (get_post_type() == 'topic') or (get_post_type() == 'reply')) {
get_header(‘page’);
} else {
get_header();
}Give it a try.
May 25, 2012 at 6:19 pm #44994Topic: Possible Bug: Admin 'Trash' link and URE
in forum TroubleshootingEric McNiece
MemberI’m debugging a site right now and trying to get the “trash” link to show up for Subscribers as well as admins. This is a fresh install of WP 3.3.2, URE and bbPress 2.0.2. Despite checking the “delete_replies” box in User Role Editor, the link still does not show up for Subscribers!
Digging deeper: line 1370 of bbp-reply-template.php shows this:
if ( !current_user_can( 'delete_reply', $r ) && !empty( $r ) )unset( $r );
… which is good – checks for permission, and if the user doesn’t have ‘delete_reply’ on $r node then it unsets the delete link.
So why does the URE checkbox not enable this link? Looking at an unserialized string of user capabilities for the current Subscriber role shows this:
...
'subscriber' =>
array (
'name' => 'Subscriber',
'capabilities' =>
array (
'assign_topic_tags' => 1,
'delete_replies' => 1,
'delete_topics' => 1,
'edit_replies' => 1,
'level_0' => 1,
'publish_replies' => 1,
'publish_topics' => 1,
'read' => 1,
),
),
...
and we see here that the capability showing is ‘delete_replies’, NOT ‘delete_reply’!!
So all that needs to be done to fix this is adding another capability in URE that lists as ‘delete_reply’ instead of ‘delete_replies’. Easy fix!
Here’s the disclaimer: there are a ton of plugins installed right now, so I’m not even sure ‘delete_replies’ permission is part of bbPress. If bbPress indeed does not add its own delete permission, then this is NOT a bug – just an interesting quirk!
May 25, 2012 at 3:00 pm #113559In reply to: Making sense of Full Width and shortcode
May 25, 2012 at 2:07 pm #113736In reply to: User-Profile-Edit Link for bbpress
stoeffel-media
ParticipantI am not very good in php, how do I display this link? Do you have a code for me with echo function?, thx!
May 25, 2012 at 11:39 am #113735In reply to: User-Profile-Edit Link for bbpress
Lynq
ParticipantI found this in the template files.
<?php bbp_user_profile_edit_url(); ?>May 25, 2012 at 2:34 am #109992In reply to: add a "Featured Image" to a forum
sxalexander
MemberThis is a bit late, but I think there’s another way to solve this.
I think the most WordPress-y way to accomplish this is to add the following to your theme’s /functions.php:
add_post_type_support('forum', array('thumbnail'));This will add the featured image metabox to all forums. See here for more details:
https://codex.wordpress.org/Function_Reference/add_post_type_support
May 24, 2012 at 10:11 pm #44972Topic: User-Profile-Edit Link for bbpress
in forum Themesstoeffel-media
ParticipantHello everyone.
I already searched for my problem but couldnt find any working solution for my bbpress 2.0.2.
Since there is no direct link for users to change their profile (not good), therefore I am searching to generate a link to put in a header or so.
I only found solutions for older bbpress installations with user id (number) but in the new bbpress it looks like you need userNAMES.
Can somebody paste me a working php code to display a profile-link? Thx!
May 24, 2012 at 9:13 pm #113419StephAO
MemberMy question is should i put your code here:
wp-content/plugins/bbpress/bbp-themes/bbp-twentyten/functions.php
or there:
wp-content/themes/genesis/functions.php
?
Is there a special spot in the file ?
Thanks
May 24, 2012 at 8:05 pm #113418StephAO
MemberHi Jaredatch,
I tried to add the code in
wp-content/plugins/bbpress/bbp-themes/bbp-twentyten/functions.php
But the message still appearing.
“Ce forum contient 5 sujets et 8 réponses, et a été mis à jour par”
(it s in french).
I added the code like that:
add_filter( ‘bbp_get_single_forum_description’, ‘ja_return_blank’ ) );
add_filter( ‘bbp_get_single_topic_description’, ‘ja_return_blank’ ) );
function ja_return_blank() {
ja_return ”;
}
?>
Just before the ?>
I’m using Genesis WordPress Theme.
I also tried to add the code there:
wp-content/plugins/bbpress/bbp-themes/bbp-twentyten/functions.php
Same problem a white page.
May 24, 2012 at 9:31 am #110907In reply to: new forum for every post plugin ?
Lynq
ParticipantSo all you need to do at the moment is have something like:
a custom page metabox for the post which saves the forum id after it has been created by the Posts 2 Posts plugin.
Then in your single.php file you can use the bbPress functions to retrieve the relevant topics for the forum id assigned to that post.
if ( bbp_has_topics( array( 'post_parent' => $postmeta["forum_id"] ) ) )
bbp_get_template_part( 'bbpress/loop', 'topics' );May 24, 2012 at 9:22 am #112551Lynq
ParticipantOh right ok.
You may want to use something like:
if ( bbp_has_topics( array( 'author' => 0, 'show_stickies' => true, 'order' => 'DESC', 'posts_per_page' => 5 ) ) )
bbp_get_template_part( 'bbpress/loop', 'topics' );May 24, 2012 at 8:50 am #113148In reply to: Loving BBPress – Been Playing Around…
Lynq
ParticipantHi Scheena,
I did it with the following piece of code:
<div id="recent-topics-block">
<?php
if ( bbp_has_topics( array( 'author' => 0, 'show_stickies' => false, 'order' => 'DESC', 'post_parent' => 'any', 'posts_per_page' => 5 ) ) )
bbp_get_template_part( 'bbpress/loop', 'latest-topics' );
?>
</div>May 24, 2012 at 8:38 am #113729In reply to: BBPress limit Topic length on widget
Lynq
ParticipantYou would probably have to look into either, building your own plugin to create the widget (Which you could do quickly by replicating the bbPress widget code) or customize the bbPress widget.
This could also be achieved with css, by having a fixed height and width and then adding overflow hidden, but you would have a little difficulty with the … part.
Good luck!
May 23, 2012 at 3:12 pm #112548Lynq
ParticipantUsing
bbp_list_forums( array ('forum_id' => '') );will return a list of the forums, you just need to specify it with a forum ID. Which you might be able to get from your post meta data?
May 23, 2012 at 12:15 pm #44946kennymcnett
MemberThis seems simple, but I can’t for the life of me find it documented (I’m probably just missing it). Any help from the community would be much appreciated.
How do I show a forum using php, without using do_shortcode(); ?
Also, how can I start a new loop to fetch a specific forum’s contents? I think it’s with BB_Query, but I can’t figure out the syntax.
Thanks in advance,
Kenny
May 23, 2012 at 6:28 am #110901In reply to: new forum for every post plugin ?
eternal noob
Participant1. When creating a post or page I create a relation to a topic-tag, and then use that topic-tag as a “forum” and linking/fetching it on thepost or page itself. Is that what you are saying ? So how could I create a relation from post/page to topic-tag when posting ? Could there be a way to enable topic-tags for the standard post-type perhaps so a meta-box would occur beneath the standard post tag ? Or should I just create another custom taxonomy ?
It is a very good solution, Gautam. Beautiful and simple. Thank you.
Yes, I know. Thanks.
That is an alternative solution, but as pointed out not what I am looking for.
@To the thread
Just to make it clear – I dont want an entire bbpress-installation for every post or page. But some kind of automation, so I would not have to insert a forum manually by shortcode. It is just another way of commenting more focused like in the bottom of amazon.com when you are iewing a book for example.
It is not a big problem as such. But it is obvious to replace the wordpress-comment system which is totally hopeless and lacking for a blogging platform. It is amazing that wordpress doesnt have any creative thoughts on commenting. WordPress should have invented disqus – not disqus. Disqus is really useful – but disqus takes control from you. P2 has some, sure.
Thanks for any input,
Jacob
May 22, 2012 at 8:10 pm #110897In reply to: new forum for every post plugin ?
eternal noob
ParticipantHi, Gautam.
Could you write a couple of more lines – Im not sure I understand. But actually, That would a bit like hypercomments – If one could only make topics as comments and then the topics up for discussion would be fetched back by shortcode. Are you thinking about the way wordpress supportforums are working now ?
Thanks.
May 22, 2012 at 1:48 am #104650In reply to: Modifying a BB_query on the fly?
kennymcnett
MemberLitso, would you mind posting your code? This sounds like what I need to do, but I don’t know how to change the $obj->request like you mentioned works.
May 22, 2012 at 1:48 am #99550In reply to: Modifying a BB_query on the fly?
kennymcnett
MemberLitso, would you mind posting your code? This sounds like what I need to do, but I don’t know how to change the $obj->request like you mentioned works.
May 21, 2012 at 11:16 pm #44910iTHINKSOLUTIONS
MemberI’m trying to create the author.php file inside wordpress to display user’s profile, latest blog posts and user’s forum activities. Using the snippet below just returns empty data for each user. I’m sure I’m missing something in the snippet and hopefully someone could point me to the right direction.
<?php do_action( 'bbp_template_notices' );
// Subscriptions
bbp_get_template_part( 'bbpress/user', 'subscriptions' );
// Favorite topics
bbp_get_template_part( 'bbpress/user', 'favorites' );
// Topics created
bbp_get_template_part( 'bbpress/user', 'topics-created' );
?>Thanks.
Jared Atchison
MemberI haven’t experienced these bugs first hand, but my suggestion would be to try 2.1 when the beta comes out (very soon) and see if these issues resolve themselves
May 21, 2012 at 9:06 am #113715In reply to: custom recent activity column
Lynq
ParticipantHi deathbybear,
The only way I have found to make this happen is to edit the core code provided by bbpress.
I am not sure if this is the right way to go, so if someone else can suggest another way then let me know.
Here is what I have done. I replaced the bbp_list_forums function inside forum-template.php and then inside the loops-single-forum I changed the arguments to enable the last poster.
function bbp_list_forums( $args = '' ) {
// Define used variables
$output = $sub_forums = $topic_count = $reply_count = $counts = '';
$i = 0;
$count = array();
// Defaults and arguments
$defaults = array (
'before' => '<ul class="bbp-forums">',
'after' => '</ul>',
'link_before' => '<li class="bbp-forum">',
'link_after' => '</li>',
'count_before' => ' (',
'count_after' => ')',
'count_sep' => ', ',
'separator' => ', ',
'forum_id' => '',
'show_topic_count' => true,
'show_reply_count' => true,
'freshness_before' => '<td class="last-posted-box">',
'freshness_after' => '</td>',
'show_freshness_link' => true,
'freshness_author_before' => '<div class="author-box">',
'freshness_author_after' => '</div>'
);
$r = wp_parse_args( $args, $defaults );
extract( $r, EXTR_SKIP );
// Bail if there are no subforums
if ( !bbp_get_forum_subforum_count( $forum_id ) )
return;
// Loop through forums and create a list
if ( $sub_forums = bbp_forum_get_subforums( $forum_id ) ) {
// Total count (for separator)
$total_subs = count( $sub_forums );
foreach ( $sub_forums as $sub_forum ) {
$i++; // Separator count
// Get forum details
$count = array();
$show_sep = $total_subs > $i ? $separator : '';
$permalink = bbp_get_forum_permalink( $sub_forum->ID );
$title = bbp_get_forum_title( $sub_forum->ID );
// Show topic count
if ( !empty( $show_topic_count ) && !bbp_is_forum_category( $sub_forum->ID ) )
$count['topic'] = bbp_get_forum_topic_count( $sub_forum->ID );
// Show reply count
if ( !empty( $show_reply_count ) && !bbp_is_forum_category( $sub_forum->ID ) )
$count['reply'] = bbp_get_forum_reply_count( $sub_forum->ID );
// Counts to show
if ( !empty( $count ) )
$counts = $count_before . implode( $count_sep, $count ) . $count_after;
// Show topic count
if ( !empty( $show_freshness_link ) && !bbp_is_forum_category( $sub_forum->ID ) ) {
$freshness_link = bbp_get_forum_freshness_link( $sub_forum->ID );
$freshness_author = $freshness_author_before . bbp_get_author_link( array( 'post_id' => bbp_get_forum_last_active_id( $sub_forum->ID ), 'size' => 14 ) ) . $freshness_author_after;
$freshness_link = $freshness_before . $freshness_link . $freshness_author . $freshness_after;
}
// Build this sub forums link
$output .= $link_before . '<a href="' . $permalink . '" class="bbp-forum-link">' . $title . $counts . $freshness_link . '</a>' . $show_sep . $link_after;
}
// Output the list
echo $before . $output . $after;
}
}Let me know how you get on, good luck!
May 21, 2012 at 4:29 am #44899Topic: New Topic Form Shortcode Issue
in forum TroubleshootingThePopularizer
MemberI’m trying to implement a “Quick Post” box using the New Topic Form shortcode, [bbp-topic-form], but it seems non-admin users cannot post using the form (it says, “You cannot create new topics at this time.”). The same users can post a topic by actually going into the forums, so I’m wondering what the issue might be.
The website URL: capital.businesses.org.nz
It’s a subdomain installation of a multi-site network (businesses.org.nz), which in turn is part of a multi-network installation (using the ‘networks for wordpress’ plugin).
May 20, 2012 at 11:14 pm #113692In reply to: bbPress 2.0.2 and 1.6MM posts = painfully slow
vibol
MemberThis looks like an issue with WP_Meta_Query issuing a CAST for all rows in wp_postmeta during the query.
Relevant LOCs in meta.php:
$where[$k] = ' (' . $where[$k] . $wpdb->prepare("CAST($alias.meta_value AS {$meta_type}) {$meta_compare} {$meta_compare_string})", $meta_value);There are several options to pursue:
* Store thread ids in a separate table and intercept get_meta_sql filter to update the query to look in the correct table for _bbp_topic_id lookups.
* Update WP_Meta_Query to read relevant types from type-specific tables (i.e. wp_postmeta_unsigned) for topic_id lookups. Requires updating mechanisms to save metadata into type-specific tables as well.
What are some other options?
-
AuthorSearch Results