Support for Whyte | Creative WP Theme

Support for Whyte | Creative WP Theme

By
Cart 192 sales
Well Documented

-KORRA- does not currently provide support for this item.

Popular questions for this item

Missing style sheet error when installing the theme

A common issue that can occur with users new to installing WordPress themes is a "Broken theme and/or stylesheets missing” error message being displayed when trying to upload or activate the theme. This error message does not mean that the theme you have purchased is broken, it simply means it has been uploaded incorrectly. Luckily, there is a very easy fix.

Embedded media is not responsive

This usually happens when Jetpack plugin is installed.
Specifically, Jetpack’s Shortcode Embeds module overrides the Whyte’s functionality for responsive embedded media,
and all the Youtube/Vimeo embeds start rendering out of proportion and size.
Just deactivate this module from the plugin and things will get back to normal.

If the above approach doesn’t help, make sure to use the original URL for embedding media. Don’t use shortcoded or embed-codes. WordPress will automatically convert your link into embedded media when you paste the link in the editor.

For example, when embedding YouTube videos in content, paste the link in this format:

https://www.youtube.com/watch?v=2wsUHhiMpGw

Images not displaying correctly

Upon activating Whyte and migrating from another theme, previously added featured images might take strange aspect-ratios, be unnecessary big or just look out of place.
This is because image thumbnails have not been resized/cropped per Whyte’s presets.

Just install Force Regenerate Thumbnails Plugin, and fire it up from Tools > Force Regenerate Thumbnails. This will regenerate all your ‘pre-Whyte’ featured images, and you’ll be golden.

How to change logo size?

Logo is displayed in the original size.
If you wish to resize it, you can do so with CSS:

.korra-logo img {
  width: 200px;
}

How to change image-size preset?

In your child-theme’s functions.php use the following function:

add_action('after_setup_theme', 'change_image_size', 11);

function change_image_size() {
    remove_image_size('korra-horizontal-l');
    add_image_size('korra-horizontal-l', 780, 520, true);
}

In this example, image-size horizontal-l is changed.
You can find all Whyte’s image-size presets originally defined in main theme’s functions.php file.
If you need more details on customizing the preset, you can check official WordPress documentation.

Disable Whyte’s gallery

If you wish to use a third-party plugin for gallery, it is a great possibility that it uses the native WordPress’ [gallery] shortcode, which Whyte also uses for it’s gallery. This might lead to an error.

To disable the Whyte’s overrides for the gallery, in your child-theme’s functions.php paste this code:

add_action( 'init', 'remove_korra_post_gallery' );

function remove_korra_post_gallery(){
    remove_filter( 'post_gallery', 'korra_post_gallery', 10 );
}

Show more

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey