This topic has 17 replies, 3 voices, and was last updated 6 years by Radu.

  • Author
  • #205965
     timjnunn
    Participant

    I am attempting to redesign the site without sidebar columns and found a problem with the single page layout in single column. I have attached two screengrabs and you will see that in the single column version the formatting is broken and the meta data missing. The formatting is restored by adding the sidebar column.

    I have an unresolved issue with formatting of the sidebar but decided to move on to another general format without it.

    #205966
     timjnunn
    Participant

    [attachment file=205967]

    [attachment file=205968]

    Attachments:
    You must be logged in to view attached files.
    #205991
     Kieran_SQ
    Moderator

    Hi,

    Can you share admin credentials for your site so I can look into this further for you please. Currently both posts are using the sidebar and therefore I cannot see the issue at hand.

    Thanks,

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    #206029
     timjnunn
    Participant
    This reply has been set as private.
    #206042
     Kieran_SQ
    Moderator

    Hi,

    I have checked your site and it does seem there is an issue with post meta / content when setting full width for post content and using WP Bakery. Someone from the dev team will be in touch with you as soon as they can, Monday to Friday, East European Time.

    Thank you for your patience,

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    #206232
     Radu
    Moderator

    Hi,

    Check in wp-admin -> theme options -> blog -> meta settings

    If it not works, check if you switch child theme to parent if it works, most sure this it’s the cause.

    —–

    I had tested and i cannot replicate that issue,see the next a post with fullwidth

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #206249
     timjnunn
    Participant

    I’m surprised you can not see this for yourself. I have done it again myself. Attached are screengrabs of two Single Page Post with the wp-admin -> theme options -> blog -> single page layout set to ‘Full Width’. I will send two more screengrabs of how they look with Single Page Post Layout set to right sidebar.

    I have tried changing the theme but so many settings are missing from the Child theme that it is not a real comparison.

    You have highlighted ‘Display Post Meta on Archive Listing’ to be ‘Yes’. I’ve tried that and it makes no difference. And I don’t want the meta on the archive listing pages. ‘Display Post Meta on Single Post Page’ has always been ‘Yes’.

    Attachments:
    You must be logged in to view attached files.
    #206254
     timjnunn
    Participant

    These are the same posts as above but with Single Post Page Layout to ‘Right Sidebar’.

    My aim is to a single column, full width, Single Post Page with no sidebar and the formatting undisturbed.

    Attachments:
    You must be logged in to view attached files.
    #206282
     Radu
    Moderator

    Hi,

    I see, at this moment using visual composer in posts, having fill width it’s not possible because it may break the layout.

    At this moment you can use this css workaround

    COPY CODE
    
    .single .container-full .with-meta .article-content, .posts-listing.standard-listing.with-meta .article-content {
        display:none !important;
    }
    

    Will hide that and the layout will no more breaked.

    We will take this into consideration i will speak with the core developer to find a solution for this.

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #206288
     timjnunn
    Participant

    Ok.
    I have put in the code and get this:

    [attachment file=206289]

    Attachments:
    You must be logged in to view attached files.
    #206365
     Radu
    Moderator

    Hi,

    Replace with this for right sidebar in page and hide the article meta while single posts in visual composer

    COPY CODE
    
    .single-post.wpb-js-composer .tpl-right .article-meta {display: none;}
    

    Use this one for fullwidth page and hide the article meta. while single posts in visual composer

    COPY CODE
    
    .single-post.wpb-js-composer .tpl-no .article-meta {display: none;}
    

    Use this one for left sidebar page and hide the article meta. while single posts in visual composer

    COPY CODE
    
    .single-post.wpb-js-composer .tpl-left .article-meta {display: none;}
    

    You can use all rules if you want in all both 3 cases to be hidden

    The css will be added to wp-admin -> theme options -> General settings -> Quick CSS

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #206391
     timjnunn
    Participant

    I want the article meta displayed, NOT hidden.

    #206469
     timjnunn
    Participant

    I have tried swapping the display ‘none’with other commands that the Customise Additional CSS provides but I can’t get anything to work.

    #206470
     Radu
    Moderator

    Hi,

    I see, tried to make a workaround for your need there and at this moment more than showing the date before all content in the same line as first paragraph cannot done.

    Use this css instead the previous one to can test

    COPY CODE
    
    .single-post.wpb-js-composer .tpl-no .article-meta {
        display: block !important;
        z-index: 999 !important;
        position: absolute;
        margin-left: 65px;
    }
    .single-post.wpb-js-composer .tpl-right .article-meta {display: none;} 
    
    .single-post.wpb-js-composer .tpl-left .article-meta {display: none;} 
    
    

    If it’s not ok, will add this to the improvement list and in future this will be fixed.

    By default we are not using VC in posts.

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #206473
     timjnunn
    Participant

    That code is giving me this:

    [attachment file=206474]

    Attachments:
    You must be logged in to view attached files.
    #206576
     Radu
    Moderator

    Hi,

    Replace css with this one

    COPY CODE
    
    .single-post.wpb-js-composer .tpl-no .article-meta {
        position:absolute;
    }
    .single-post.wpb-js-composer .tpl-no .article-content {
        margin-left:100px;
    }
    

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #206947
     timjnunn
    Participant

    Well done! Done it.

    Thank you.

    #207195
     Radu
    Moderator

    Hi,
    No problem
    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
Viewing 18 posts - 1 through 18 (of 18 total)

The forum ‘Bugs & Issues’ is closed to new topics and replies.

Log in with your credentials

Forgot your details?