-
AuthorPosts
-
September 29, 2015 at 6:55 pm #510933
Hello,
1 – I saw that a lot of users agree that the next / prev buttons of the portfolio should work the other way around – NEXT should be on the right side. I saw the code you posted to change that but I’ve no child theme. All CSS modifications I’m doing are in the “Simple custom css” plugin and it works well. So if I change the function.php file I will loose the code with the next update. Is there another solution I missed so far ?
2 – Also I can’t find where to change the color of the “next / previous” bg area (the arrows ar ok).
3 – Portfolio grid: if you’re using it as sort of “cross selling tool” down on a page to show the other portfolio items it works great, BUT best would be if the active portfolio item of the page where its included would not show up again – can this be changed ?
4 – Portfolio grid : I activated 6 colums and the pagination option, but Enfold shows 5 colums on 2 lines and no pagination ??
Best, AB
September 30, 2015 at 9:29 am #511220Hey anma!
Thank you for using Enfold.
1.) There is no solution available other than the filter via functions.php file. You can try to trick it using css but you will still have to change the arrows via functions.php:
.avia-post-prev { right: 0; left: auto; border-top-right-radius: 0px; border-bottom-right-radius: 0px; border-top-left-radius: 4px; border-bottom-left-radius: 4px; } .avia-post-next { left: 0; right: auto; border-top-right-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 0px; border-bottom-left-radius: 0px; }
For the arrow icons:
add_action('init', 'avia_replace_default_icon', 10, 1); function avia_replace_default_icon($icons) { global $avia_config; $avia_config['font_icons']['next']['icon'] = 'ue878'; $avia_config['font_icons']['prev']['icon'] = 'ue879'; return $icons; }
2.) Change the background with this:
#top .avia-post-nav { background: red background: red; }
3.) You can try the solution here: https://kriesi.at/support/topic/remove-current-portfolio-post-from-related-portfolio-grid-enfold/#post-491961
4.) The login credentials above are not working. Please check.
Cheers!
Ismael -
AuthorPosts
- You must be logged in to reply to this topic.