I'm the superadmin for a smaller network of multisites for a client. All network sites have the same name so organizing all the sites gets a bit of a cluttered mess:
Changing the titles of each site is not an option (Since of some SEO-optimization and smiliar).
I've only found guides on how to change ALL the dashboard logos to one other (via wp_enqueue_style in functions.php), but nothing when using multisites. Any ideas?
This might be posible to do with CSS.
Try to target each class, or if they all got the same class, you can use :nth-child operator.
.your-class:nth-child(1){
// CSS to change logo
}
.your-class:nth-child(2){
// CSS to change logo
}
.your-class:nth-child(3){
// CSS to change logo
}
Below is some code for inserting css to the admin area. Place this code in the functions.php.
I did a test on a regular site, and it worked, but have not tested it on a multisite like yours.
Hope it works, and good luck :)
function custom_admin_logo() {
echo '
<style type="text/css">
#wpadminbar #wp-admin-bar-wp-logo > .ab-item .ab-icon:before {
background-image: url(' . get_bloginfo('stylesheet_directory') . '/images/your-logo.jpg) !important;
background-position: 0 0;
color:rgba(0, 0, 0, 0);
background-size: cover;
}
#wpadminbar #wp-admin-bar-wp-logo.hover > .ab-item .ab-icon {
background-position: 0 0;
}
</style>
';
}
add_action('wp_before_admin_bar_render', 'custom_admin_logo');
Related
I have a Multisite with a main domain (www.valleysgroup.co.uk) and various sub-domains (brickslipsdirect.valleysgroup.co.uk, tradeporcelain.valleysgroup.co.uk etc).
I am wanting to share a custom top bar containing a menu that is not the primary menu of the main domain, from the main domain across all the sub-domains. This menu will be simple links to each of the sub-domains, but in the form of tabs. Tab 1 will lead to brickslipsdirect.valleysgroup.co.uk, tab 2 will lead to tradeporcelain.valleysgroup.co.uk etc.
I have spent several days trying various solutions, which I then came across the plugin: Multisite Shared Menu
This works great, apart from it will only apply the primary menu from the main domain, and no other menu's. Ideally I would like to create a new menu location named Global Top Bar on the main domain and all subs, create my menu named Global Menu on the main domain, and then pull the menu into all the subs.
I am also unsure how to implement this on the main domain and sub-domains as tabs instead of a general horizontal, dropdown or list menu.
Please see image for clarity on what I am looking for looks-wise across the main domain and the subs:
Any help would be greatly appreciated!
Unfortunately I don't have too much time to spend on this, but hopefully you or someone you know can help flesh this out more.
I've added a bunch of comments that should hopefully explain most things. You just need to plug in the IDs for each site as you find in the Multisite backend. This code will kick out an unordered list with one entry per site, and the current site having a special class. You will probably want to add some additional classes but hopefully this is enough to get you somewhere at least.
// Just the Site IDs from WordPress
$siteIds = [2, 3, 4];
// This will hold <li> tags for each
$menuItems = [];
foreach ($siteIds as $siteId) {
// Get the WordPress WP_Site object
$site = get_site($siteId);
// Sanity check that it was found and public
if (!$site || !$site->public) {
continue;
}
// Optional attributes classes on the <li>, default none
$extraAttributes = '';
// For the current site, add a class
if ($siteId === get_current_blog_id()) {
$extraAttributes = ' class="current-site"';
}
// Append an HTML node
$menuItems[] = sprintf(
'<li %3$s>%1$s</li>',
esc_html($site->blogname),
esc_attr($site->siteurl),
$extraAttributes
);
}
// Make sure the above worked
if ($menuItems) {
// Output wrapped
echo '<ul>' . implode('', $menuItems) . '</ul>';
}
I have now gone ahead and added my new menu location named Global Top Bar using the following in my main domains Child Theme > Functions.php file:
function register_new_menu_location() {
register_nav_menu('global-menu-location',__( 'Global Top Bar' ));
}
add_action( 'init', 'register_new_menu_location' );
I have also created my menu named Global Menu and marked for it to display in the newly made location.
I have then gone into my Child Theme > Header.php file and added the following which seem to work:
switch_to_blog(1);
wp_nav_menu( array(
'menu' => '16',
'container_class' => 'GlobalMenuContainerClass',
'menu_class' => 'GlobalMenuClass'
) );
restore_current_blog();
Menu '16' being my menu's ID found on my main domain. This displays the menu on all sub-domains like this:
I Added some CSS to spice it up a little and make it look more like tabs using the following CSS code:
.GlobalMenuContainerClass {
height: 45px;
padding-top: 8px;
padding-right: 100px;
padding-left: 100px;
width: 100%;
margin-right: auto;
margin-left: auto;
background: #cc2325;
}
.GlobalMenuClass {
list-style: none;
margin: 0;
padding: 0;
}
.GlobalMenuClass li a {
text-decoration: none;
float: left;
margin-right: 5px;
color: white;
border: 1px solid #777777;
padding: 5px 10px 5px 10px;
min-width: 100px;
text-align: center;
display: block;
background: #777777;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
.GlobalMenuClass li a:hover:not(.active) {
background: #4e4e4e;
border: 1px solid #4e4e4e;
}
.active {
background: white;
color: black;
border: 1px solid white;
}
And here is how it now looks:
You can see there is a different hover colour for the tabs of a darker grey, but I have not yet implemented the .active tab CSS yet. Not quite sure how I am going to do this yet.
Hope this can help others in a similar situation.
I’m very new to php coding and I’ve been trying very hard to get this to work.
I’m using wedevs project management plugin with buddy press integration. There dev team doesn’t have the time to customize the plugin for me at the moment so I’m looking for a quick fix. I feel I’m so close but for some reason I’m not getting it to work.
I have a “create project” button that I would like to hide for all group members accept the Group admin. so I would like it to verify if the user is the group admin and show the “create project link”. But if it is just a group member or user, I would like the “create project link” to be hidden. Only group admins should be allowed to create projects… Here is what I have so far. But its not working. Any help or guidance would be greatly appreciated.
<?php if ( BP_Groups_Member::get_is_admin_of( $user_id )) { ?>
<style type="text/css" media="screen">
.cpm-projects nav.cpm-new-project a {visibility:visible; }
</style>
<?php } else { ?>
<style type="text/css" media="screen">
.cpm-projects nav.cpm-new-project a {visibility:hidden; }
</style>
<?php } ?>
Keep in mind that the stylesheet for the plugin has this inside the style sheet.
.cpm-projects nav.cpm-new-project a {
background: transparent url("../images/plus.png") no-repeat scroll 50% 50%;
box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
height: 80px;
width: 80px;
display: block;
border-radius: 3px;
}
For some reason its still showing for all members with this code.
I’ve tried all of these calls and still nothing
if ( BP_Groups_Member::get_is_admin_of( $user_id )) {
if ( ! groups_is_user_admin( $user_id, $group_id ) ) {
if ( groups_is_user_admin( $user_id, $group_id ) ) {
if ( groups_is_user_admin( get_current_user_id(), $group_id ) ) {
Not sure if it fixes your problem, but a cleaner way is to put the CSS code as two separate classes into your custom CSS file. In other words, you hide the button with CSS for all users by default, but then create a class ".can_create_proj" to show the button for the admin.
In your PHP code, you can add the class name to the button if the current user is admin.
<nav class = "cpm-new-project">
<a clas="<?php check_is_admin( $user_id, $group_id ) ? echo "can_create_proj"; ?>">Create Project</a>
</nav>
Maybe using check_is_admin( $user_id, $group_id ) will work. Ref: https://buddypress.org/support/topic/checking-if-member-is-also-a-group-admin/
In you CSS:
nav.cpm-new-project a {
display:block;
}
.can_create_proj {
display:none;
}
I want to add a background picture to a group of pages in wordpress.
I want to add a different background picture to another group of pages
Currently I am applying it to each individual page using PageID as in the code below. As there are over 1000 pages. Is there are a more simple way to apply to each group of pages?
.page-id-264 #header .logo a,
.page-id-272 #header .logo a {
background-image: url("http://www.richcoward.com/newcges/wp-content/uploads/2014/08/NWU-No-Frame.png") !important;
background-size: 100% !important;
background-repeat: no-repeat !important;
height: 86px !important;
width: 416px !important;
}
Thanks for your help
Here is a simple solution.
Create a custom css (say mystyle.css) file in your theme folder. Add
#header .logo a {
background-image: url("http://www.richcoward.com/newcges/wp-content/uploads/2014/08/NWU-No-Frame.png") !important;
background-size: 100% !important;
background-repeat: no-repeat !important;
height: 86px !important;
width: 416px !important;
}
into your mystyle.css. Now, open up your functions.php and enqueue your stylesheet conditionally. Use is_page() or is_page_template() conditional checks. I believe that you are talking about groups of pages, so I would imagine that you use specific page templates for specific groups, so I would tend to go for is_page_template
function enqueue_custom_style() {
if(is_page_template('page-whatever.php')) {
wp_enqueue_style('my-style', get_stylesheet_directory_uri() . '/mystyle.css' );
}
}
add_action('wp_enqueue_scripts', 'enqueue_custom_style', 999);
This should give you an idea
You could use a filter in your functions.php file to add a class to all the relevant pages. You're still going to have to rattle off each Page ID, but I guess doing it in PHP will keep your CSS smaller (and therefore load faster):
// Add specific CSS class by filter
add_filter( 'body_class', 'my_class_names' );
function my_class_names( $classes ) {
// array of Page IDs
$pageids = array(264, 272);
// if
if ( is_page( $pageids ) ) {
// add 'class-name' to the $classes array
$classes[] = 'class-name';
// return the $classes array
return $classes;
}
}
Alternatively, create page templates for each background.
I am trying to add some css to portfolio pages only on my word press site.
An example page is:
http://www.1aproductions.co.uk/portfolio/22/
The css code i am trying to add is:
.header-wrapper {
background-position:top;
background-color:transparent !important;
background-image:url('http://www.1aproductions.co.uk/wp-content/uploads/2014/06/Florence-Nightingale-smaller-no-flo.jpg') !important;
background-size: 100% auto;
}
Which would display a similar effect to the header on this page (if I could only get it to work!)
http://www.1aproductions.co.uk/work/?cat=dramas
Any Help would be greatly appreciated!
Thanks
P
It looks as though portfolio is a custom post type. So try this:
function my_custom_css() {
if ( is_singular( 'portfolio' ) ) {
echo "<style>
.header-wrapper {
background-position:top;
background-color:transparent !important;
background-image:url('http://www.1aproductions.co.uk/wp-content/uploads/2014/06/Florence-Nightingale-smaller-no-flo.jpg') !important;
background-size: 100% auto;
}
</style>";
}
}
add_action( 'wp_head', 'my_custom_css' );
See the classes of body
single single-portfolio postid-22 siteorigin-panels fixed-header no-slider dark-header --- on portfolio
page page-id-7 page-template page-template-template-portfolio-gallery-php siteorigin-panels fixed-header no-slider dark-header --- on categories.
You can add your specific background using that classes.
.single-portfolio .header wrapper{
background: xxx;
}
and
.page-id-7 .header wrapper{
background: yyy;
}
I've got a PHP code block that will assign a heading a different style depending on the main page title. However, my site has multiple sub-menu items for each main page as well. The code currently works in assigning new styles to the main navigation pages but isn't assigning the colour profiles to the sub-page style elements. How can I expand my solution to accommodate any new sub-pages (i.e. a wordpress/php function that gets the sub-pages of the main navigation item).
Here's my code:
if(get_the_title($ID) === "Services") {
echo '<style type="text/css">
.header-page h1 {
background-color: #9B87A9;
}
.header-page h2 {
background-color: #9B87A9;
}
</style>';
}
else if(get_the_title($ID) === "About") {
echo '<style type="text/css">
.header-page h1 {
background-color: #dea949;
}
.header-page h2 {
background-color: #dea949;
}
</style>';
}
So I'm looking for something similar to get_the_title($ID) to accommodate any of Services sub-menu items or About. I want a more automated solution rather than hard code each sub-page title into my if statement.
Instead of adding the css to the page try adding the class to the element.