Dear nmakgato,
it seems you are experiencing different issues of different nature, let's try to put some order.
1. You can modify your templates in a way that they can handle layouts if present and normal WordPress loops otherwise. We have template tags in our API to help you do that, you can use in a way similar to this one in your template files:
if ( defined( 'WPDDL_VERSION' ) && is_ddlayout_assigned() ) : // if Layouts Plugin is active and a layout is assigned
get_header( 'layouts' );
the_ddlayout( 'page-default' ); // Loads 'page-default' layout by default
get_footer( 'layouts' );
else: // if not use the normal WP loop
get_header();
if ( have_posts() ) : while ( have_posts() ) : the_post();
toolset_assigned_message('content-template');
the_content();
endwhile; endif; // WP Loop
get_footer();
endif; // IF Layouts are enabled
Basically what this is doing is to check if Layouts plugin is active and if the resource has a layout assigned to it (is_ddlayout_assigned), if not the normal WordPress loop is used, otherwise the layout is used.
4. The information you are providing are not enough to understand the problem:
- the layout in question is associated to a single page or to the entire post type?
- what kind of content are you displaying with this layout (the current page content or other kind of content)?
- are you using a View to grab the data from the database or a content template?
Please give us some more detailed informations and eventually open a specific todo only for this issue, with the code of the template you are using to display the layout attached to it (I understand you're still working on localhost, so we can't access your website to help. am I right?)
2. This is a more general issue not directly related to Layouts plugin or any other Toolset plugin, not sure i can help with this without seeing directly what you are doing.
3. This is the slider we're currently shipping with Layouts plugin, you can try to style it in a different way - it think with some work you should be able to achieve what you want - or you can create a custom cell starting from the slider cell code to create your own slider with your own style - we can help doing that.
Just one request: it's way more easy for us to help solving issues and track eventual bugs if you open one ticket per issue instead of mixing multiple issues in one single ticket, so please open a specific ticket for the slider issue so we can assist in customising the default slider or eventually help create a new one in a custom cell.
Hope all this help, best regards
Riccardo