Forum Replies Created
-
that still doesn’t tell, me how you are doing the online bit.
so you must be using some code/stuff at that point to show this. so what widget or code are you using ?
bbpress doesn’t have a widget that shows members online.
This must be coming form your theme, or another plugin- you’ll need to find out which and then I’ll try and help further
In reply to: User Last Logingreat – glad you are fixed π
so bbpress does not do this bit, so what plugin or code are you using to display this area?
In reply to: Messy Emails to usersso this shows ok in the actual bbpress topic/reply – yes ?
but is wrong in the (presumably) ‘subscription’ email that is sent – yes ?
In reply to: User Last Loginthat’s basically a rewrite of my code, so suggest that you have a problem somewhere.
You are putting this code in your functions file – yes ?
in which case can you show the actual code including the function/lines before it and after it
In reply to: Bbpress – caching mobile pages pluginthe plugin says it does
Features :
…
8. Enable/Disable cache option for mobile devices
In reply to: Messy Emails to usersI presume users are receiving emails as html/rich text rather than plain text ?
In reply to: Display forum in recent replies and topic widgetsbest I can do – sorry !
In reply to: WP database password changed, bbpress errorI took a look at that file, and I can’t see why it would be an issue, but clearly it was !
Anyway glad you are fixed π
In reply to: Unread/read Icon is not displayedπ
In reply to: WP database password changed, bbpress erroris this just you logging in as keymaster? can you set up a participant and see if they have the same issue ?
In reply to: Unread/read Icon is not displayed1. make sure that you have activated it -above item 1 in dashboard>settings>bbp style pack>unreda posts
2. it will only show for logged in usersIn reply to: Display forum in recent replies and topic widgetsπ
In reply to: Full responsive Headersthat’s no problem, happy to help if I can!!
In reply to: Full responsive Headersok, that all works, you just need to decide what size .em you want and put that in the custom css
In reply to: Full responsive Headersso is this code ONLY in style pack, if it is also in the theme, please remove it from there
In reply to: Full responsive Headersok, so can you put the css above in the custom css part of style pack please
In reply to: Full responsive Headerssorry that doesn’t resolve – ie doesn’t go anywhere
Hmmmβ¦ can’t reach this page
In reply to: User Last Loginsuspect this is what you need – untested !!
$user_id = bbp_get_displayed_user_id() ; $last_login = get_user_meta($user_id, 'last_login', true);
so if you go down the route you have, you’d add a second shortcode
function rew_lastlogin () { $user_id = bbp_get_displayed_user_id() ; $last_login = get_user_meta($user_id, 'last_login', true); $the_login_date = date_i18n(get_option('date_format'), $last_login); return $the_login_date; } add_shortcode('bbp_lastlogin','rew_lastlogin');
and then use
<?php echo βLast seen: β. do_shortcode(β[bbp_lastlogin]β) .β agoβ; ?>
In reply to: Full responsive Headersok, changing themes will not I think get you any further. Without being able to see your site, I can’t really help further, as I can’t examine what is being downloaded to your browser, and what is either not taking effect or being overridden.
I take it you have been amending the 1.5em to see whether it changes – I just put a figure in there.
as a last guess, you could try
#bbpress-forums ul.forum-titles li.bbp-forum-info { font-size: 1.5em !important; } #bbpress-forums ul.forum-titles li.bbp-forum-topic-count { font-size: 1.5em !important; } #bbpress-forums ul.forum-titles li.bbp-forum-reply-count { font-size: 1.5em !important; } #bbpress-forums ul.forum-titles li.bbp-forum-freshness { font-size: 1.5em !important; }
In reply to: How to redirect non-member to registration formcontact me via http://www.rewweb.co.uk/contact-me/
In reply to: Full responsive Headersok, I’d suggest that your browser is not refreshing – browsers download the css files, but to keep website speed up, then only do so every so often. phones are particularly bad at keeping old css files, and not updating them/
Try closing your browser and reopening, or if you can accessing your site form a computer/phone that has not accessed it before.
In reply to: Full responsive Headersyou should not need to change theme !
So you put this code in additional css – yes ?
In reply to: Full responsive Headersit would go in then custom css area of your theme, normally
dashboard>appearance
then try ‘customise’ and look for ‘additional css’ or ‘custom css’
or your theme may have its own are for setting in that part of dashboard