Possible code error in functions

Should this say: side-pull-right

global $site_layout;
$site_layout = array(‘side-pull-right’ => esc_html__(‘Right Sidebar’, ‘dazzling’),‘side-pull-left’ => esc_html__(‘Left Sidebar’, ‘dazzling’),‘no-sidebar’ => esc_html__(‘No Sidebar’, ‘dazzling’),‘full-width’ => esc_html__(‘Full Width’, ‘dazzling’));

Oppose to: side-pull-left

global $site_layout;
$site_layout = array(‘side-pull-left’ => esc_html__(‘Right Sidebar’, ‘dazzling’),‘side-pull-left’ => esc_html__(‘Left Sidebar’, ‘dazzling’),‘no-sidebar’ => esc_html__(‘No Sidebar’, ‘dazzling’),‘full-width’ => esc_html__(‘Full Width’, ‘dazzling’));

In Dazzling theme funtions.php

Should this say: side-pull-right

global $site_layout;
$site_layout = array(‘side-pull-right’ => esc_html__(‘Right Sidebar’, ‘dazzling’),’side-pull-left’ => esc_html__(‘Left Sidebar’, ‘dazzling’),’no-sidebar’ => esc_html__(‘No Sidebar’, ‘dazzling’),’full-width’ => esc_html__(‘Full Width’, ‘dazzling’));

Oppose to: side-pull-left

global $site_layout;
$site_layout = array(‘side-pull-left’ => esc_html__(‘Right Sidebar’, ‘dazzling’),’side-pull-left’ => esc_html__(‘Left Sidebar’, ‘dazzling’),’no-sidebar’ => esc_html__(‘No Sidebar’, ‘dazzling’),’full-width’ => esc_html__(‘Full Width’, ‘dazzling’));

In Dazzling theme funtions.php

I’m saying this is because I have the same issue as rustydp.

(rustydp):
Is there any reason why the side bar is appearing below the home page content and not on the side?
it is set to right sidebar in the theme options.

I looked through the files and I came across this in the functions.php. I haven’t tried it yet but I was just wondering if this might be a possible cause to the problem.

Also I have a taxonomy and I would like to know which template to use to display my taxonomy. Typically I would just copy the content of category.php to name_taxonomy.php and I would be rolling but because this theme doesn’t use a category.php I’m baffled as to which template would work. I tried page.php and the tax page was missing all the styles.

Hi @dan12,

I hope you are well today and thanks for posting here.

Should this say: side-pull-right

Oppose to: side-pull-left

It should say that but it’s not mandatory as it’s the array key and it’s not affecting tyhe functionality. I have tested it on my test site and it’s working fine for me using latest version of Dazzling theme.

Is there any reason why the side bar is appearing below the home page content and not on the side? it is set to right sidebar in the theme options.

It’s displaying at the right side on the home page of my test site.

Could you please share the page URL from your site where it’s not displaying correctly so that i can troubleshoot it?

Also I have a taxonomy and I would like to know which template to use to display my taxonomy. Typically I would just copy the content of category.php to name_taxonomy.php and I would be rolling but because this theme doesn’t use a category.php I’m baffled as to which template would work. I tried page.php and the tax page was missing all the styles.

You can use the Dazzling theme file archive.php and modify it.

Best Regards,
Movin