-
Daniel Kohn posted an update 5 years ago
@jreeve Hi Jonathan,
We’re trying C-Box for a college community network, and really like the MLA theme with the folding menu on the left. Is that theme still being maintained and how can I try it out? -
Scott Voth replied to the topic The new MLA Commons in the forum CBOX Pioneers 10 years, 3 months ago
@jreeve – The new theme looks great! I have updated the showcase page and slider with new images and new link. Cheers!
-
Ray replied to the topic reloading child theme causes errors with loading infinity functions in the forum Help & Support 10 years, 3 months ago
@jreeve – Took a look at the MLA theme on Github and it appears the style.css is missing the header info letting WordPress know that the theme is a child of
cbox-theme
.Read the “Creating A Child Theme” section in this guide:
https://commonsinabox.org/documentation/themes/developer-guideI’m guessing that when you’re using SASS to generate your…[Read more]
-
Iurie Malai replied to the topic The new MLA Commons in the forum CBOX Pioneers 10 years, 3 months ago
I wanted to test the CBOX-MLA theme but I got this error:
Fatal error: Call to undefined function infinity_get_header() in /my_home_path/public_html/wp-content/themes/cbox-mla/templates/homepage-template.php on line 11
Does anyone know why this is happening? Commons-in-a-Box theme is active and updated.
-
Christian Wach replied to the topic Using LESS with a CBOX child theme? in the forum Help & Support 10 years, 4 months ago
@jreeve Sounds like the comment is a bit misleading. I have got LESS working here, but not without a bit of jiggery-pokery.
Grepping the cbox-theme code for ‘lessc’ and ‘ICE_Less’ will show you how and where the theme engine tries to parse LESS files. However, before you can work with LESS, there’s a bug in the theme engine that needs fixing.…[Read more]
-
Christian Wach replied to the topic What's the best way to install a new font in a CBOX child theme? in the forum Help & Support 10 years, 6 months ago
@jreeve This is what I do:
/**
* Enqueue Custom CSS in CBOX child theme
*/
function my_cbox_enqueue_styles() {// load our custom CSS
wp_enqueue_style(
'my_child_styles',
get_stylesheet_directory_uri() . '/assets/css/my-child-styles.css',
array( '@:dynamic' ),
0.1, // version
'all' // media
);// if we've got the homepage…[Read more]
-
Christian Wach replied to the topic What's the best way to install a new font in a CBOX child theme? in the forum Help & Support 10 years, 6 months ago
@jreeve I posted a workaround here:
https://commonsinabox.org/groups/help-support/forum/topic/submenu-icons-iconsweets/#post-3097And there’s an open ticket here:
https://github.com/cuny-academic-commons/cbox-theme/issues/159I tend to have locahost, dev and live installs for most projects and often used to get caught out by this. In the absence…[Read more]