Forum Replies Created
-
In reply to: Social Sharing on Replies on various threads
really any plugin that has an included insertable template tag will work.
im going to use jetpack sharing as an example .
first i take every instance of each default area jetpack sharing shows.(also jetpack likes)
function jptweak_remove_share() { remove_filter( 'the_content', 'sharing_display',19 ); remove_filter( 'the_excerpt', 'sharing_display',19 ); if ( class_exists( 'Jetpack_Likes' ) ) { remove_filter( 'the_content', array( Jetpack_Likes::init(), 'post_likes' ), 30, 1 ); } } add_action( 'loop_start', 'jptweak_remove_share' );
and then i could just display it anywhere on the reply. in loop-single-reply.php
with this
if ( function_exists( 'sharing_display' ) ) { sharing_display( '', true ); }
this code also removes it from content like posts and pages. but you can just manually insert it into your wordpress templates to with the above code.
In reply to: Help with styling cssbumping too soon ?
at least you did not create an entirely new topic
bbpress has that tabled layout by default , its your child theme
Stargazer Colloquium added that kind of layout to your theme.
what you can do is find each changed template you dont want and just replace it with some of the original bbpress template code by copying it there.
and also check on the bbpress.css in your child theme
In reply to: Customizing "Reply To Topic" Areayeah i still dont get why bbpress doesnt do that. I knew my bbpress on my local site did it before, or maybe i was messing with some other forum…
but yeah i found this site does what you need to.
click reply and the reply form goes up.
http://mmo4teen.com/forum/topic/test-again/
do you have anything??
In reply to: Forum resembling social media feed?no problem
In reply to: Forum resembling social media feed?buddypress i think has this in its activity page
In reply to: Change quote colorwhat is the css you used??
In reply to: Change quote color@gogitossj34 i saw your block quote is now purple is that what you wanted??
did you solve your issue??
In reply to: List of all new topics since last visit@divyesh25 other than all that i have no idea, i guess wait til someone else has a suggestion to help you out on this
In reply to: List of all new topics since last visiti dont know about listing it but you might be able to highlight them either using this plugin to show only to keymasters or moderators, or modify it to show to everyone
https://wordpress.org/plugins/bbpress-new-topics/
or somehow edit this function from here to add labels to each topic post type
http://www.wpbeginner.com/wp-themes/how-to-highlight-new-posts-for-returning-visitors-in-wordpress/
PHP
function wpb_lastvisit_the_title ( $title, $id ) { if ( !in_the_loop() || is_singular() || get_post_type( $id ) == 'page' ) return $title; // if no cookie then just return the title if ( !isset($_COOKIE['lastvisit']) || $_COOKIE['lastvisit'] == '' ) return $title; $lastvisit = $_COOKIE['lastvisit']; $publish_date = get_post_time( 'U', true, $id ); if ($publish_date > $lastvisit) $title .= '<span class="new-article">New</span>'; return $title; } add_filter( 'the_title', 'wpb_lastvisit_the_title', 10, 2); // Set the lastvisit cookie function wpb_lastvisit_set_cookie() { if ( is_admin() ) return; $current = current_time( 'timestamp', 1); setcookie( 'lastvisit', $current, time()+60+60*24*7, COOKIEPATH, COOKIE_DOMAIN ); } add_action( 'init', 'wpb_lastvisit_set_cookie' );
CSS
.new-article { background: #feffdd; padding: 3px; border: 1px solid #eeefd2; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; margin-left:5px; font-size: small; font-weight: bold; }
or i guess an alternative is get an unread posts plugin like
https://wordpress.org/plugins/bbpress-mark-as-read/
which lists all the unread topics in there profile.
In reply to: Can't log into the codex@douglsmith same here
In reply to: Change quote colorcheck your wordpress themes stylessheet
look for
blockquote {
copy everything that hasblockquote {
then edit then add to custom cssyou are using this , which has a custom theme for bbpress
which is mainly for envato marketplace plugin or theme authors support
https://github.com/syamilmj/Supportte
to change the text go to meta-private.php
here is an example
makes sure you have a child theme , and put the bbpress templates to your child theme so it could be safe for upgrades.
In reply to: Custom Theme to make my bbPress Forum look prettier?i dont know any freelance experts
but you could email me robcorey17(at)hotmail(dot)com what you want specifically and then i could try it,
put a price down too , then if want we’ll make a deal
In reply to: Custom Theme to make my bbPress Forum look prettier?i mean custom styling can go a long way , just look at this recent example
In reply to: Custom Theme to make my bbPress Forum look prettier?https://github.com/EpicWebs/bbPress-starter-theme-epicwebs
doesnt look any prettier though,
look at this
or really anything in the codex
In reply to: Emoticon not quoted correctly.@gogitossj34 literally took me a few minutes to find out #humblebrag
In reply to: Change quote coloruse some css , inspect element that sucka!! haha
In reply to: GD bbPress attachments problemdeactivate your plugins one at a time , and find the plugin thats causing some issues.
switch to a different theme and see if it works thereother than that contact GD bbPress attachment plugin support
In reply to: Custom Theme to make my bbPress Forum look prettier?style one
bbpress looks plain , its like the canvas for a web designer
or fork up money for something thats really easy.
In reply to: Emoticon not quoted correctly.your emoticons look squashed
try this
img.wp-smiley { max-height: 25px; margin: 0; padding: 0; border: 0; background: transparent; }
i just saw a quoted emoticon , and it seemed fine after i added this code,
does this fix your overall issue??
In reply to: Emoticon not quoted correctly.only thing i could think of is changing your quote method to bbcode.
or deactivate your plugins, and activate them one at a time to find if there is a plugin issue.but yeah not sure at all, you could also contact wp-monalisa support too
https://wordpress.org/support/plugin/wp-monalisa
but yeah its more of getting support from gd bbpress tools.
In reply to: Text Color and Font@desiamerican26 your suppose to edit the function , add more html tags to make them unrestricted to users.
it looks like just add the tag , and attributes that are allowed
for example if i have this
<a href="http://example.com" title="this is an example" target="_blank"></a>
with these allowed attributes
// Links
‘a’ => array(
‘class’ => true,
‘href’ => true,
‘title’ => true,
‘rel’ => true,
‘class’ => true,
‘target’ => true,
),everything would show up fine.
but if i have
<a href="http://example.com" title="this is an example2" target="_blank"></a>
with these allowed attributes
// Links
‘a’ => array(
‘class’ => true,
‘href’ => true,
),the link would not have a title , and not open in new window anymore to users
In reply to: Emoticon not quoted correctly.contact gd bbpress tools support https://wordpress.org/plugins/gd-bbpress-tools/
In reply to: Seven17 forumsi like the web design of everything.
background image on whole website, opacity on hover of topics, related topics, whose online , polls on topics look.
yeah pretty nice design.
on the bbpress examples page, yeah rastclan is dead, but wpcandy still works for me
In reply to: Full Width Forum Helpyes it was the plugin wp-tweaks!
ya see im a wizard….i know things
haha okay try the thing i told you before again
go to the left sidebar
click allow this sidebar to be replaced ,
choose location select it only to show up on posts and pages ,
but not replies, topics, forums.