Tagged: x
-
AuthorPosts
-
April 20, 2016 at 7:26 pm #892708
whether or not i have hide page title enabled or disabled (i do not have them disabled and the page is saved and the cache is flushed) the page titles do not appear on pages I have edited with cornerstone, like this one, it just has a little title I did in cornerstone:
https://www.advancedbiology.com/money-back-guarantee/
pages that are not edited in cornerstone like a woo page do have them, like this:
https://www.advancedbiology.com/cart/
I’d like the page title to appear on the other pages, what am I doing wrong? Thank you…
April 21, 2016 at 3:41 am #893282Hi there,
Thanks for writing in! Upon checking your site, we see that you have the latest Cornerstone but not the latest X. Please update X first so we can narrow possibilities down. Also keeping both X and Cornerstone up to date fixes most issues.
Let us know how that goes. Hope this helps – thanks!
April 21, 2016 at 3:13 pm #894265This reply has been marked as private.April 22, 2016 at 4:28 am #895045Hello There,
Thank you for the providing the very detailed information. Upon checking on the page, it turns out that you are using a page template Blank – No Container | Header, Footer. Please be advised that these page templates will not display the page title.
– Container | Header, Footer
– Container | Header, No Footer
– No Container | Header, Footer
– No Container | Header, No FooterIf you want to display a page title, please do edit your page and change the page template to something else or use the Layout – Fullwidth page template.
Hope this helps.
April 27, 2016 at 3:33 am #901662Hi there,
it seems that I have the same problem, as a seo-analysis can’t find a page title. I used your demo version of icon 6 an just replaced text and images on my landingpage as well as I added and deleted some sections. My URL is https://rede-reim.de/ Does it mean that I have to change my tmeplate as well into “Layout – Fullwidth page template” (I have the template “Blank – No container,header, footer” at the moment)? But this would mean to have a completely different layout, wouldn’t it? And of course I want to keep my layout as it took me a lot of time to get it like this.
But perhaps I just couldn’t find my seo-title and you can give a little hint where to find. I clicked on snippets and can only find %%sitename etc. But maybe this indicates that the page title is generated automatically? If so – could I add some more keywords to the page title?
Regards,
DoudouxApril 27, 2016 at 12:21 pm #902631Hi there,
Because this requires a template change, I’d advise that you setup a child theme. This allows you to make code changes that won’t be overwritten when an X update is released. After your child theme is setup, please review how we recommend making template changes in Customization Best Practices.
Please copy template-blank-4.php from framework/views/icon and put it in the same path inside child theme, replace existing code with following :
<?php // ============================================================================= // VIEWS/ICON/TEMPLATE-BLANK-4.PHP (No Container | Header, Footer) // ----------------------------------------------------------------------------- // A blank page for creating unique layouts. // ============================================================================= ?> <?php get_header(); ?> <div class="x-main full" role="main"> <?php while ( have_posts() ) : the_post(); ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <div class="entry-wrap"> <<?php x_get_view( 'icon', 'content', 'page' ); ?> </div> </article> <?php endwhile; ?> </div> <?php x_get_view( 'icon', '_template-blank-sidebar' ); ?> <?php get_footer(); ?>
Hope that helps.
April 28, 2016 at 3:12 pm #904652Perfect – resolved for me using Fullwidth page template!
April 29, 2016 at 6:20 am #905485Glad to know. Have a great day! 🙂
-
AuthorPosts