By n00bster on Friday, 11 September 2015
Posted in General Issues
Replies 5
Likes 0
Views 488
Votes 0
please take a look in the screencast under the site details
The reason that it isn't respecting the settings is because there was a bug in the older version where the category wasn't storing with the correct post options data. To fix this, I simply re-edited the category "Mitglieder Blogs" and ensured that all the settings under "Post Options" are set to inherit.
·
Friday, 11 September 2015 01:33
·
0 Likes
·
0 Votes
·
0 Comments
·
ahh nice, thank you for your help!

i have another question about the quality of the related post cover images, is there a option to use a better quality for the cover images. now the images looks very pixilated. the module "top blogs" have a nice backend option to adjust the images - maybe this option could be also setup for the blog-post related images too.
·
Friday, 11 September 2015 02:22
·
0 Likes
·
0 Votes
·
0 Comments
·
We are actually in a chicken and egg situation right now Some customers are complaining that there are just too many settings while some others like yourself wants more settings. I don't want to add more settings into the component, perhaps we should enforce it to use a large version instead

Temporarily, what you can do is to edit the file /components/com_easyblog/themes/wireframe/blogs/entry/default.php and at line 216 locate the codes below:


<a href="<?php echo $related->getPermalink();?>" class="eb-related-thumb" style="background-image: url('<?php echo $related->getImage('thumbnail');?>');"></a>


Replace it with,


<a href="<?php echo $related->getPermalink();?>" class="eb-related-thumb" style="background-image: url('<?php echo $related->getImage('large');?>');"></a>


If "large" is not good enough for your wide layout, you could use "original" but be aware that this also means that your page loading time will take a longer time to load since the image could be huge?
·
Friday, 11 September 2015 02:27
·
0 Likes
·
0 Votes
·
0 Comments
·
thx for your support mark ... i think i will stay as it is.
·
Friday, 11 September 2015 02:36
·
0 Likes
·
0 Votes
·
0 Comments
·
You are most welcome
·
Friday, 11 September 2015 03:07
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post