Search Results for 'code'
-
AuthorSearch Results
-
September 26, 2014 at 3:10 am #152778
In reply to: menu issue on forum in private area
Robin W
Moderatorforums is a virtual page – ie it doesn’t exist (not that pages really exist anyway!), and is not a ‘post ‘ in the wordpress sense of post
Rather than use the forums widget, why not just use a text widget, just put this in the content
<a href= "http://harveylakeland.com/forums">Community Forums </a>September 26, 2014 at 3:02 am #152777In reply to: Full Width Forum Pages
Robin W
Moderatorok, just looked and all the pages look fine now except the forum page – is that correct?
bbpress should use the bbpress template for all the pages, so you can’t really css the individuals (or not without tons of code).
How are you going to the initial forum ? is it method 1 or 2 from the following
and whichever try the other !
Once you are consistently wrong on all pages, you can make it consistently right !
September 25, 2014 at 6:34 pm #152766In reply to: Inserting tables into topics
Stephen Edgar
KeymasterDownload the plugin I have here, unzip it and upload it to your site and activate. š
Edit: Users will then be able to use HTML table tags, e.g.
<table>,<td>,<tr>etcSeptember 25, 2014 at 5:45 pm #152764In reply to: Conversion MyBB to bbPress
Stephen Edgar
Keymaster@bepyland If you set the bbPress import rows to 50,000 that would be one single query, it would not work though unless you had one amazing MySQL installation. š
What the “rows” value means is how many topics or replies for each single query should be imported at a time, the default is 100, so when the importer is running each single query will import 100 topics at a time.
WordPress itself, and then bbPress also make queries along the way so just counting only bbPress import is not the only calculation needed.
Your best bet is to create a test site to test the import before migrating this to your “live” site:
https://codex.bbpress.org/creating-a-test-site/September 25, 2014 at 5:45 pm #152763In reply to: Is there a ban users system plugin out there?
Robkk
Moderatori think its really like making a plugin for wordress except you use bbpress’s hooks
but i havent gone in too deep in knowing how to create a plugin.this plugin helps on finding all of bbpress’s hooks
https://wordpress.org/plugins/bbpress-visual-hooks/and im sure information in documentation will help.
heres some information that i found real quick that i think could help.
if you need anymore help create a new topic titled “Need Help on bbpress plugin development”
and maybe robin or stephen can help from there.
robin already has tons of plugins made for bbpress
and stephen is one of the core developersSeptember 25, 2014 at 5:18 pm #152762In reply to: Full Width Forum Pages
bertusschoeman
ParticipantHey Robin, thanks so much! The code you supplied me with alters the main forum page a bit (the page that we do not want to chage, but use as a model for the topic and discussion pages) and leaves the topic (http://secularsociety.co.za/forum/forum/sass-general) and discussion pages (http://secularsociety.co.za/forum/topic/sass-vision-statement/) aligned to the left. I have been playing around with your code as well as a bunch of other CSS, but I can not seem get the topic and discussion pages to look like the original main forum page :/ I think that we will need to address each page’s CSS instruction individually. Trying to change the CSS in one go seems to have different results on each of these pages. Any further assistance would be greatly appreciated.
September 25, 2014 at 4:36 pm #152761In reply to: Is there a ban users system plugin out there?
JBBoY
ParticipantThank you Robkk, where can I find a tutorial or howto create a plugin for bbpress? I found the bbpress files that I need to edit and I can put my code in, but I think this is not the clean way to do it.
September 25, 2014 at 8:09 am #152744In reply to: Topic background color depending on role
arno8
Participantyou put the add filter code into your child themes functions.php or if you have a functionality plugin put it there.
This worked perfectly.
if you got it to work send a link to the post so i can check it out.
i dont get it work š
September 24, 2014 at 8:21 pm #152734In reply to: Topic background color depending on role
Robkk
Moderatoryou put the add filter code into your child themes functions.php or if you have a functionality plugin put it there.
and well i havent really tested that css code before so i didnt know if it really did work.
i just tried it a while ago and i cant get it to work at all.if you got it to work send a link to the post so i can check it out.
September 24, 2014 at 7:22 pm #152732In reply to: Which need I use?
Icaroferreira
ParticipantI have “WordPress”, forum “bbPress”, plugin “UserPro” … And I want to give points, rewards for users of my website, when they share articles, make comments, create forum topic, etc and has appears in his profile for everybody to see (points and medals).
So what should I use ?
Plugin mycred? Plugin WPAchievements codecanyon? or what?
Help me please.
September 24, 2014 at 6:21 pm #152731In reply to: Is there a ban users system plugin out there?
Robkk
ModeratorI want to make sure that there is not an existing alternative before start writing code (Iām not very familiar at writing code for bbpress).
ok alright , some other users want this functionality so it will be great for someone to make it š
September 24, 2014 at 9:03 am #152726In reply to: Is there a ban users system plugin out there?
JBBoY
ParticipantThank you again for your response! yes, that’s exactly what I want. But I can’t believe there is not a plugin to do this kind of moderation on bbpress.
I want to make sure that there is not an existing alternative before start writing code (I’m not very familiar at writing code for bbpress).
September 24, 2014 at 7:45 am #152722In reply to: Topic background color depending on role
arno8
ParticipantAnd where would I add the add_filter code please?
September 23, 2014 at 7:26 pm #152710In reply to: Display list of topics under specific forum
selenii
Participant<?php if ( bbp_has_topics( array( 'author' => 0, 'show_stickies' => false, 'order' => 'DESC', 'post_parent' => 'any', 'posts_per_page' => 10 ) ) ) bbp_get_template_part( 'bbpress/loop', 'topics' ); ?>I had put this code to my template. But how can I change the post_parent Parameter automatik, that the plugin know in wich forum he is and show me the right topics.
Thx
September 23, 2014 at 6:51 pm #152709In reply to: Roles under username (.bbp-author-role)
Stephen Edgar
KeymasterSee the code I just posted here, add’s the CSS classes without template modifications š
Also going to close this, rather than others bumping it in the future š
September 23, 2014 at 6:44 pm #152707In reply to: Which need I use?
Stephen Edgar
KeymasterFor #3 the user topic and reply counts underneath their role in each topic/reply will be in the next release of bbPress.
And images based on forum roles can be achieved using the same code I just posted here by inserting the image using CSS
:beforeor:afterpseudo elements .September 23, 2014 at 6:30 pm #152706In reply to: Topic background color depending on role
Stephen Edgar
KeymasterThis should do the trick without any template modifications:
add_filter('bbp_before_get_reply_author_role_parse_args', 'ntwb_bbpress_reply_css_role' ); function ntwb_bbpress_reply_css_role() { $role = strtolower( bbp_get_user_display_role( bbp_get_reply_author_id( $reply_id ) ) ); $args['class'] = 'bbp-author-role bbp-author-role-' . $role; $args['before'] = ''; $args['after'] = ''; return $args; } add_filter('bbp_before_get_topic_author_role_parse_args', 'ntwb_bbpress_topic_css_role' ); function ntwb_bbpress_topic_css_role() { $role = strtolower( bbp_get_user_display_role( bbp_get_topic_author_id( $topic_id ) ) ); $args['class'] = 'bbp-author-role bbp-author-role-' . $role; $args['before'] = ''; $args['after'] = ''; return $args; }It grabs the topic or reply author role and adds another CSS class with prefix
bbp-role-so you now have a new set of CSS classes e.g.bbp-role-keymaster,bbp-role-moderator,bbp-role-participantetc that you can then add your custom CSS styles to.September 23, 2014 at 12:42 pm #152703In reply to: Topic background color depending on role
Robkk
Moderatorwell first i think you have to seperate the role from the author link and author avatar
then to do add this you have to either add conditionals like
if user is admin {or wrap the role in a class and add something like ($role)
will post later when i feel like going into templates and fiddling with them again.
September 23, 2014 at 12:30 pm #152702In reply to: Topic background color depending on role
arno8
ParticipantThanks this did it man , could you help me with this to:
im trying to add small images in front of the roles, every role has a different one, so im trying to add a class depending on the role, i know i gotta make edits in loop-single-reply.php
right here somewhere
<div class="bbp-reply-author"> <?php do_action( 'bbp_theme_before_reply_author_details' ); ?> <?php bbp_reply_author_link( array( 'sep' => '<br />', 'show_role' => true ) ); ?> <?php if ( bbp_is_user_keymaster() ) : ?> <?php do_action( 'bbp_theme_before_reply_author_admin_details' ); ?>You got any ideas?
September 23, 2014 at 12:10 pm #152700In reply to: Which need I use?
Robkk
Moderator1. to get a full-width forums, you need to create a bbpress.php more information in this link
after you create a bbpress.php from your page.php just delete the sidebar code that should say like
<?php get_sidebarin the template.2. You can follow this tutorial on this website to replace the voice count with a views count.
there are other ways to display views in bbpress also like by using this plugin
https://wordpress.org/plugins/bbpress-simple-view-counts/
3. Are you talking about the layout of the reply author area on ip board where it shows an image based on user role and the total post count of the user??
images based on forum role i cant find a solution just yet , might post solution later . Its most likey just going to include alot of conditionals based on forum role.
total post count for users is easy, you can easily just use robins plugin
September 23, 2014 at 12:06 pm #152699In reply to: Roles under username (.bbp-author-role)
arno8
ParticipantStill no clue where to add `$reply_id = bbp_get_reply_id( $reply_id );
$abc_role = bbp_get_user_display_role( bbp_get_reply_author_id( $reply_id ) );`I tried on the location where u said, like this:
<div id="post-<?php bbp_reply_id(); ?>" class="bbp-reply-header"> $reply_id = bbp_get_reply_id( $reply_id ); $abc_role = bbp_get_user_display_role( bbp_get_reply_author_id( $reply_id ) ); <div class="bbp-meta"> <span class="bbp-reply-post-date"><?php bbp_reply_post_date(); ?></span> <?php if ( bbp_is_single_user_replies() ) : ?> <span class="bbp-header"> <?php _e( 'in reply to: ', 'bbpress' ); ?> <a class="bbp-topic-permalink" href="<?php bbp_topic_permalink( bbp_get_reply_topic_id() ); ?>"><?php bbp_topic_title( bbp_get_reply_topic_id() ); ?></a> </span> <?php endif; ?> <a href="<?php bbp_reply_url(); ?>" class="bbp-reply-permalink">#<?php bbp_reply_id(); ?></a> <?php do_action( 'bbp_theme_before_reply_admin_links' ); ?> <?php bbp_reply_admin_links(); ?> <?php do_action( 'bbp_theme_after_reply_admin_links' ); ?> </div><!-- .bbp-meta --> </div><!-- #post-<?php bbp_reply_id();?>-->But this just shows the custom code on the website instead of running it.
please help on this š
September 23, 2014 at 10:45 am #152695In reply to: Change template for /forums/forum/…
Robkk
Moderatorwell a topic form should already be in content-single-forum.php
its called with
<?php bbp_get_template_part( 'form', 'topic' ); ?>September 23, 2014 at 10:22 am #152694In reply to: how to disable hyperlinks in bbpress forum
Robkk
Moderator-well i have not tried this but to disable any link on a post appearing you can go to settings>disscussion and then change the number of links to 1. So that you arent totally stripping links and only trying to only allow approved links like youtube.com from appearing.
Hold a comment in the queue if it contains [1] or more links. (A common characteristic of comment spam is a large number of hyperlinks.)
yes i know this is usually for comments but ive read some of these settings are either working on bbpress now or in the future.
-you can also just strip the links from either working by using this function.
plop it into your child themes funcitons.php or a functionality plugin.add_filter( 'bbp_kses_allowed_tags', 'ntwb_bbpress_custom_kses_allowed_tags' ); function ntwb_bbpress_custom_kses_allowed_tags() { return array( // Links 'a' => array( 'class' => false, 'href' => false, 'title' => false, 'rel' => false, 'class' => false, 'target' => false, ), // Quotes 'blockquote' => array( 'cite' => true, ), // Span 'span' => array( 'class' => true, ), // Code 'code' => array(), 'pre' => array( 'class' => true, ), // Formatting 'em' => array(), 'strong' => array(), 'del' => array( 'datetime' => true, ), // Lists 'ul' => array(), 'ol' => array( 'start' => true, ), 'li' => array(), // Images 'img' => array( 'class' => true, 'src' => true, 'border' => true, 'alt' => true, 'height' => true, 'width' => true, ), // Tables 'table' => array( 'align' => true, 'bgcolor' => true, 'border' => true, ), 'tbody' => array( 'align' => true, 'valign' => true, ), 'td' => array( 'align' => true, 'valign' => true, ), 'tfoot' => array( 'align' => true, 'valign' => true, ), 'th' => array( 'align' => true, 'valign' => true, ), 'thead' => array( 'align' => true, 'valign' => true, ), 'tr' => array( 'align' => true, 'valign' => true, ) ); }you might just delete all of the code specified for the a tag too and you will be fine
delete
// Links 'a' => array( 'class' => false, 'href' => false, 'title' => false, 'rel' => false, 'class' => false, 'target' => false, ),September 23, 2014 at 10:04 am #152693In reply to: Topic background color depending on role
Robkk
Moderatorwell you can check out this topic and maybe it will help
when schmoos code has
.user-id-1well thats the id of the usergo to user>all users search for all your sites keymasters.
then click edit by each users avatar
after that you are in the edit profile page for that particular user and in the url it says
user_id=(number)get all the user id numbers and then you can stack them using commas in a css code like this
.type-reply.user-id-1,.type-reply.user-id-2,.type-reply.user-id-3 { background: yellow; }September 23, 2014 at 9:46 am #152692Robkk
Moderatori liked https://wordpress.org/plugins/oa-social-login/ before i went to another solution
im not sure if it has integration with bbpress or not though.
and this requires an account to their website.https://wordpress.org/plugins/loginradius-for-wordpress has bad support and i couldnt get the plugin to work well when i tried it.
you can also find some paid social login plugins in codecanyon , im for sure there is one that offers social login and has compatibility with bbpress. I think it cost like 28 dollars or something close to that.
-
AuthorSearch Results