Hi there,
When updating to the lastest version of bigfeature, if have some issues with my child theme in use. I have a custom width which is reset.
Is there anything new which I have to consider while using a child theme?
Hi there,
When updating to the lastest version of bigfeature, if have some issues with my child theme in use. I have a custom width which is reset.
Is there anything new which I have to consider while using a child theme?
I'm interested, too.
I did some changes in the latest version concerning the order of stylesheets, but it should be backwards compatible. I probably have to look at it again...
anyway the solution is to remove the style function in functions.php in the child theme (and the add_action call to it (2. line of functions.php)), and add this instead:
function add_stylesheets() { bf_childtheme_css(); }
add_action( 'bf_head', 'add_stylesheets', 1 );
You must log in to post.