Hi Elliott,
In the doc it says to look for and action this:
Open up /wp-content/themes/[your_theme]/framework.php and around line 175 you should see this,
add_action( 'mysite_body_end', 'mysite_awake_scripts' );
On the next line add this,
remove_action( 'jigoshop_before_main_content', 'jigoshop_output_content_wrapper', 10 );
remove_action( 'jigoshop_after_main_content', 'jigoshop_output_content_wrapper_end', 10);
add_action( 'jigoshop_after_main_content', 'mytheme_close_jigoshop_content_wrappers', 10 );
In the PHP doc add_action( 'mysite_body_end', 'mysite_awake_scripts' ); is not there.
Only this is:
add_action( 'mysite_body_end', 'mysite_print_cufon' );
add_action( 'mysite_body_end', 'mysite_image_preloading' );
add_action( 'mysite_body_end', 'mysite_custom_javascript' );
add_action( 'mysite_body_end', 'mysite_infocus_menu_script' );
Should I still add under these what you suggest?
Many thanks, Peter