Forum Replies Created
-
In reply to: Forum option in WP-Admin Not Showing
deactivate plugins one at a time, and see if that helps.
else then deactivate and reactivate bbpress
else then uninstall and reinstall bbpress
In reply to: Image click/resizeexplain what you mean , do you mean like a lightbox??
or do the pictures on your forum just seem to small??
In reply to: Forum theme not working…i created a child theme with mesocolumn
i added robins code and it worked fine.
even when i switched to a different role
In reply to: BBpress plugin won't workno problem
In reply to: BBpress plugin won't workI think I found the culprit. The Custom Background Extended plugin seems to stop it from working.
okay find an alternative to that plugin or contact the their plugin support and say it has issues with the plugin, and hopefully they will fix it in the future .
If you’re still here, a different question…how do I fix the address for the forums? Right now its websitename.com/forums/forums/forums and it won’t let me shorten it to just websitename.com/forums.
still here!!
do you have a link to your forum , or is it just localhost??
check settings>forum uncheck use root slug.
see if that helps.
In reply to: Forum theme not working…ok im going to run this locally in a minute.
In reply to: My Forum Layout (in progress)My custom dropdown profile menu
inspiration to this are
wordpress profile dropdown in the admin bar
bbpress support admin barIn reply to: BBpress plugin won't workyou just cant see forums, topics, and replies in the dashboard ??
and also settings>forum??
because i can see it on the frontend.
i suggest deactivating one plugin at a time to find a plugin issue.
if that doesnt work , deactivate then reactivate bbpress.
if that doesnt work , reinstall bbpress.
In reply to: Forum theme not working…@cybarmitzvah contact your themes author too if you havent already , they might know more about the problems your facing
i checked out your theme and it seems compatible with buddypress , im just going to assume bbpress too so the theme author would help alot.
In reply to: Question & Course of Action?i can probably get this done.
no i dont want to do that , its harder for me to design the look of the widget.
here let me explain a little bit more on why i want to hack your shortcodes plugin to show recent replies.
well first i want my recent replies (and also recent topics) to look sort of like any recent comments widget. im going to use jetpacks recent comments on their website as an example.
I have already pretty much made a copy of your shortcode plugin , edited it and threw it in my functions.php and put the shortcode in the visual editor widget by blackstudio
heres what it looks like vs the default recent topics widget.
now to make a replies widget with your shortcode all i have to do is rearrange code and use css to style everything together.
to make it look like its showing recent replies, i just show the latest reply authors avatar , their name and what topic they replied on and im done.
The only problem when doing this is if there is no replies on a topic , it would just show the topic author instead.
Plus if you can figure this out i can also make a hack to make a replies archive. Which would be cool for something else i might do and ILL share it all when im done.
i just need help on only showing topics with replies instead of all topics. if that is possible.
In reply to: Strange characters beneath user profile picture.link doesnt show up , you need to just copy the url into the post
In reply to: BBpress forum stats plugin layoutthe css or content-statistics.php
if its the css ,
test to see if you need to add more classes to the code so it could with the tab widget,
test it by seeing if another stats widget has the css if you place it alone in the sidebar by itself in the tab widget
In reply to: BBpress forum stats plugin layoutok heres the code
.widget_display_stats dt, .widget_display_stats dd { text-align: center; } .widget_display_stats dd { background:#CCC; padding: 5px; margin-top: 5px; color: #222; }
category tags and forums number
if your talking about whats in the stats widget
just copy content-statistics.php into your child theme if you havent already.
and edit the file and remove what you want.
In reply to: breadcrumbs space and search buttoni have ONE MORE question – its quite important – i have my own login form, (for people to upload images to their portfolios) how do i synchronise bbpress with that form rather than having to have 2 login forms which seems silly
no idea
ok i think i have found an alternative to styling the recent replies widget better.
your topic archive shortcode plugin, i bet i can edit that to create a new recent replies widget
but the only thing i need help on is how to not show topics that have no replies at all.
what would i need to add to your plugin to do that?
In reply to: Visual editor fontno problem
In reply to: Future of bbPressJust wondering what the future of bbPress holds?
i wanna bring a cooler look to it. or a bunch of ideas to add on to the look.
as for bbpress community i hope more people help out.
BuddyPress is a far more popular plugin than bbPress, more people those days need community functionality attached to their WordPress sites than support forums
forums arent for everyone
if you look at the bbPress trac it say 64 closed tickets for a very long time.
they can take their time. also i bet more bbpress core developers wouldnt be a bad thing and also just help on trac topics are cool too.
I posted the same question on the WP Support Forum, after the reply from Robkk, no response at all so far…
no you have a reply
you havent responded yet though…
https://wordpress.org/support/topic/can-wordpress-installation-mess-up-my-existing-website
Is there anyone who could tell me how can I change(add) a site header img for the theme twenty twelve specifically?
you should take that , or anything else about twenty twelve to twenty twelve theme support
In reply to: Visual editor font1. Is it possible to disable the Text editor, hopefully with CSS?
yeah , heres a way
I dont know for sure if the visual editor is displayed by default when you see the reply form.
post it anywhere where you can put custom css
in your child themes css stylesheet
the jetpack plugin module custom css
a standalone custom css plugin#bbpress-forums div.bbp-the-content-wrapper div.quicktags-toolbar { display: none; } #bbpress-forums .wp-editor-tabs { display:none; }
In reply to: Removing buttons from HTML toolbari just did this with css.
#qt_bbp_topic_content_code.button ,#qt_bbp_topic_content_close.button , #qt_bbp_topic_content_li.button , #qt_bbp_topic_content_ol.button , #qt_bbp_topic_content_strong.button , #qt_bbp_topic_content_em.button , #qt_bbp_topic_content_block.button , #qt_bbp_topic_content_del.button , #qt_bbp_topic_content_ul.button, #qt_bbp_reply_content_code.button ,#qt_bbp_reply_content_close.button , #qt_bbp_reply_content_li.button , #qt_bbp_reply_content_ol.button , #qt_bbp_reply_content_strong.button , #qt_bbp_reply_content_em.button , #qt_bbp_reply_content_block.button , #qt_bbp_reply_content_del.button , #qt_bbp_reply_content_ul.button { display:none; }
In reply to: Topics Ordering in a forumok i dont know how to disable arrangement from activity , and just leave it where its topics arranged by published date and nothing else. Maybe some other person could help on this forum , or you are going to need to get some freelancers
I do know how to show the published date though
if you haven’t made a child theme create one , and put all the necessary templates into your child theme
ok to display the published date use <?php the_date(); ?>
heres is a
-
snippet
of how your loop-single-topic.php should look
<li class="bbp-topic-freshness"> <?php do_action( 'bbp_theme_before_topic_freshness_link' ); ?> <?php bbp_topic_freshness_link(); ?> <?php do_action( 'bbp_theme_after_topic_freshness_link' ); ?> <p class="bbp-topic-meta"> <?php do_action( 'bbp_theme_before_topic_freshness_author' ); ?> <span class="bbp-topic-freshness-author"><?php bbp_author_link( array( 'post_id' => bbp_get_topic_last_active_id(), 'size' => 14 ) ); ?></span> <?php do_action( 'bbp_theme_after_topic_freshness_author' ); ?> </p> </li>
heres a
-
snippet
of how your loop-topics.php should look like
<?php do_action( 'bbp_template_before_topics_loop' ); ?> <ul id="bbp-forum-<?php bbp_forum_id(); ?>" class="bbp-topics"> <li class="bbp-header"> <ul class="forum-titles"> <li class="bbp-topic-title"><?php _e( 'Topic', 'bbpress' ); ?></li> <li class="bbp-topic-voice-count"><?php _e( 'Voices', 'bbpress' ); ?></li> <li class="bbp-topic-reply-count"><?php bbp_show_lead_topic() ? _e( 'Replies', 'bbpress' ) : _e( 'Posts', 'bbpress' ); ?></li> <li class="bbp-topic-freshness"><?php _e( 'Published', 'bbpress' ); ?></li> </ul> </li> <li class="bbp-body">
end result should look like this.
In reply to: breadcrumbs space and search buttonI have created a folder “bbpress” within my theme and copied the bbpress.css, could it be the original .css is overriding it?
the one in your theme should overwrite the original
did you get the button now , heres now it looks when i checked out your site.
and that code i gave you should remove the space.
heres what it looked like while editing that css
In reply to: BBpress forum stats plugin layoutok on this i recommend just keeping the stats and label on top of each other and just make it look better, and it will stay in your tabbed widget.
heres how i got it to look on your site, by editing the css in inspect element.
are you okay with that or do you still want to go to the stats beside label option.
In reply to: Editing icons disappearing#bbpress-forums div.bbp-the-content-wrapper input { font-size: 12px; padding: 5px; margin: 0 2px 0 0; line-height: 1em; background: #222; color: #fff; }
its in black in white because thats how i had it in my local site right now, does that work??