Notice

If you are going to submit ticket for our themes support , then make sure we are not providing support for any Porn/Adult related websites.
When You Submit Ticket Please Include Your WordPress & FTP login info with Website URL so When our team will see any error then there was no need to wait for login info, Our Team will fix that ASAP.
We are offering Designing services like LOGO Design and Banner Design etc.

Okay
  Print

Comments error when you are using https??

If your are using SSL on your website and you have problem with post comments , Ajax Error 302.

Then please add this code in your functions.php file.

add_filter('option_siteurl', 'convert_https');
add_filter('option_home', 'convert_https');
function convert_https($text) {
    return str_replace("http://", "https://", $text);
} 

Thanks