When using widget : propulsion latest portfolio, how can you remove date and time?
Thx
When using widget : propulsion latest portfolio, how can you remove date and time?
Thx
Also, can I control those hyper links under this widget?
Hi!
You can hide the date with following css code:
.news-headline {
display: none;
}
You can change the link color with following code:
.news-content a.news-link{
color: #333;
}
Regards,
Peter
Is there a way to control where the links direct too? Currently each portfolio image goes to a larger single page image, if possible I'd like to tell each portfolio image where to link.
Thx
Hi,
It's not possible to assign links manually to the Latest Portfolio links, they will all link to their respective portfolio page. You can, however link all of them to something else (one link for all) if you'd like - just not individually.
Cheers,
Chris
That woul be great, how could I go about doing that?
How would i make them all have same link?
Even this is not easily possible because the portfolio items class just extends the latest post class and you can't modify it without affecting the latest post widget. If you're familiar with php you can duplicate & rewrite the latest post class. Basically you need to change following line in propulsion\framework\php\class-framework-widgets.php
echo "<a class='news-link' title='".get_the_title()."' href='".get_permalink()."'>";
with:
echo "<a class='news-link' title='".get_the_title()."' href='http://mylink'>";
Instead of http://mylink insert your url.
This topic has been closed to new replies.