Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #439885

    Hi
    I’d like to edit the ‘Enfold Latest Portfolio’ widget to include all portfolio items (the current limit is 20 items) and also to remove the entry date, which appears below the title. I assume I need to edit the php file?
    Thanks

    #440501

    Hey danfarberoff!

    Add this to your custom CSS.

    .widget .news-time { display: none !important; }
    

    Next try changing line 442 in the /endold/framework/php/class-framework-widgets.php file from this.

    $count = empty($instance['count']) ? '' : $instance['count'];
    

    To this.

    $count = -1;
    

    Cheers!
    Elliott

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.