Forum Replies Created
-
In reply to: Deleting all avatars except one in post
never mind on this … ILL just go reply to the other topic.
In reply to: Text Color and FontIs there some code generator and if not the plugin, I guess I can add it in “Style.css”
I just need when people posting in forums they have options to change color and size of font. I am unable to find something
you want a code generator , so that users have an option to change font color and font size, I do not know how to do this, so i cant help much here.
as for CSS I am not very familiar with that.
everything in the documentation says all about using css ,and how to, using firebug.
give me something specific to change the font size and color ,and ILL help you there.
In reply to: Deleting all avatars except one in postdont reply on the other topic you made
pretty much just copying the same thing from this
give me a link to your site
so i can see if its a special code in your template making the avatars huge
if its a .avatar css rule making all the avatars on your site big
or if i could find something else.I’m pretty sure my theme does not use a conventional style sheet so I may have to edit this in the root folder?
thats not a good idea , it will be lost next upgrade.
In reply to: Full Width Forum Help@aussiestar14 so now you dont want full width anymore and you want a bbpress specific sidebar and your footer back??
In reply to: Finding .css style filegive me a link to your site
so i can see if its a special code in your template making the avatars huge
if its a .avatar css rule making all the avatars on your site big
or if i could find something else.I’m pretty sure my theme does not use a conventional style sheet so I may have to edit this in the root folder?
thats not a good idea , it will be lost next upgrade.
In reply to: forums individual category top five recent topicsThanks for making the same topic three times in less than two days
In reply to: bbPress lists not displaying correctly?see if its one of your other plugins causing the problem.
deactivate each plugin one at a time til you find which one is causing your problem
In reply to: Uninstalling BBPress@jordanpinski did you reinstall and see if it fixed the problem??
In reply to: Text Color and FontIn reply to: Unified WordPress + Forum Searchi dont know for sure but i guess use google custom search and put it on your website, it should show anything that comes up on your website on that.
In reply to: Full Width Forum Help@aussiestar14 ive been reading the replies and right now you just want your themes footer back ??
and thats it??
In reply to: Reply To Area-Hard to see where to type#bbpress-forums fieldset.bbp-form textarea { margin: 0 0 8px; border: 1px solid #222; }
try this css code
@robin-w thanks!!! this was exactly what i needed!!!
In reply to: Full Width Forum HelpIn reply to: Search box on topics pagecopy content-single-forum.php into your child theme then add
<?php if ( bbp_allow_search() ) : ?> <div class="bbp-search-form"> <?php bbp_get_template_part( 'form', 'search' ); ?> </div> <?php endif; ?>
above
<?php bbp_breadcrumb(); ?>
In reply to: Google Docs Viewer – button for the editor@palmdoc yeah that was the only thing i could have thought of to try it , without making a quicktag button manually , and making it work on bbpress.
In reply to: Uninstalling BBPresswhats your theme?
whats your version of bbpress?
whats your error when you click edit?to uninstall ,
you first clear forum data by going to tools>forums>reset forums
deactivate , then uninstall in plugins directory
Disabling the plugin leaves the keymaster usermeta fields in the database causing no access to the dashboard.
i dont know how this is happening…
In reply to: Google Docs Viewer – button for the editorIs it difficult to do so?
i dont know how jquery works so yes.
but i looked at the plugins info and there is a doc embedder button in the visual editor
so maybe try to enable visual editor in bbpress
https://wordpress.org/plugins/bbpress-enable-tinymce-visual-tab/
then click enable the full default TinyMCE mode, and see if the google doc button shows up.
In reply to: Full Width Forum Helpok i was able to achieve a full width forum this way with no template editing.
i downloaded https://wordpress.org/plugins/custom-sidebars/
i went to my original sidebar in my widgets section
i then clicked it open and pressed the new sidebar location link
A window should popup that says “Define where you want this sidebar to appear.”
i then checked a sidebar for selected post types. then i clicked pages, and posts, add whatever else that you may have, but none that are custom post types that are affiliated with bbpress, (topics, forums, replies)
that should do it.
i dont know if any other custom sidebar plugin does this (woosidebars etc.) but i do know this should work.
In reply to: Search box on topics pagethe topics page is just a page with topics of a particular forum , or all forums??
In reply to: Plugin for star rating on postwhich one would you suggest?
i have no idea , i have no opinions on any of them since i havent tried any of them.
You can try each one on a local site if you want and make your decision off that.But what i can say is that this rating plugin https://wordpress.org/plugins/rating-widget/
is on https://codex.bbpress.org/feature-plugins-tracking/
and it also has some integration with bbpress.
Basically I want it to show up in only a few of my subforms next to the bb codes on top ^^^
I have no idea how your going to show the ratings on a few subforums , your probably going to need help on that too, (i have no idea how to help you on this)
In reply to: Plugin for star rating on postI was wondering if we could create a star plugin
why create a new one , there is a bunch!!!
heres the first five i found
https://wordpress.org/plugins/universal-star-rating/
https://wordpress.org/plugins/rating-widget/
https://wordpress.org/plugins/kk-star-ratings/
@robin-w yeah worked great , and i will use the (||) if i want to add a special user role later , and yeah i took off the else too.
Thank you.
ok @robin-w i got it where it just shows for keymaster but how do i add moderator
heres what i have
<?php $displayed_user = bbp_get_reply_author_id() ; if ( bbp_is_user_keymaster($displayed_user) ) { echo " <div class=\"reply-author-role\">"; echo bbp_reply_author_link( array( 'show_role' => true, 'type' => 'role' ) ); echo "</div>"; } else { } ?>
ok this works great when i tryed it on a default theme.
but on my custom bbpress theme , i seperated each item in the bbp_get_reply_author_link code and wrapped them in a class so i could better position each item.
so im using
<div class=bbp-reply-author-av><?php bbp_reply_author_link( array( 'show_role' => false, 'type' => 'avatar' ) ); ?></div>
<div class=bbp-reply-author-name><?php bbp_reply_author_link( array( 'show_role' => false, 'type' => 'name' ) ); ?></div>
<div class=reply-author-role><?php bbp_reply_author_link( array( 'show_role' => true, 'type' => 'role' ) ); ?></div>
now i have 3 avatars, 3 author links, 3 author roles displaying on 1 reply now.
how should the code be if i dont want to mess with the args and i just want to display this..
<div class=reply-author-role><?php bbp_reply_author_link( array( 'show_role' => true, 'type' => 'role' ) ); ?></div>
if the display user in the reply is only a keymaster and a moderator.
something kind of like this but where it actually works for my bbpress custom theme.
<?php $displayed_user = bbp_get_reply_author_id() ; $role = bbp_get_user_role( $displayed_user); if ( bbp_is_user_keymaster($displayed_user) ||$role == 'bbp_moderator'); echo " <div class=\"reply-author-role\">"; echo bbp_reply_author_link( array( 'show_role' => true, 'type' => 'role' ) ); echo "</div>"; else { } ?>