I got this message when I installed a plugin. I’m using the SKT Build Pro theme.
“Your active theme might be missing the call to <?php wp_footer(); ?>
Always have it just before the closing tag of your theme, or you will break many plugins. See wordpress.org.”
Theme came with a woocommerce.php file, but when I try to add in a side bar or follow any of WooCommerce’s published instructions on how to alter default # of product/category columns, nothing works. Please show me how to alter theme to allow for 6 columns as the default and then to also have the default sidebar appear on the woocommerce layout. I’d like to have a cart widget and recent products showing on the right side of the screen while looking at the shop content.
Warning: Cannot modify header information – headers already sent by (output started at /mnt/webe/d2/66/52291766/htdocs/WordPress_03/wp-content/themes/skt-magazine-pro/functions.php:1561) in /mnt/webe/d2/66/52291766/htdocs/WordPress_03/wp-login.php on line 387 Warning: Cannot modify header information – headers already sent by (output started at /mnt/webe/d2/66/52291766/htdocs/WordPress_03/wp-content/themes/skt-magazine-pro/functions.php:1561) in /mnt/webe/d2/66/52291766/htdocs/WordPress_03/wp-login.php on line 400 Warning: Cannot modify header information – headers already sent by (output started at /mnt/webe/d2/66/52291766/htdocs/WordPress_03/wp-content/themes/skt-magazine-pro/functions.php:1561) in /mnt/webe/d2/66/52291766/htdocs/WordPress_03/wp-includes/pluggable.php on line 955 Warning: Cannot modify header information – headers already sent by (output started at /mnt/webe/d2/66/52291766/htdocs/WordPress_03/wp-content/themes/skt-magazine-pro/functions.php:1561) in /mnt/webe/d2/66/52291766/htdocs/WordPress_03/wp-includes/pluggable.php on line 956 Warning: Cannot modify header information – headers already sent by (output started at /mnt/webe/d2/66/52291766/htdocs/WordPress_03/wp-content/themes/skt-magazine-pro/functions.php:1561) in /mnt/webe/d2/66/52291766/htdocs/WordPress_03/wp-includes/pluggable.php on line 957 Warning: Cannot modify header information – headers already sent by (output started at /mnt/webe/d2/66/52291766/htdocs/WordPress_03/wp-content/themes/skt-magazine-pro/functions.php:1561) in /mnt/webe/d2/66/52291766/htdocs/WordPress_03/wp-includes/pluggable.php on line 1228
And i’m unable to login on my website. I have to change the theme inside the database to fet access…
second, when I scroll down from the slider to my Portafolio de Servicios (section 1) it has like a bump where the title Portafolio de Servicios suddenly disappears. http://www.oran-g.co
I’ve already done that – my Twitter feed is currently on the left side of the page, because my Sidebar is on the left (according to the Side Bar Page Template). I want the twitter feed on the right side – so how do I get the sidebar to be on the right, and not on the left? I don’t know how to create a new php template?
It’s ok, I have been able to defer the scripts from loading by adding the following to the end of functions.php:
// Defer Javascripts
// Defer jQuery Parsing using the HTML5 defer property
if (!(is_admin() )) {
function defer_parsing_of_js ( $url ) {
if ( FALSE === strpos( $url, '.js' ) ) return $url;
if ( strpos( $url, 'jquery.js' ) ) return $url;
// return "$url' defer ";
return "$url' defer onload='";
}
add_filter( 'clean_url', 'defer_parsing_of_js', 11, 1 );
}
For anyone else wondering how to prevent the ‘jump’ that happens when the images for the slider load, the following change can also be made in functions.php: