Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
You can’t do grandchildren, you might want to rename the child theme to something else
but that way i couldn’t get some updated features,right?
i mean -sorry, i’m new in WP- when i use a child theme and the parent is updated, everything is updated except my changes,am i correct? or the update doesnt do any changes at all to my chind theme?
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
but that way i couldn’t get some updated features,right?
Yes that’s right
i mean -sorry, i’m new in WP- when i use a child theme and the parent is updated, everything is updated except my changes,am i correct?
Yes, correct as well
thanx both for your answers.
i have found some links about making something like grandchild but i dont understand..
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
What links are those? As far as I’m aware, you cannot make a grandchild.
want to make some css changings
if it is only CSS changes, i.e. changes to the formatting, and no changes to the templates, then try working with a ‘custom CSS’ plugin https://wordpress.org/plugins/search.php?q=custom+css
i found some in google.
Thank you all
back again.. couldnt make it..
i have made changes to css and php files in both parent and child theme.
the problem is i use multisite and now i see i need to make different changes for each subdomain but every change has effect to all subdomains..
samelis – There’s a way to do that 🙂
Make an MU plugin to call the CSS for everyone. Basically you make a functions.php type file in the mu-plugins folder and have it call your style.css (same folder). You can then make all your edits for everyone there 🙂
thank you Ipstenu, but i’m newbie in css..
is there any code that can add to style.css, and point each subdomain?
for example, “1.example.com color=xxx” and “2.example.com color=zzz” ???
It’s going to have to be done by php. No one has written that plugin yet.
global $blog_id;
if ( $blog_id == 2 ) {
// call your css here
}
so i should add these settings in my style.css, am i correct?
Ipstenu,you really saved me from making 5 databases and start over every single subdomain. I really thank you my friend.