-
AuthorPosts
-
April 8, 2020 at 3:40 pm #1201936
Hi,
If possible, I want layout category pages (anda tags) link blog page https://www.anifeurowellness.it/blog/.
It’s possible,
Thanks.
GiuseppeApril 9, 2020 at 6:02 am #1202128Hey gbarbagallo,
Do you have more context? Perhaps a screenshot of what you’re looking to accomplish?
Best regards,
Jordan ShannonApril 9, 2020 at 12:43 pm #1202254This reply has been marked as private.April 12, 2020 at 7:51 pm #1203145Hi gbarbagallo,
Here is the code you can put in your funtions.php
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; }If you need further assistance please let us know.
Best regards,
VictoriaApril 16, 2020 at 10:23 am #1204338This reply has been marked as private.April 20, 2020 at 11:56 am #1205473Hi,
Thank you for the update.
Try to use this snippet instead.
/* Change Blog Archive Style */ 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');This should set the archive pages to display an excerpt instead of the full content.
Best regards,
IsmaelApril 20, 2020 at 6:39 pm #1205539This reply has been marked as private.April 21, 2020 at 3:50 pm #1205833Hi gbarbagallo,
Please make sure you copied it right.
Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?
Best regards,
VictoriaApril 21, 2020 at 3:56 pm #1205838This reply has been marked as private.April 21, 2020 at 4:56 pm #1205877This reply has been marked as private.April 24, 2020 at 9:08 am #1206744Hi,
Sorry for the delay. Did you copy the code from your email? Please try to copy it directly from the forum to avoid conversion of symbols inside the code. Or post the WordPress and FTP account in the private and we’ll try to insert the code in the functions.php file.
Best regards,
Ismael -
AuthorPosts
- The topic ‘Layout category page’ is closed to new replies.
