topdollardeal
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] Transparent menu over sliderIt worked, you guys are amazing. Thank you!
Forum: Themes and Templates
In reply to: [Customizr] Transparent menu over sliderHi Bojan, doing great, thanks for your help and super-fast response! Your code works great, I was wondering if it’s possible to also make the menu block full-width? Thanks again!
Forum: Themes and Templates
In reply to: [Customizr] Theme Customizer Doesn't Work in Child ThemeI couldn’t find an issue, reinstalled customizr-child. Thank you
Forum: Themes and Templates
In reply to: [Customizr] Master Slider on homepage of Customizr onlyOk, so I left the shortcode posted on my main page, thus the second slider. Removing the shortcode fixed the problem. How embarrassing =)
Thanks a bunch for your help!Forum: Themes and Templates
In reply to: [Customizr] Master Slider on homepage of Customizr onlyThank you very much for your help! I now have two sliders though. I used this code for functions.php:
`add_action( ‘__after_header’ , ‘print_master_slider’, 1 );
function print_master_slider(){
$page_slider = array(
//page_post_id => masterslider id;
‘home’ => 1,
);
$master_slider_id = tc__f(‘__is_home’) && array_key_exists(‘home’, $page_slider) ? $page_slider[‘home’] : ”;
$master_slider_id = ( ! $master_slider_id && is_page() && array_key_exists(get_queried_object_id(), $page_slider ) ) ? $page_slider[get_queried_object_id()] : $master_slider_id;if ( ! $master_slider_id )
return;
echo do_shortcode(‘[masterslider id=”‘.$master_slider_id.'”]’);
}Am I doing something wrong? My website: topdollardeal.com
Forum: Themes and Templates
In reply to: [Customizr] Master Slider on homepage of Customizr onlyHi,
I have the same problem, except that I need only one slider, after header. Could you please help me modify the above code to have only one slider displaying. My slider id is 1. Thanks in advance!