Search Results for 'code'
-
AuthorSearch Results
-
January 6, 2021 at 8:16 am #217309
In reply to: Avatar issues
neon67
Participanttry to css:
#bbpress-forums .widget_display_replies img.avatar, #bbpress-forums .widget_display_topics img.avatar, #bbpress-forums div.bbp-template-notice img.avatar, #bbpress-forums p.bbp-topic-meta img.avatar, #bbpress-forums ul.bbp-reply-revision-log img.avatar, #bbpress-forums ul.bbp-topic-revision-log img.avatar {display:none !important;}
January 6, 2021 at 6:00 am #217300In reply to: Moving Breadcrumbs
andyinspired
ParticipantThank you, works great, it was indeed page.php.
However, I’m trying to display the page title as well using:
<?php the_title(); ?><?php bbp_breadcrumb(); ?>
It works on all child pages but not on the homepage, I’ve also tried adding it to the index.php file but without success. I know the breadcrumbs won’t display there I just want the title there to keep it consistent with the rest of the site.
Any ideas?
January 5, 2021 at 1:39 pm #217287In reply to: Moving Breadcrumbs
Robin W
Moderatorif you want the bbpress breadcrumb in the forums, then you would need to find out which theme template astra is using to display the forum page.
You would then use this template and rename to bbpress.php and add the breadcrumb back which is what I think the first link you quoted was trying to do.
This plugin will tell you which tempate is being used
and then (presuming you are using a child theme) you would copy that template (quite often page.php) and rename it bbpress.php.
you would then add
<div class="truebreadcrumbs"><?php bbp_breadcrumb(); ?></div>
in the appropriate place in that file
January 5, 2021 at 1:14 pm #217286In reply to: Moving Breadcrumbs
andyinspired
ParticipantI’m using the Astra theme (https://wpastra.com/), I’m comfortable writing CSS and editing PHP code. Just wasn’t sure if there was a filter I could use or whether I need to edit a template?.
Thanks.
January 5, 2021 at 12:11 pm #217276In reply to: Moving Breadcrumbs
Robin W
Moderatorlooking at that suggestion, not sure what 1 & 2 are trying to do – not a section I wrote !
so to move them out of bbpress, then yes, use css and do this
div.bbp-breadcrumb { display: none; /*this will hide all breadcrumbs*/ }
put this in your theme’s custom css file.
The other part will be theme dependant – are you creating a theme or using an existing one?
January 5, 2021 at 8:33 am #217273Topic: Moving Breadcrumbs
in forum Troubleshootingandyinspired
ParticipantHi,
I’m trying to move the breadcrumbs out of the forum container and to the top of the page as explained in the codex here:
http://codex.bbpress.org/layout-and-functionality-examples-you-can-use/#7-how-can-i-remove-all-the-breadcrumbs-from-the-templates-and-set-them-at-the-top-of-the-pageHowever, if I create a bbpress.php file (or copy the one from the plugins folder) in the root of my child theme it breaks the forum completely!.
Any help appreciated!
Thanks.
January 5, 2021 at 5:20 am #217271In reply to: Oh, bother….can you spare a dime!?
Robin W
Moderatorthe easiest way is
once activated go to
dashboard>settings>bbp style pack>Topics Index Styling and tick item 16 don’t show this message
if you want to do it using FTP then
find
wp-content/plugins/bbpress/templates/default/bbpress/feedback-no-topics.phptransfer this to your pc and remove
<div class="bbp-template-notice"> <ul> <li><?php esc_html_e( 'Oh, bother! No topics were found here.', 'bbpress' ); ?></li> </ul> </div>
and save (this file must exist, but we just make it empty!)
create a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpresswhere %your-theme-name% is the name of your theme
Then transfer the file you saved above and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/feedback-no-topics.phpbbPress will now use this template instead of the original
January 3, 2021 at 5:54 pm #217218In reply to: Remove underline from Topics
Robin W
Moderatormy mistake should be
main a { text-decoration: underline !important; } a.bbp-topic-permalink { text-decoration: none !important; }
January 3, 2021 at 3:15 pm #217216In reply to: Remove underline from Topics
uksentinel
Participantremoved all CSS code and replaced it with you code as above, alas this did not work, maybe an conflict with theme ?
January 3, 2021 at 2:40 pm #217214In reply to: User Statistics
Robin W
ModeratorAnyone coming new to this thread, I have added a revised version of this plugin to my site which can be downloaded from
This plugin is one which WordPress withdrew as it violated their guidelines (suspected to be listing users without login, but not certain).
You can download and use, but I offer no support or warranty that this code works !
January 3, 2021 at 2:30 pm #217213In reply to: Remove underline from Topics
Robin W
Moderatorok your code is
main a { text-decoration: underline !important; a.bbp-topic-permalink { text-decoration: none: !important; }: ; }
it should be
main a { text-decoration: underline !important; } a.bbp-topic-permalink { text-decoration: none: !important; }
January 3, 2021 at 2:21 pm #217212In reply to: Remove underline from Topics
uksentinel
Participantand new code is still in
January 3, 2021 at 1:32 pm #217210In reply to: Remove underline from Topics
uksentinel
ParticipantYes, original code is still there, I did notice when I pasted in the new CCS code, the a.bbp-topic-permalink changed to a red colour ?
January 3, 2021 at 12:55 pm #217208In reply to: Remove underline from Topics
uksentinel
ParticipantHi Robin
I placed code both above and below original CSS alas did not work, I assume because original css has priority ?
January 3, 2021 at 12:21 pm #217203In reply to: User Statistics
Robin W
Moderatorso in the statsistics plugin you are changing
$latest_user = get_users( array( 'number' => 1, 'fields' => array("user_login", "ID", "display_name"), 'orderby' => "registered", 'order' => "DESC", 'meta_key' => 'wp-approve-user', 'meta_value' => '1' ) );
to
//set up $args with core arguments needed $args = array( 'number' => 1, 'fields' => array("user_login", "ID", "display_name"), 'orderby' => "registered", 'order' => "DESC", ) ; //add additional meta data to $args if wp-approve-user is active if (class_exists ('Obenland_Wp_Approve_User')) { $args ['meta_key'] = 'wp-approve-user' ; $args ['meta_value'] = '1' ; } //then do the lookup $latest_user = get_users($args) ;
January 3, 2021 at 12:12 pm #217199In reply to: User Statistics
Robin W
Moderatorok, so final amendment needed, as if you deactivate wp-approve-user then the latest user will be forevermore the last one you approved before decativating the plugin.
If you open the wp-approve-plugin you’ll see the core file wp-appprove-user.php
open this and you’ll see a line 29 which says
class Obenland_Wp_Approve_User extends Obenland_Wp_Plugins_V4 {
so we know that the wp-approve-plugin sets up a class called ‘Obenland_Wp_Approve_User’, so we can use the existence of this class to know if wp-approve-use is active or not.
This is common to many plugins and a good way to ensure parts of code that use another plugin only fire if that plugin is active.
so now we can change the ‘get_uses’ to only add the meta_data is the class exists
//set up $args with core arguments needed $args = array( 'number' => 1, 'fields' => array("user_login", "ID", "display_name"), 'orderby' => "registered", 'order' => "DESC", ) ; //add additional meta data to $args if wp-approve-user is active if (class_exists ('Obenland_Wp_Approve_User')) { $args ['meta_key'] = 'wp-approve-user' ; $args ['meta_value'] = '1' ; } //then do the lookup $latest_user = get_users($args) ;
January 3, 2021 at 8:49 am #217194In reply to: Remove underline from Topics
Robin W
Moderatortry
a.bbp-topic-permalink { text-decoration: none: !important; }
I’d add this after your css lines above.
January 3, 2021 at 8:45 am #217193In reply to: bbPress Topics for Posts comment
Robin W
ModeratorI am just a guy who sites in his kitchen and writes code for enjoyment, and I like to try and help others on the forums.
I do not get paid to do this, I have no connection with bbpress and all code (inc wordpress and bbpress) is offered under OSF, which is that it is free, open source to allow others to amend it, and offered with no support and no warranty that it does anything.
bbpress authors are free to decide what they put in their code, as am I. I do not suggest what should be in bbpress, nor do I consider that they should take any notice of me.
The topics for posts plugin has not been updated for a while because the authors do not choose to do so, that is their right, it is free code offered at the point of publishing. You are free to learn php and update and amend it as you wish.
I am not author of topics for posts, I have just been granted access as I wish to update it, which I will do when I am ready to do so.
January 3, 2021 at 7:15 am #217191In reply to: User Statistics
Robin W
Moderatorok, so the function within that code that gets the latest user is this
$latest_user = get_users( array( 'number' => 1, 'fields' => array("user_login", "ID", "display_name"), 'orderby' => "registered", 'order' => "DESC" ) );
so this function brings users ordered by registered – DESC means latest is listed first, and number=>1 means just retrieve one, so this gets the latest.
so we just need to add a lookup to say that this must also have meta ‘wp-approve-user’ set to 1 so we amend the function to
$latest_user = get_users( array( 'number' => 1, 'fields' => array("user_login", "ID", "display_name"), 'orderby' => "registered", 'order' => "DESC", 'meta_key' => 'wp-approve-user', 'meta_value' => '1' ) );
This (untested) should work for your site.
I don’t plan to support this plugin, but am happy to have it on my site to allow others to use it.
Given that many many other plugins might set meta data it is not possible to cater for all, so I’ll just host the previous version. Anyone downloading will be via this thread so they can see how to update it to cater for the approve plugin.
January 3, 2021 at 6:59 am #217190In reply to: User Statistics
Chuckie
ParticipantI have just checked the database and wp-approve-user is always 1 with the exception of one record where it is empty. I assume this is the person that registered on my site this morning whom I have not approved.
so we just need the latest user who has been approved
Correct, but, if this will be part of the plugin you sponsor on your site it will need to factor if for the old way I guess too. Unless this becomes a custom code change just for me.
January 3, 2021 at 5:38 am #217188In reply to: User Statistics
Robin W
Moderatorthat was exactly what I meant – now we know what changes, so to code we need to find out which user is being displayed and get that data.
so as you say it will be something like
$approve = get_meta_data ($user_id, 'wp-approve-user', true) ;
presume you mean ‘latest user’ – not keen to load the plugin to my test site as I’m mid something else – so we just need the latest user who has been approved, or do you mean something else?
January 3, 2021 at 5:38 am #217187In reply to: User Statistics
Chuckie
ParticipantSo it calls:
private function section_latestuser() { // Grab the latest registered user on the site return $this->tag_replace( $this->parent->option["title_text_latestuser"] ); }
Which in turn calls:
function get_latestuser( $html ) { $latest_user = get_users( array( 'number' => 1, 'fields' => array("user_login", "ID", "display_name"), 'orderby' => "registered", 'order' => "DESC" ) ); $latest_user = reset( $latest_user ); // Default display is the full name $name = $latest_user->display_name; if( $this->parent->option['user_display_format'] == "display_as_username" ) { $name = $latest_user->user_login; } if( $html == true ) { return "<a href=\"" . bbp_get_user_profile_url( $latest_user->ID ) . "\">" . $name . "</a>"; } else { return $name; } }
I think, if “WP Approve User” is installed then we need to somehow modify the array returned to only include those where the are approved (as per my previous email).
January 3, 2021 at 5:36 am #217186Topic: Remove underline from Topics
in forum Themesuksentinel
ParticipantI am running a little custom CSS custom code to underline all my Hyperlinks on my BBPRESS forum, which work well, but I now wish to not underline Topics – can anybody advise addition code needed ?
Thanks:
main a {
text-decoration: underline !important;
}Site: uktechhub.com
January 3, 2021 at 5:12 am #217181In reply to: User Statistics
Chuckie
ParticipantFurther to last message, I don’t know if the code I showed you can be improved?
As mentioned, I have “WP Approve User” installed. I have checked the meta data for a given user in the database and if “wp-approve-user” is not set to “1” then they should not be listed in the “newest users” bit of the statistics.
That “build_html” code needs to be modified somehow.
January 3, 2021 at 4:54 am #217179multi65
ParticipantI see…so there is no way to relocate the form to another page with free code?
-
AuthorSearch Results