Tagged: edit, Enfold Latest Portfolio, Widget
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
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