Search Results for 'Add BuddyPress Styles to a Theme'
-
AuthorSearch Results
-
March 7, 2016 at 9:45 pm #250836
In reply to: ‘bp_email_use_wp_mail’ Causing Issues
Paul Wong-Gibbs
Keymaster2.) Then when altering configuration (i.e. adding add_filter( ‘bp_email_use_wp_mail’, ‘__return_true’ ); to BP_Custom), and testing again, the emails output a combination of WP Better Email and the default template with various CSS Styles altering different parts of the email with each new email sent.
BTW, this is exactly what I expect to happen. The content from the plain text version of the email from BuddyPress into the template provided by, in this case, WP Better Email.
If you’re saying extra CSS is getting involved, I strongly suspect you have some other plugin or theme component adding extra junk.
January 23, 2016 at 1:01 pm #249031In reply to: Hide or delete tab Profile ( Base)
Hellbounds
Participantnot working ..
/* Theme Name: Sweetdate (shared on themelot.net) Description: More than a WordPress dating theme Author: SeventhQueen Author URI: http://themeforest.net/user/SeventhQueen Version: 2.9.2 Tags: dating, clean, responsive, creative, minimal, modern, landing page, social Text Domain: kleo_framework License: GNU General Public License License URI: license.txt */ @import url("assets/styles/app.css"); /* * DO NOT EDIT THIS FILE * * If you want to edit/add styles you need to enable the child theme and add your custom styles there. */ #buddypress .profile h4{display:none !important}January 22, 2016 at 10:40 pm #249017In reply to: Hide or delete tab Profile ( Base)
Slava Abakumov
ModeratorOR
You can add these styles to your theme css file:
#members-all{display:none} #buddypress .profile h4{display:none}January 18, 2016 at 5:33 pm #248801In reply to: how to take out this table?
Hastig
ParticipantI don’t know which theme you’re using so I can only offer some basic, general css advice.
The numbers are in a table column, each number is in a table cell. In the html the table cell is written as <td>
I’m not sure if you can or will want to remove the numbers column entirely, there may be some buddypress inserted code in there (#id’s, etc) that helps identify each row <tr> for a buddypress function.
What you can do is make that column narrower or possibly hide it from displaying on screen while keeping the (possibly) important code in place.
With Firefox or Chrome right click on a cell and choose ‘inspect element’.
This will show you the html code in that area.
You want to find the cell <td> that wraps around the numbers then identify its class. There may be a couple of different classes in each <td> that buddypress inserts.
To help find which class you want to work with add a background-color: red; to different classes til you find the right one that applies to all cells in the column.
(if you cant find a class that applies to only the numbers column you will need to get into a little more complex css using nth and similar methods)
Once you find the right one open your themes style.css file and place on the bottom of it the class with your new styles.
Try something like ..
.className {visibility: hidden;} to hide it
or
.className {width: 10%;} to adjust it’s width relative to the overall width. (would want to adjust the other columns cell widths to compensate. may also be some other elements within the cell with their own widths set.)
There are numerous ways to target those cells for styling and different things that may prevent the above ideas from working but I’d better leave it at that for now.
December 23, 2015 at 7:04 am #248037In reply to: center buddypress register page
@mercime
Participant@mrunal2989 the easiest way to center the registration page to select the full-width page template (instead of the Default Template) of your theme from the “Register” page Page Attribute box and then use CSS on the #buddypress wrapper to center the registration page. e.g. add
#buddypress { width: 90%; margin-left: auto; margin-right: auto; }to your theme’s stylesheet.
December 20, 2015 at 1:34 pm #247929In reply to: CSS causing cover image to disappear.
aldin_abdagic
ParticipantHI ! I have the same problem … I understand what coeycoey writes , here is the explanation ;
Everything is great and everything works , just does not appear cover image … ??? any Solution ?
August 29, 2015 at 7:31 am #243819In reply to: Profile looks weird
danbp
ParticipantOk, let’s try something different.
Add a file called functions.php to child root
/child/functions.php
Copy/paste this, including php tags<?php // enqueuing the child to parent - don't remove */ function theme_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); } add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' ); /********************** CUSTOM STUFF **********************************/ // other custom function ?>Inside child’s BuddyPress folder, you can remove anything except CSS and JS folder.
August 26, 2015 at 5:59 pm #243668In reply to: Removing the Member Navigation Menu
Ben Riga
ParticipantI poked around and re-read the codex and watched the BuddyCamp Brighton video with Hugo Ashmore (the video was really good btw).
Unfortunately I am still stuck. I suspect I’m missing some little but fundamental thing but can’t figure out what that is.
My child theme folder only includes three files:
twentyfourteen-child\buddypress\members\single\home.php
twentyfourteen-child\functions.php
twentyfourteen-child\style.csshome.php is an exact duplicate of the file at plugins\bp-themes\bp-default\members\single\home.php
styles.css is empty (except for comments) and functions.php only contains:
add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
function theme_enqueue_styles() {
wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );
}I’m baffled. Anyone have an idea for me to try or some additional how-to docs on how to properly setup a child them for both wp and bp?
Thanks,
BenAugust 26, 2015 at 4:22 pm #243658In reply to: How to change the “Members” color in members page
danbp
Participantbuddypress.css contains all styles used by BP.
I also use a cache plugin that is not caching for logged in users.
If i understand this correctly, it means that if i visit your site without being logged in, i get a page from the cache, right ? This means logically that you have to be logged in while testing your change. And finally, it could be possible that non logged users see (it’s an example) a black title (cached) and logged-in user see a red title (the most recent, not cached, version of the new style applied to that page). Hum…
When you use a child-theme, and his mandatory style.css, the child has priority over the parent theme, and buddypress.css.
Child theme is the only safe strategy to get your customization without loosing your work at each update. You add to it only what you want to modify. Even if you need to change only 2 title styles.
In your case, you need only a style.css with a rule or two for your titles. You don’t have to add template files.is it possible to find somewhere already created templates with different color profiles
A template is a structure of different HTML tags and some php code for dynamic content.
A theme is a design applied to this armature.
A content is what is showed inside the structure.
HTML is used to build the structure
CSS is used to build the layout/design
Content is text, images, videos, etc
PHP is a coding language to build dynamic pages between a database and a server.BuddyPress template files are stored in wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress
Unfortunatly for you, the theme is a premium one for which we can’t provide support, as we have no access to his code and can’t install it to test without using a licence.
See theme doc for information about child theming it and other advice for adding custom CSS.
August 13, 2015 at 4:57 pm #243157In reply to: BUDDYPRESS 2.3.2 PROBLEM WITH PROFILE BUTTONS
danbp
Participanthi @kostasbarkas30,
i even tried to copy some functions from bp default theme in my functions php theme but still nothing.
Revert back to the original install by deleting that custom work. then follow @djsteveb advice.
Keep in mind that you should never install something on WordPRess before WP is working correctly. Same thing when you add, let’s say BuddyPress. In this case, WP and BP should work flawlessly together. Once you hace the built your house, you can add the wallpaper. OMG ! Like IRL ! 😉
That way, it’s much easier to debug if an issue occurs. 1 is ok, add 2. 1 & 2 are ok. Add 3. 1 & 2 & 3 are ok, and so on.
Note also that BP-Default theme is no more maintained and is only in for backward compatibility. BuddyPress works on slightly any theme !
BP has no theme, just some templates with minimal styles. This stuff is stored in bp-templates/bp-legacy/buddypress/. If you need to modify some theme functions, you do it from within a child-theme, in which you copy what you want to change from bp-legacy.
All this and more, is explained on Codex. Don’t hesitate to read through it, if you’re new to BP !
We all started a day. Rome wasn’t built in one day. It’s a Long Way to Tipperary . Facebook is unique and BuddyPress is great. Hold on, it’s just the begin ! 🙂
August 3, 2015 at 6:26 pm #242729In reply to: Styling BuddyPress Login Widget
Jld142
ParticipantThis is my current code:
<?php /* Link parent CSS file */ add_action( 'wp_enqueue_scripts', 'enqueue_parent_styles' ); function enqueue_parent_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' ); } /* Count number of user notifications */ function cg_current_user_notification_count() { $notifications = bp_core_get_notifications_for_user(bp_loggedin_user_id(), 'object'); $count = !empty($notifications) ? count($notifications) : 0; echo $count; } /* Remove register BuddyPress Widget creator */ function remove_bp_core_register_widgets() { remove_action(bp_core_register_widgets()); } add_action('init','remove_bp_core_register_widgets()'); function new_bp_core_register_widgets() { add_action('widgets_init', create_function('', 'return register_widget("new_BP_Core_Login_Widget");') ); } add_action( 'bp_register_widgets', 'bp_core_register_widgets' ); /* New BuddyPress Login Widget */ class new_BP_Core_Login_Widget extends WP_Widget { /** * Constructor method. */ public function __construct() { parent::__construct( false, _x( '(BuddyPress) Log In', 'Title of the login widget', 'buddypress' ), array( 'description' => __( 'Show a Log In form to logged-out visitors, and a Log Out link to those who are logged in.', 'buddypress' ), 'classname' => 'widget_bp_core_login_widget buddypress widget', ) ); } /** * Display the login widget. * * @see WP_Widget::widget() for description of parameters. * * @param array $args Widget arguments. * @param array $instance Widget settings, as saved by the user. */ public function widget( $args, $instance ) { $title = isset( $instance['title'] ) ? $instance['title'] : ''; /** * Filters the title of the Login widget. * * @since BuddyPress (1.9.0) * @since BuddyPress (2.3.0) Added 'instance' and 'id_base' to arguments passed to filter. * * @param string $title The widget title. * @param array $instance The settings for the particular instance of the widget. * @param string $id_base Root ID for all widgets of this type. */ $title = apply_filters( 'widget_title', $title, $instance, $this->id_base ); echo $args['before_widget']; echo $args['before_title'] . esc_html( $title ) . $args['after_title']; ?> <?php if ( is_user_logged_in() ) : ?> <?php /** * Fires before the display of widget content if logged in. * * @since BuddyPress (1.9.0) */ do_action( 'bp_before_login_widget_loggedin' ); ?> <div class="bp-login-widget-user-avatar"> <a href="<?php echo bp_loggedin_user_domain(); ?>"> <?php bp_loggedin_user_avatar( 'type=thumb&width=50&height=50' ); ?> </a> </div> <div class="bp-login-widget-user-links"> <div class="bp-login-widget-user-link"><?php echo bp_core_get_userlink( bp_loggedin_user_id() ); ?></div> <p>TEST</p> <div class="bp-login-widget-user-logout"><a class="logout" href="<?php echo wp_logout_url( bp_get_requested_url() ); ?>"><?php _e( 'Log Out', 'buddypress' ); ?></a></div> </div> <?php /** * Fires after the display of widget content if logged in. * * @since BuddyPress (1.9.0) */ do_action( 'bp_after_login_widget_loggedin' ); ?> <?php else : ?> <?php /** * Fires before the display of widget content if logged out. * * @since BuddyPress (1.9.0) */ do_action( 'bp_before_login_widget_loggedout' ); ?> <form name="bp-login-form" id="bp-login-widget-form" class="standard-form" action="<?php echo esc_url( site_url( 'wp-login.php', 'login_post' ) ); ?>" method="post"> <label for="bp-login-widget-user-login"><?php _e( 'Username', 'buddypress' ); ?></label> <input type="text" name="log" id="bp-login-widget-user-login" class="input" value="" /> <label for="bp-login-widget-user-pass"><?php _e( 'Password', 'buddypress' ); ?></label> <input type="password" name="pwd" id="bp-login-widget-user-pass" class="input" value="" <?php bp_form_field_attributes( 'password' ) ?> /> <div class="forgetmenot"><label><input name="rememberme" type="checkbox" id="bp-login-widget-rememberme" value="forever" /> <?php _e( 'Remember Me', 'buddypress' ); ?></label></div> <input type="submit" name="wp-submit" id="bp-login-widget-submit" value="<?php esc_attr_e( 'Log In', 'buddypress' ); ?>" /> <?php if ( bp_get_signup_allowed() ) : ?> <span class="bp-login-widget-register-link"><?php printf( __( '<a href="%s" title="Register for a new account">Register</a>', 'buddypress' ), bp_get_signup_page() ); ?></span> <?php endif; ?> </form> <?php /** * Fires after the display of widget content if logged out. * * @since BuddyPress (1.9.0) */ do_action( 'bp_after_login_widget_loggedout' ); ?> <?php endif; echo $args['after_widget']; } /** * Update the login widget options. * * @param array $new_instance The new instance options. * @param array $old_instance The old instance options. * @return array $instance The parsed options to be saved. */ public function update( $new_instance, $old_instance ) { $instance = $old_instance; $instance['title'] = isset( $new_instance['title'] ) ? strip_tags( $new_instance['title'] ) : ''; return $instance; } /** * Output the login widget options form. * * @param $instance Settings for this widget. */ public function form( $instance = array() ) { $settings = wp_parse_args( $instance, array( 'title' => '', ) ); ?> <p> <label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:', 'buddypress' ); ?> <input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $settings['title'] ); ?>" /></label> </p> <?php } } ?>I was trying to following the below guide to remove the function that initializes the login widget and then redirect it to my own new one:
http://venutip.com/content/right-way-override-theme-functions
Obviously hasn’t worked. Any ideas ?
August 3, 2015 at 1:15 am #242702In reply to: Styling BuddyPress Login Widget
@mercime
Participant@jld142 Based on title of this topic, you only want to change the styling aka CSS. If that’s the case, you do not need to add any BP folders/files in your child theme. Just override the style in your theme’s style.css file or whatever stylesheet is enqueued in your premium theme.
If however, you want to change the markup or functionality in some form or the other, then you’d have to look at https://buddypress.trac.wordpress.org/browser/tags/2.3.2/src/bp-core/bp-core-widgets.php#L22 and make the fix in your child theme’s functions.php – no need to copy over any BP folder.
July 26, 2015 at 4:42 pm #242440In reply to: Using a theme just for BuddyPress
kjgbriggs
Participantchecking the Functions file, there is a huge amount of php requirements specified at the top (13 of them), I am guessing this will mess with me trying to make a child theme out of it.
On a lighter note.
The CSS files are included separately so I have the styles for BBPress and BuddyPress separated out for me.I have tried adding these to my custom CSS, but they don’t seem to change that much, just the overall placement of things.
July 26, 2015 at 10:56 am #242427In reply to: Using a theme just for BuddyPress
kjgbriggs
ParticipantSorry for not providing enough info.
My main theme is called Divi and is created by Elegant Themes.
The theme I want to use just for BuddyPress stuff is called Oblivion and is created by Sky Warrior Themes.An example of the BuddyPress forums nd layouts is here on the Oblivion demo:
http://skywarriorthemes.com/oblivion/forums/
I just want the styling for the BuddyPress and BBPress stuff from Oblivion in Divi.
I did a bit of Googling and came to the conclusion that the best way to do this was to use a Child Theme.
Divi is updated quite a lot so I would either have to not update anymore or lose the styling if I were to add the styles to Divi directly.
There is little information I can find on having a child theme for specific things such as buddyPress though and I am unsure of how to do it.
July 25, 2015 at 8:55 pm #242418In reply to: Using a theme just for BuddyPress
djsteveb
Participant@kjgbriggs – setting up a child theme is just a way to essentially make a new theme – using another “parent” as your template. When you activate, it’s just ONE theme that it handling everything for your wp/bp site.
You do no provide enough details about your theme names, and what you like about the main one and the one that ‘looks better with buddyprees’ – however, if you just like the layout of the bp components with he second theme more, then yes I believe you could make a child theme from your primary theme, and then go into your secondary theme and start to pull some of the layout code for the bp specific components and add those to your main theme.
If it’s overall colors and such you are trying to mix, like have a red header for your main site and a blue header for your bp pages – that is not going to be so easy..
it’s easy to learn about child themes here: https://codex.wordpress.org/Child_Themes
and a little more digging to learn about bp specif pages and components here:
for minor changes you can keep things simple by activating your second theme that you like with the bp looking better, go to the bp pages where you like the layout, right click on the element that looks good and click inspect elements – this will give you the css rules that are working the way you like.. things like alignment properties, bold, colors perhaps – copy those – put them into your new child theme styles and such..
of course some things can be more tricky if your second theme has fancy functions.php, java and all that included.
June 28, 2015 at 4:40 am #241199In reply to: Reverting to older profile design template?
jimjas
ParticipantThanks Hugo. I found your article on companion styles, but the only thing I found on deregulating the new styles was:
function dequeue_bp_twentyfifteen() {
wp_dequeue_style(‘bp-twentyfifteen’);
}
add_action(‘wp_enqueue_scripts’, ‘dequeue_bp_twentyfifteen’);However I’m not using a twentysomething theme.
The current default profile menu runs horizontal across the page
https://drive.google.com/file/d/0B0PCT5EGd34SN0JIQzdJNWswVEU/edit?usp=drivesdk
But what I’d like is for the profile menu to run vertically down the page under the profile pic (like it does on the Buddypress site itself)
https://drive.google.com/file/d/0B0PCT5EGd34STnhqYnM4NXZSVDQ/edit?usp=drivesdk
Sorry if my pics are not that clear.
Do you still suggest the dequeue code in the function file as the approach I should follow? And if so, should I change the references to be for the theme I’m using instead of 2015?
IF not, is there some other code I should use to restore the old profile template format?
Thanks Hugo!
jas
June 25, 2015 at 6:09 pm #241098danbp
ParticipantHi @rameden,
in hope you are already familiar with Genesis framework. If not, i don’t recommend it, because starting with a framework (even if very good) is not easy, and adding another point where you also begin is not the best way… to learn. 😉
The answer to your question is :
child/css/buddypress.css/, but you can also use child/style.cssIf you want to modify BP templates, then you copy the needed file from legacy/buddypress/ to child/buddypress/…./
/bp-templates/bp-legacy/ belongs to BP.
June 18, 2015 at 5:29 pm #240854In reply to: Registration Page Formatting Issue
BurkeKnight
ParticipantI’m working on another site, and did as did on the first site. However, different theme (child).
Added: wp-content/themes/flat-child/buddypress/members
Now, whatever I do to register.php should show, but does not.
Could this be due to having to set the child theme up this way:Enqueue both parent and child stylesheets
Select this option if stylesheet link tags are hard-coded into the header template (common in older themes). This enables the child stylesheet to override the parent stylesheet without using @import.June 4, 2015 at 2:08 pm #240191In reply to: This layout is insane…
Henry Wright
ModeratorCompanion stylesheets were introduced in 2.3. You can read more about them here.
If they’re not quite to your taste, you can dequeue them. Here’s an example of how to do it:
function dequeue_bp_twentyfifteen() { wp_dequeue_style( 'bp-twentyfifteen' ); } add_action( 'wp_enqueue_scripts', 'dequeue_bp_twentyfifteen' );April 24, 2015 at 9:21 pm #238324In reply to: Avatar does not show outside BuddyPress
danbp
ParticipantPrevious snippet changed all avatars (user, blogs and groups) which is not what you want. Here’s a snippet which works almost correctly, but not to 100%. Give it a try anyway.
It changes the user avatar depending of an xprofile value.
(add to bp-custom.php)
function bpfr_my_new_avatar_url() { global $bp; if( bp_is_user() && ! bp_get_member_user_id() ) { $user_id = bp_displayed_user_id(); } else { $user_id = bp_get_member_user_id(); } if ( is_page( 'activity' ) ) { $user_id = bp_get_activity_user_id(); } $ranking = xprofile_get_field_data ('ranking', $user_id ); if ($ranking == "Top 25") { $url = get_stylesheet_directory_uri() .'/custom_img/25.png'; } if ($ranking == "Top 24") { $url = get_stylesheet_directory_uri() .'/custom_img/24.png'; } return $url; } add_filter( 'bp_core_default_avatar_user', 'bpfr_my_new_avatar_url' );Create a profile field called “ranking” with 2 options (top 24 & top 25).
Create a folder in your child-theme called “custom_img” and add 2 pictures: 24.png & 25.png (250×250)
If everybody must those avatars, disallow avatar upload in BP settings.
Site default avatar stays as Mystery Man (wp default setting).You have also to get rid of Gravatar, so you must add this to bp-custom.php
add_filter('bp_core_fetch_avatar_no_grav', '__return_true');The thing who doesn’t work is related to
X & Y are now friends. Both willhave the same avatar.Can probably by better improved.
February 20, 2015 at 7:18 pm #234872In reply to: New plugin: BuddyPress Identicons
rosyteddy
ParticipantYes, I should have done that / should do that :
If you want to apply your own CSS, override the plugin’s styles by adding the following to your theme’s stylesheet. That way you won’t lose anything going forward.
Thanks. Why it has not been added to the BP plugin page? Please add.
PS : Just now saw it has been added. Thanks.
February 20, 2015 at 6:51 pm #234867In reply to: New plugin: BuddyPress Identicons
Henry Wright
ModeratorHi @rosyteddy
Thanks for your kind words about the plugin. I’m glad you find it useful! 😀
Whilst you’re right that you can change the CSS, I just wanted to point of that any changes you make to plugins/buddypress-identicons/css/style.css will be overwritten when you download plugin updates.
If you want to apply your own CSS, override the plugin’s styles by adding the following to your theme’s stylesheet. That way you won’t lose anything going forward.
.avatar { // Your CSS here. }January 22, 2015 at 11:18 am #232762In reply to: My horizontal form don't work in "members" page
patlol
ParticipantI forget the environment!!!
On my wordpress 4.1 i have:
On site:
bbPress par The bbPress Community version 2.5.4,
Beautiful taxonomy filter par Jonathan de Jong version 1.1.4.2,
BP Profile Search par Andrea Tarantini version 4.0.3,
rtMedia for WordPress, BuddyPress and bbPress par rtCamp version 3.7.29,
BuddyPress par The BuddyPress Community version 2.1.1,
Petites annonces par WPMU DEV version 2.3.6.4,
Debug Bar Actions and Filters Addon par Subharanjan version 1.4.1,
Debug Bar Custom Info par FitWP version 1.0.2,
Debug Bar Roles and Capabilities par Matthew Boynes version 0.1.1,
Debug Bar Shortcodes par Juliette Reinders Folmer version 1.0.3,
Debug Bar par wordpressdotorg version 0.8.2,
Enable Media Replace par MÃ¥ns Jonasson version 3.0.1,
Events + par WPMU DEV version 1.8,
Live Stream Widget par Paul Menard (Incsub) version 1.0.4.3,
MarketPress par WPMU DEV version 2.9.6,
Revolution Slider par ThemePunch version 4.6.0,
WordPress Chat par WPMU DEV version 2.0.8.8,
WordPress Console par Jerod Santo version 0.3.9,
WP Job Manager – Applications par Mike Jolley version 1.5.2,
WP Job Manager – Indeed Integration par Mike Jolley version 2.0.17,
WP Job Manager par Mike Jolley version 1.19.0,
WP Job Manager – Job Styles par Tiny Giant Studios version 1.0.3On network:
Easy Bloging
Mass Email Sender
Multisite Theme Manager
New Blog Templetes
Remove Email Verificaton
Site Wip Text Change
User Switching
Importateur wordpress
SEO WordPress
WPMU DashboardJanuary 10, 2015 at 9:02 pm #231723djsteveb
ParticipantIf I was creating a new theme with buddypress in mind right now, I would consider that most buddypress installs probably use the rtmedia plugin – and given that it is over bloated with it’s own loading of bootstrap components, and font awesome, and I think some zurb foundation files(?) – most themes I have tried to use that are responsive and work with buddypress plain – have issues when the rtmedia plugin is enabled – not sure why exactly – but I found that any theme I tried that was based on bootstrap code caused conflicts, and there for I was unable to use – since having media uploads is more important than having a good theme imho.
Maybe that will change if the new mediapress plugin proves to be a good alternative – but I don’t think we will know unless someone codes an import media and stuff from rtmedia to mediapress.
So if I was making a new theme for BP – I would try to test with rtmedia, and some of the other major plugins that most people will be using. I’d make it responsive – but I would get a list of all classes that bootstrap uses and make sure not to use any of the same.
It would be nice to see a new theme that had options to un-enque / deregister calls to repetitive assets – on my current theme I think my theme calls 4 javascripts, 3 css files, adds inline css styles, and then my 6 plugins do the same.. so I end up loading javascripts about a dozen times, and fonts, and about a dozen css files, and a few hundred lines of inline css, and all kinds of extra bloated bs.
Some random thoughts from my recent experiences.
December 12, 2014 at 9:45 am #230504In reply to: [Resolved] Colours of buttons make them unreadable.
@mercime
Participant@laura09 try adding the following to your theme’s stylesheet
#buddypress .comment-reply-link, #buddypress a.button, #buddypress button, #buddypress div.generic-button a, #buddypress input[type=button], #buddypress input[type=reset], #buddypress input[type=submit], #buddypress ul.button-nav li a, a.bp-title-button { color: #000; font-size: 1rem; }if it doesn’t work, please provide a throw-away username and password so we could log in.
-
AuthorSearch Results