-
AuthorPosts
-
July 25, 2016 at 11:29 pm #664935
Hi,
Why is my blog category pages not displaying properly?
Eg-
http://1c5.964.myftpupload.com/category/bcal-hs/
http://1c5.964.myftpupload.com/category/bcal-ms/
http://1c5.964.myftpupload.com/category/new-utrecht-hs/
http://1c5.964.myftpupload.com/category/paul-robeson-hs/The layout/formatting is all over the place unlike your demo:
http://kriesi.at/themes/enfold/category/science/Ideally, I would like for my category blog pages to have a consistent look/layout like the blog grid main page http://1c5.964.myftpupload.com/blog/ or at least your demo page http://kriesi.at/themes/enfold/category/science/
Thanks
July 26, 2016 at 12:57 am #665001Hey!
Try adding this code to the Quick CSS:
.archive .big-preview.custom { padding-left: 0; }
Cheers!
JosueJuly 26, 2016 at 2:11 am #665076sorry that did not work
July 26, 2016 at 4:43 pm #665393Hey!
Your featured images do not show up on category pages. Do you mind creating a temporary admin login and posting it here privately?
Cheers!
YigitJuly 26, 2016 at 4:46 pm #665397sure
here it isthanks as always
July 28, 2016 at 1:29 pm #666198Hi,
I added following code to Functions.php file of your child theme in Appearance > Editor
add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); function avia_change_category_blog_layout($layout, $context){ if($context == 'archive') $layout = 'single-big'; return $layout; }
Please review your website now
Best regards,
YigitJuly 28, 2016 at 3:28 pm #666285Thank you so much!
One other question,
how do I control how much summary copy is shown on that page?Example on this page – http://1c5.964.myftpupload.com/category/new-utrecht-hs/
it is showing paragraphs of summary copy but on your demo just 3 lines with a read more button – http://kriesi.at/themes/enfold/category/science/July 30, 2016 at 5:30 pm #666840Hi,
Check it now, i added this to your child theme functions.php:
function change_blog_archive_style() { global $avia_config; if(!is_single()){ $avia_config['blog_content'] = "excerpt_read_more"; } } add_action('get_header', 'change_blog_archive_style');
Best regards,
JosueAugust 1, 2016 at 3:19 pm #667313thank you so much
just curious, is there any other way to layout this page – http://1c5.964.myftpupload.com/category/bcal-hs/
maybe like this?
August 5, 2016 at 4:48 am #668810Hi,
Set Grid Layout to the Blog in Blog settings.
Best regards,
JosueAugust 5, 2016 at 3:56 pm #669020I did that but it it still showing up like this
http://1c5.964.myftpupload.com/category/new-utrecht-hs/August 10, 2016 at 12:20 pm #670809Hi,
I changed the code to following one
add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); function avia_change_category_blog_layout($layout, $context){ if($context == 'archive') $layout = 'blog-grid'; return $layout; }
Please review your website now
Best regards,
YigitAugust 10, 2016 at 4:01 pm #670892You are amazing. While file did you change. I dont want to loose this change when I update my theme.
August 10, 2016 at 4:07 pm #670897Hi!
Changes are made in Functions.php file that you can access in Appearance > Editor
Best regards,
YigitAugust 12, 2016 at 3:31 pm #671855amazing
thanks as always
-
AuthorPosts
- The topic ‘Blog Category Landing Page Displaying Incorrectly’ is closed to new replies.