The link here leads to a special themed layout for FullCalendar http://jqueryui.com/download/?themeParams=%3Fctl%3Dthemeroller

Is this pretty simple to install or are there special requirements. Where would I place this folder and are there any instructions for enabling this in Drupal?

I'm hardly advanced so I would need How To instructions if it meant adding code to certain pages.

Comments

alltooeasy’s picture

tim.plunkett’s picture

Status: Active » Fixed

Thanks alltooeasy!

alltooeasy’s picture

Also for anyone using Omega Theme, you need to enable that script to be included in the theme settings screen. There is also a patch for Omega 3x that changes a few lines of omega/includes/alpha.inc that will sort issues with including libraries via your theme.info file.

But its surprisingly easy once you get the right config. Also consider installing Jquery update module for D7 as well.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

davewilly’s picture

I needed to use a custom jQuery themeroller theme I had downloaded to use on Date Popup.
I did the following:

  • Download custom theme from jQuery (jquery-ui-1.10.3.custom.zip)
  • Create new directory 'jqueryui' in your theme directory and extract the themeroller custom theme css into it (this resides inside the css directory under the name of your custom theme), so you end up with sites/all/themes/mytheme/jqueryui/flick/..
  • Now override the default ui style in your template.php file
<?php
function mytheme_css_alter(&$css) {
	
	// Override default date_picker styles and use jQuery themeroller
	if(isset($css['sites/all/modules/date/date_popup/themes/datepicker.1.7.css'])) {

		$css['sites/all/modules/date/date_popup/themes/datepicker.1.7.css']['data'] = 
                drupal_get_path('theme', 'mytheme') . '/jqueryui/flick/jquery-ui-1.10.3.custom.min.css';
	}

}
?>