Forum Replies Created
-
In reply to: Full responsive Headers
ok, 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
In reply to: Full responsive Headers#bbpress-forums ul.forum-titles li.bbp-forum-info { font-size: 1.5em; } #bbpress-forums ul.forum-titles li.bbp-forum-topic-count { font-size: 1.5em; } #bbpress-forums ul.forum-titles li.bbp-forum-reply-count { font-size: 1.5em; } #bbpress-forums ul.forum-titles li.bbp-forum-freshness { font-size: 1.5em; }In reply to: Disable Ability to Reply🙂
In reply to: Display author email with topic🙂
In reply to: Forum Admin Permission issue🙂
In reply to: Display forum in recent replies and topic widgetsIn reply to: How to redirect non-member to registration formsuggest you contact the GD bbPress Toolbox Pro author to se if he can help
In reply to: Display author email with topicThis will display emails in topics
add_action( 'bbp_theme_after_reply_author_details', 'rew_author_email' ); function rew_author_email () { $id = bbp_get_reply_id() ; if (bbp_is_topic( $id ) ) { $author_id = bbp_get_topic_author_id( $id ); $user_info = get_userdata($author_id ); $user_email = $user_info->user_email; echo $user_email; } }Put this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
In reply to: Disable Ability to ReplyPut this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
add_filter( 'bbp_current_user_can_publish_replies', 'rew_do_not_allow_anon' ); function rew_do_not_allow_anon ($retval) { if ( ! is_user_logged_in() ) { $retval = false ; } return $retval ; }In reply to: Full responsive Headerslink to an example on your site please
In reply to: Forum Admin Permission issueThis plugin should be your answer
In reply to: Topics and Replies not showing after importok
In reply to: Topics and Replies not showing after importthat might work, but so should the fix forum post parent plugin above – not clear if you had tried that ?
In reply to: add a link to discussion$content_to_add = '<a href="\create-new-post?vis='.$current_user_id.'">Add new blog</a>';In reply to: cannot edit, delete or close a topicit has little overhead on load time for your site
In reply to: Need Larger fonts and darkertypically will be
dashboard>settings>bbp style pack>forums index styling and topics index styling