Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #774950

    adventureclubsadmin
    Participant

    Hi Themeco,

    My blog does not look as awesome as the one I see here: http://theme.co/x/demo/integrity/1/blog/

    I am wondering if you can help me with my configurations or point me to where I can learn how to configure it?

    A couple challenges right off:

    Cornerstone doesn’t work for the blog page right? I tried to edit in Cornerstone but no luck.

    There is no header for the Blog main page or any individual blog pages. Actually there isn’t a header on any of the website pages, but I want there to be. I tried to change it in customize but it didn’t reflect any changes. There was headers originally, but when I uploaded a picture, the header disappeared.

    There are no images on the blog page- I have a feature image on each one, but nothing comes through. Instead the feature image title appears, which I don’t want. I want the featured image to appear without the image title.

    There is no excerpt with a read more link. How do I get that?

    How do I get tags to appear below each post as well?

    I know these are basic questions, but your help would be very appreciated.

    #774951

    adventureclubsadmin
    Participant
    This reply has been marked as private.
    #774959

    adventureclubsadmin
    Participant
    This reply has been marked as private.
    #775496

    Paul R
    Moderator

    Hi,

    Thanks for writing in!

    You need to choose integrity stack to achieve similar look.

    Please update cornerstone and see if that resolves the excerpt issue.

    http://screencast.com/t/4n0QBy4dW

    Thanks

    #786201

    adventureclubsadmin
    Participant

    So I updated the theme and cornerstone, but the excerpt isn’t fixed.

    I can use the integrity stack for the blog without changing the entire stack for the website to integrity right or not? If so, how do I do that because when I click appearance/customize/blog/ I don’t see that option. I only see it when I clock appearance/stack/ but I want to keep the site looking like Icon.

    Also, how do I get ride of the feature image text from appearing on the general blog page or the individual blog page? I searched the forums and found thi solution in the custom css, but it removes the title and date published as well, which isn’t ideal:

    .single .entry-featured, .single .entry-header {
    display: none;

    #786674

    Christopher
    Moderator

    Hi there,

    Thanks for writing in!

    Upon checking your site, I see following error is preventing from displaying the featured image :

    Mixed Content: The page at 'https://www.adventureclubs.com/blog/' was loaded over HTTPS, but requested an insecure image 'http://www.adventureclubs.com/wp-content/uploads/2016/01/The-Community-1216x687.jpg'. This request has been blocked; the content must be served over HTTPS.

    Please check wordpress and site URLs under Settings -> General.

    In regards with excerpt issue, since you’re using cornerstone and shortcodes couldn’t be part of excerpt, you should add manual excerpt to your posts.

    By default Icon stack doesn’t have ‘blog options’ like Integrity. To add title to icon’s blog page, add the following code in Customize -> Custom -> JavaScript :

    jQuery(".blog .x-container.offset-bottom").prepend("<header class='x-header-landmark x-container max width'><h1 class='h-landmark' style='text-align:center;'><span>Le Blog</span></h1><p class='p-landmark-sub' style='text-align:center;'><span>Welcome to our little corner of the Internet. Kick your feet up and stay a while.</span></p></header>");

    You’re using Icon stack you can’t achieve Integrity blog layout without switching the stack. Mixing stacks could be possible with custom development but regretfully it would be outside the scope of our support.

    You can add blog title under Customize -> Integrity -> Blog options.

    To hide featured image on posts pages, please add this code :

    .single-post .entry-featured{
    display:none;
    }

    Hope that helps.

    #794399

    adventureclubsadmin
    Participant
    This reply has been marked as private.
    #794982

    Christopher
    Moderator

    Hi there,

    #1 Since this option is not available in Icon stack, I provided you with custom JS code in previous replay to add title.

    If you want to display blog title and subtitle in post pages as well, please update previous JS to :

    jQuery(".blog .x-container.offset-bottom,.single-post .entry-wrap").prepend("<header class='x-header-landmark x-container max width'><h1 class='h-landmark' style='text-align:center;'><span>Le Blog</span></h1><p class='p-landmark-sub' style='text-align:center;'><span>Welcome to our little corner of the Internet. Kick your feet up and stay a while.</span></p></header>");

    #2 To add manual excerpt, enable ‘excerpt’ option from screen options on top right of post page. Scroll down and add content in excerpt box. See the attachment.

    Hope it helps.