Blogs
Where to Find Them
Ignite > Websites > Blog > Sites (in left nav) > All Sites.
(To see all blog sites, be logged into CP under InteractRV. To see only a specific dealer’s blog sites, be logged in under that dealer and impersonate Admin.)
Search for the site you want, hover over the name, click Dashboard > Settings (bottom of left nav) > Interact RV Settings.
Formatting the Blog
Suggestion: make a copy of the code that is already on the blog in case you need to reference it since it's not easy to revert back to previous versions.
- First, copy the Page Head Html for the site from the main node and remove any added scripts. You really only need the links for the fonts, CSS, and favicon.
- Then, replace the blog code with the code below and replace the "Head (Styles, Scripts)" section with what you copied from the Page Head Html.
- Finally, verify that the new blog page styles match the dealer's site.
<div id="headerPlaceholder"></div>
<div id="navPlaceholder"></div>
<div class="container">
<div id="mainContainer" class="row">
<section id="main" class="col-md-9 col-md-push-3">
<div id="pageContent">[ #wp_main ]</div> <!-- Remove space inside square brackets -->
</section>
<aside id="sideBar" class="col-md-3 col-md-pull-9">
<div class="panel panel-default wp-sidebar">
<div class="panel-heading">
<h3 class="panel-title">Blog</h3>
</div>
<div class="panel-body">[ #wp_sidebar ]</div> <!-- Remove space inside square brackets -->
</div>
</aside>
</div>
</div>
<div id ="socialPlaceholder"></div>
<div id="footerPlaceholder"></div>
<script type="text/javascript">
jQuery("#headerPlaceholder").load('/contact-us header');
jQuery("#navPlaceholder").load('/contact-us #main-nav');
jQuery("#rvTypesPlaceholder").load('/contact-us #rv-types');
jQuery("#sidebarPlaceholder").load('/contact-us #sideBar', function() {
jQuery("aside .rv-search-panel").remove();
jQuery("aside").prepend(jQuery(".wp-sidebar"));
jQuery(".wp-sidebar input#s").attr("placeholder", "Search Blog");
});
jQuery("#footerPlaceholder").load('/contact-us footer');
</script>
Blog Bugs
If the links to the individual blogs aren’t working, in Ignite, go to Websites > Blog > Settings > Permalinks. “Post Name” is usually selected. Select a different option and then reselect “Post Name” and save the changes. That should make the blog posts appear.