Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1158920
    goalsarecool
    Participant

    In customizer, under content it gives me the ability to turn on full post content on index.

    However, when I do that the spacing between Facebook Advertising Results – AYGC Campaign and The Goals Are Cool Store Is open For Business! on this page https://www.goalsarecool.com/posts/ goes away. The text also gets bold from that part of the page all the way down. When I turn it off, the spacing comes back and the bold text go back to being normal.

    Currently, the full post content on index is off because of the issue detailed above.

    Also, the following code removes the woocommerce product pictures from this post: https://www.goalsarecool.com/the-goals-are-cool-store-is-open-for-business/ How can I get it to only remove the featured image on blog posts?

    
    /* featured image – hide */
    .post .entry-featured{
      display: none;
    }
    

    Can you please assist?

    #1159268
    Rad
    Moderator

    Hi there,

    Thanks for posting in.

    Full post content means it will display the HTML content as well. If the content has malformed content/element then it will affect the other too. Hence, you must place <!–more–> to the area where it will not divide a HTML layout. Would you mind turning it on? I’ll check what element is malformed.

    Please try this,

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

    Thanks!

    #1159272
    goalsarecool
    Participant

    I just turned it on.

    #1159278
    goalsarecool
    Participant

    Also, I entered the code you provided and it didn’t work.

    #1159374
    Darshana
    Moderator

    Hi there,

    You already have the following CSS rule which hides your featured image.

    
    .blog .entry-thumb, .single-post .entry-thumb {
        display: none;
    }
    

    Please clear your cache and test your site. If you’re still having issue with your newly added CSS, please copy all of your custom CSS code into an online tool like CSS Lint (http://csslint.net/) and check for errors. You need to fix errors, in-order to render your CSS properly.

    Thanks!

    #1159376
    goalsarecool
    Participant

    there are no errors

    #1159396
    Darshana
    Moderator

    Hi there,

    In that case, would you mind providing us with login credentials so we can take a closer look? To do this, you can make a post with the following info:

    – Link to your site
    – WordPress Admin username / password
    – FTP credentials

    Don’t forget to select Set as private reply. This ensures your information is only visible to our staff.

    #1159416
    goalsarecool
    Participant

    What could be causing this issue

    
    
    /* Forums – Remove Sidebar */
    .bbpress.forum-archive .x-main {
      float: none;
      width: 100%;
    }
    
    .bbpress.forum-archive .x-sidebar {
      display: none;
    }
    
    /* Mobile – Menu Button Aligned */
    @media only screen and (max-width: 480px) {
    .x-brand img {
    width: 70%;
    position: absolute;
    top: 20px;
    }
    }
    
    /* Who's Online Widget – Avatar Inline Blog */
    #bp_core_whos_online_widget-5 .item-avatar {
        display: inline;
    }
    
    /* Who's Online Widget – Avatar Inline  */
    #bp_core_whos_online_widget-6 .item-avatar {
        display: inline;
    }
    
    /* BuddyPress – Activity Feed Post Button  */
    .buddypress #whats-new-form #whats-new-options {
        display: block !important;
    }
    
    /* Woocommerce – remove shipping from cart  */
    .woocommerce .cart-collaterals .cart_totals > h2,
    .woocommerce .cart-collaterals .cart_totals > table {
        display: none;
    }
    
    /* Podcast sidebar – remove sidebar on single post  */
    .single-podcast .x-main {
        width: 100%;
    }
    
    .single-podcast .x-sidebar.right {
        display: none;
    }
    
    /* Posts – remove tags  */
    .blog footer.entry-footer.cf {
    display: none;
    }
    
    /* Primary sidebar – community optin  */
    #text-12 {
    background-color:#ffffff;
    border:2px solid #dddddd;
    padding:5% 10%;
    overflow:hidden
    }
    
    /* Forum Comments Box – added border for topic  */
    #wp-bbp_topic_content-editor-container {
        border: 1px solid #ddd;
        border-radius: 4px;
        box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    }
    
    /* Forum Comments Box – added border for reply  */
    #wp-bbp_reply_content-editor-container {
        border: 1px solid #ddd;
        border-radius: 4px;
        box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    }
    
    /* Forums – forum title color  */
    .bbp-forum-title {
    font-weight: 500;
    color: #3254a5;
    }
    
    .bbp-forum-title:hover {
    color: rgba(0,0,0,0.75);
    }
    
    /* Forums – topic title color  */
    .bbp-topic-permalink {
    font-weight: 500;
    color: #3254a5;
    }
    
    .bbp-topic-permalink:hover{
    color: rgba(0,0,0,0.75);
    }
    
    /* Forums – author name color  */
    .bbp-author-name {
    color: rgba(0,0,0,0.75);
    }
    
    .bbp-author-name:hover {
    color: #3254a5;
    }
    
    /* Forums – color for sticky and super sticky  */
    .bbp-topics-front ul.super-sticky,
    .bbp-topics ul.super-sticky,
    .bbp-topics ul.sticky,
    .bbp-forum-content ul.sticky {
     background-color: #ffffe0 !important;
     font-size: 1.1em;
    }
    
    /* Blog sidebar – remove sidebar on single post  */
    .single-post .x-main {
        width: 100%;
    }
    
    .single-post .x-sidebar.right {
        display: none;
    }
    
    /* Footer – background color */
    .x-colophon.top {
      background: #3254a5;
    	box-shadow: none;
    }
    
    .x-colophon.bottom {
    background: #ffffff;
    }
    
    /* overlay – Community Coaching + Footer */
    #overlay    {  background:#000000;
                   text-align:left;
                   padding:30px 40px 10px 40px;
                   opacity:0.9;
                   -webkit-transition: opacity .25s ease;}
    
    #overlay:hover {
      background:rgba(50,84,165,1)!important;
                   opacity:0.9;}
    
    #comcoaching-btn:hover{
      background-color: #fff;
      color: #000000;
      font-weight: bold;
    }
    
    /* Featured Image – remove */
    .blog .entry-thumb,
    .single-post .entry-thumb {
       display: none;
    }
    
    /* Posts – center */
    .single-post .entry-header {
        text-align: center;
    }
    
    .single-post .entry-wrap {
        padding: 40px;
    }
    
    .post .entry-header {
      text-align: center;
      font-size: 18px;
    }
    
    /* Posts title – font weight */
    .post .entry-title{
      font-weight: 700
    }
    
    .entry-wrap{
      box-shadow: none;
      padding: 0px;
    }
    
    .single-post .entry-wrap{
      padding: 0px;
    }
    
    .single-post .footer.entry-footer.cf {
    display: none;
    }
    
    .single-post .entry-featured{
      display: none;
    }
    
    .has-post-thumbnail .entry-featured{
      border-bottom: none;
    }
    
    .single .x-main {
      width: 100% !important;
    }
    
    .masthead + .x-container.max {
    	max-width: 700px;
    }
    
    .single .x-sidebar {
      display: none !important;
    }
    
    .blog .x-sidebar{
      display:none !important;
    }
    
    .blog .x-main {
      width: 100% !important;
    }
    
    #1159439
    goalsarecool
    Participant

    Here is what rad said earlier but i never heard back

    
    Full post content means it will display the HTML content as well. If the content has malformed content/element then it will affect the other too. Hence, you must place <!–more–> to the area where it will not divide a HTML layout. Would you mind turning it on? I’ll check what element is malformed.
    

    Can you please take a look and let me know what element it might be?

    #1159448
    Rad
    Moderator

    Hi there,

    I replied to your other thread. Please make sure the same issue is limited to one thread only 🙂

    Thanks!

    #1159460
    goalsarecool
    Participant

    Can you please reply here. I don’t know what your referring to.

    #1159473
    Rad
    Moderator

    Hi there,

    Please refer to this thread https://community.theme.co/forums/topic/posts-5/

    Thanks!

    #1160600
    goalsarecool
    Participant

    I tried using <!–more–> on the most recent post here https://www.goalsarecool.com/posts and it’s not working. Can you please assist?

    #1160601
    goalsarecool
    Participant

    When I say it’s not working I mean it’s not hiding the text below <!–more–> its showing the entire post.

    #1160849
    Rad
    Moderator

    Hi there,

    I can’t tell what’s going on yet. Would you mind providing us with login credentials so we can take a closer look? To do this, you can make a post with the following info:

    – Link to your site
    – WordPress Admin username / password
    – FTP credentials

    Don’t forget to select Set as private reply. This ensures your information is only visible to our staff.

    Thanks!

  • <script> jQuery(function($){ $("#no-reply-1158920 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>