Thứ Tư, 10 tháng 2, 2021

joomla com_newsfeed load blogspot url change image size


Description: load feed from blogspot.com image reduce 300px, 400px. Need upto 1024px

File edit: com_newsfeeds\views\newsfeed\tmpl\default.php

Line 133:

<?php echo str_replace('&apos;', "'", $text); ?>

Change to:

<?php 

$text = str_replace('/s320/', '/s1024/', $text);

$text = str_replace('/s400/', '/s1024/', $text);

echo str_replace('&apos;', "'", $text); ?>


Image result