Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #319480

    • magazine version of the blog on the home page, is there a way we can show first few words of the story

    • in the blog page, is there a way we can show 3 lines of the story instead of only one?

    • for some reason only home page and “about” show the red underline when you go to the page. the rest stay blank
    P.S. i have few custom CSS maybe one of them is conflicting with the menu underline
    ————————————————————————
    img.avia-builder-el-1 { margin-top: -51px!important; width: 1210px; }

    #footer {
    padding: 0; }

    .wpcf7 input[type=text] {
    width:180px;
    margin-bottom:5px;
    font-size:11px;
    }

    .wpcf7 textarea {
    height:40px;
    margin-bottom:5px;
    font-size:11px;
    }

    #top #wrap_all .av-social-link-linkedin a {
    color: #fff;
    background-color: #419cca;
    }
    #top #wrap_all .av-social-link-twitter a {
    color: #fff;
    background-color: #737272;
    }
    #top #wrap_all .av-social-link-instagram a {
    color: #fff;
    background-color: #737272;
    }
    #top #wrap_all .av-social-link-gplus a {
    color: #fff;
    background-color: #737272;
    }
    #top #wrap_all .av-social-link-facebook a {
    color: #fff;
    background-color: #737272;
    }
    #top #wrap_all .av-social-link-vimeo a {
    color: #fff;
    background-color: #737272;
    }
    #top #wrap_all .av-social-link-soundcloud a {
    color: #fff;
    background-color: #737272;
    }
    #top .social_bookmarks li a { width: 30px; line-height: 30px; min-height: 30px; }
    #top .social_bookmarks li { width: 40px; }

    .html_header_top.html_bottom_nav_header .main_menu>div, .html_header_top.html_bottom_nav_header .main_menu ul:first-child {
    width: auto;
    float: right;
    }

    .avia-menu .menu li a{
    border: 0 !important;
    }

    #header_main {
    border-bottom: none;
    }

    .logo {
    top: 16px;
    }
    .header-scrolled .logo{
    top: 0;
    }

    .tab.widget_tab_comments.tab_counter_2 {
    display: none !important;
    }

    .av-magazine-thumbnail {
    display: none;
    }

    a.slide-image {
    display: none !important;
    }
    ————————————————————————

    #319623

    Hey Moeitani!

    Thank you for using Enfold.

    1.) Please refer to this link on how to add excerpt on magazine list: https://kriesi.at/support/topic/show-excerpt-in-all-magazine-blog-list-2/

    2.) Add this on functions.php to increase the number of characters for the blog grid summary:

    add_filter('avf_postgrid_excerpt_length','avia_change_postgrid_excerpt_length', 10, 1);
    function avia_change_postgrid_excerpt_length($length)
    {
       $length = 300;
       return $length;
    }

    3.) I noticed that all the other menus are dropdowns. Make sure that the top menu are parent page of the pages on the sub menus.

    Best regards,
    Ismael

    #319759

    Hello everybody – just a quick question – do I have to make a child theme, If I want to alter the perex lenght – as seen on part 2) by Ismael?

    Thx and have a nice day :)
    Mathy

    #319763

    Hey Mathy!

    No you do not have to. But if you update the theme, you are going to lose that code and you are going to need to re-add it to functions.php file if you are not using a child theme :)

    Cheers!
    Yigit

    #319837

    Damn, so let’s google how to make a child theme :D.

    Thanx :)

    #319838

    Hey!

    Please see – http://kriesi.at/documentation/enfold/using-a-child-theme/ :)

    Regards,
    Yigit

    #319859

    On it… Your support’s just awesome :).

    #319861

    Hi!

    Thank you for your kind words :)
    We will keep this thread open for OP, if you have any other questions or issues, feel free to start a new topic

    Best regards,
    Yigit

    #329879

    Hey Guys, thank you for the amazing support.. all works perfectly.. just a quick one i hope you can help me with.. in the homepage magazine is there a way i can display 3 lines of the story preview instead on only one. please check jpg.. again thank you very much for a superb support

    #329960

    You mean you want to have a longer perex? If so, you have to have a child theme of the enfold, where you’ll create you own functions.php file. There you should post this:

    add_filter('avf_postgrid_excerpt_length','avia_change_postgrid_excerpt_length', 10, 1);
    function avia_change_postgrid_excerpt_length($length)
    {
       $length = NUMBER-OF-CHARACTERS;
       return $length;
    }

    And by the NUMBER-OF-CHARACTERS you set how long the perex (excerpt in Wordpreshis) should be

    #330761

    Hey!

    Please add following code to Functions.php file in Appearance > Editor

    add_filter('avf_magazine_excerpt_length','avf_magazine_excerpt_new_lenght', 10, 1);
    function avf_magazine_excerpt_new_lenght($excerpt) {
    $excerpt = 100;
    return $excerpt;
    }

    and adjust 100 as needed

    Cheers!
    Yigit

    #331018

    with such great support, how can i buy any other theme.. thank you Yigit, you’re a star

    #331042

    Hi!

    Thank you for your kind words, glad we could help :)
    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    Best regards,
    Yigit

Viewing 13 posts - 1 through 13 (of 13 total)
  • The topic ‘3 small issues’ is closed to new replies.