09/09/2013 at 10:58 pm
#268822
Keymaster
@ Jeremy
I would like to apologize for my delay in my reply as I was not receiving my notices for new support forum posts for about a week. Just reply notices to ones that were already started which is why I’m just now noticing.
You could use the category shortcode option. that should do the trick.
As for the image size on the single entry. The only way to change that is to edit the template’s core PHP file. Here’s how:
Open this file:
../wp-content/plugins/excerpt-plus/card-single.php
Change this:
$entry->getImage( array(
'image' => 'photo' ,
'height' => 120 ,
'width' => 100 ,
'fallback' => array(
'type' => 'block' ,
'string' => 'No Photo Available'
)
)
);
To this:
$entry->getImage( array(
'image' => 'photo' ,
'height' => 300,
'width' => 225,
'fallback' => array(
'type' => 'block' ,
'string' => 'No Photo Available'
)
)
);
Hope that helps!
