-
AuthorPosts
-
March 28, 2017 at 5:31 pm #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
March 28, 2017 at 5:59 pm #768341Hey 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 ShannonMarch 28, 2017 at 6:07 pm #768349Hi Jordan
It does not appear to have worked. I did clear my cache, but am still seeing the author on the podcast landing page.
March 28, 2017 at 6:11 pm #768355Hi,
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 ShannonMarch 28, 2017 at 6:14 pm #768358Certainly. 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;
}March 28, 2017 at 6:17 pm #768362Here are your credentials.
March 28, 2017 at 6:30 pm #768371Hi,
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 ShannonMarch 28, 2017 at 6:51 pm #768381I’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.
March 28, 2017 at 6:57 pm #768383I guess turning off the firewall is a much bigger deal. Would you be willing to temporarily share your ip address?
March 28, 2017 at 7:18 pm #768392Hi,
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 ShannonMarch 28, 2017 at 8:40 pm #768425I removed that code, but am still seeing the author.
March 28, 2017 at 8:50 pm #768429Hi,
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 -
AuthorPosts
- You must be logged in to reply to this topic.