Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #768325

    I’m wondering if you can give me the css code to remove the author from a podcast post on the main podcast landing page? I was able to remove it from individual podcast pages.

    I tried the following when reviewing the support posts, but it didn’t appear to work:
    .blog-author.minor-meta {
    display: none;
    }

    Here is the podcast page: http://www.westminstermpls.org/podcast

    Thank you! Brigitte

    #768341

    Hey Brigitte,

    You want to added the following to quick css:

    span.blog-author.minor-meta{
    display:none!important;
    }
    
    span.text-sep.text-sep-date{
    display:none!important;
    }

    Please let me know if this works.

    Best regards,
    Jordan Shannon

    #768349

    Hi Jordan

    It does not appear to have worked. I did clear my cache, but am still seeing the author on the podcast landing page.

    #768355

    Hi,

    Could you please provide admin info privately here so that I can log in and look into this further? There may be a prior css error preventing it from working.

    Best regards,
    Jordan Shannon

    #768358

    Certainly. In the meantime, here is the code in the Quick CSS field. Please let me know if I should delete/update/edit any of these.

    .logo, .logo a {
    overflow: hidden;
    position: relative;
    display: block;
    height: 100%;
    padding-top: 9px;
    }
    .post-meta-infos, .news-time{
    display: none;
    }
    .sub_menu {
    float: left;
    z-index: 2;
    font-size: 11px;
    line-height: 30px;
    position: relative;
    top: 10px;
    font-size: 12px;
    }
    .av-magazine-hero .av-magazine-content {
    margin-top: 10px;
    color: #ffffff;
    }
    #top .footer_color strong {
    color: #d4d4d2;
    font-family: ‘Libre Baskerville’, ‘Helvetica Neue’, Helvetica, Arial, sans-serif;
    font-size: 14px;
    }
    #tribe-events-content {
    padding: 22px;
    position: relative;
    background: #fff;
    margin-bottom: 4px;
    }
    @media only screen and (max-width: 929px) {
    .flex_column {
    width: 100% !important;
    margin-left: 0 !important;
    }}
    add_filter(‘avf_logo’,’av_change_logo’);
    function av_change_logo($logo)
    {
    if(wp_is_mobile() )
    {
    $logo = “http://www.westminstermpls.org/wp-content/uploads/2016/09/logotext.png”;
    }
    return $logo;
    }
    .av-magazine-time {
    display: none;
    }
    .slide-meta-comments, .slide-meta-del {
    display:none !important;
    }
    span.blog-author.minor-meta{
    display:none!important;
    }
    span.text-sep.text-sep-date{
    display:none!important;
    }

    #768362

    Here are your credentials.

    #768371

    Hi,

    Yea there seems to be some errors in there. I tried to log in, but there seems to be a firewall blocks preventing that page from loading at all. Please see this screenshot.

    Meanwhile, please take the css I provided you and add it to the very top of your current css so it loads first.

    Best regards,
    Jordan Shannon

    #768381

    I’m still seeing the author name, despite moving the code to the top. I can temporarily disable the firewall so you can login. Please give me just a second.

    #768383

    I guess turning off the firewall is a much bigger deal. Would you be willing to temporarily share your ip address?

    #768392

    Hi,

    Can you try removing the following portion of the css and see if it works:

    add_filter(‘avf_logo’,’av_change_logo’);
    function av_change_logo($logo)
    {
    if(wp_is_mobile() )
    {
    $logo = “http://www.westminstermpls.org/wp-content/uploads/2016/09/logotext.png”;
    }
    return $logo;
    }

    Best regards,
    Jordan Shannon

    #768425

    I removed that code, but am still seeing the author.

    #768429

    Hi,

    My ip is dynamic so I can’t send it through that css should work but its tough to tell 100% without being able to pinpoint other mistakes that may exist on the backend. There shouldn’t be functions in the quick css section though so there could be other errors preventing it from working.

    Best regards,
    Jordan Shannon

Viewing 12 posts - 1 through 12 (of 12 total)
  • You must be logged in to reply to this topic.