Billy Long
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] Sliders and featured pages disappearedHey zeycom, Sounds like you are moving in the right direction.
Forum: Themes and Templates
In reply to: [Customizr] Sliders and featured pages disappearedHi zeycom, It looks like the patch code is correct and in the correct place. However, it seems the issue you are describing is a little different than the one the patch is intended to fix. Could you post a link to your site so I can see the problem …
Forum: Themes and Templates
In reply to: [Customizr] Sliders and featured pages disappearedHi zeycom, make sure to create a backup of your parent themes functions.php file before continuing. Then in your parent theme’s functions.php file, scroll all the way to the end of the file and paste the following patch code:
add_filter(‘__is_home’ , ‘home_check_fix’);
function home_check_fix() {
return ( (is_home() && ( ‘posts’ == get_option( ‘show_on_front’ ) || ‘nothing’ == get_option( ‘show_on_front’ ) ) ) || is_front_page() ) ? true : false;
}Note: Make sure to remove the previous copies of the function if they are still there. Keep me posted.
Forum: Themes and Templates
In reply to: [Customizr] Sliders and featured pages disappearedHi Nikeo, I am using your theme as well and just wanted to say thank you! I also experienced the break after upgrading this morning to version 3.0.8. After applying the patch you recommended everything is back to normal. Thanks for a great theme, and great response time to user issues.