Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
- Fixed an issue to account for when there is no description in the feed
- Added the tag {$form_acf_rss} which you can place on your userpanel edit form if you not use the automatic placement
$TMPL['rss_link'] = isset($item['link']) ? $item['link'] : '';
$TMPL['rss_title'] = isset($item['title']) ? $item['title'] : '';
$TMPL['rss_title'] = htmlspecialchars_decode($TMPL['rss_title']);
$TMPL['rss_desc'] = isset($item['description']) ? $item['description'] : '';
$TMPL['rss_desc'] = htmlspecialchars_decode($TMPL['rss_desc']);
$item = array_map(function($value) {
return htmlspecialchars(strip_tags($value), ENT_QUOTES, "UTF-8");
}, $item);
$item = array_map(function($value) {
return htmlspecialchars(strip_tags(htmlspecialchars_decode($value)), ENT_QUOTES, "UTF-8");
}, $item);
$description = utf8_htmlspecialchars (utf8_htmlspecialchars (utf8_substr ($site ['description'], 0, 255)));
with
function utf8_htmlspecialchars ($string)
{
return htmlspecialchars ($string, ENT_QUOTES, 'UTF-8');
}
$description = utf8_htmlspecialchars (utf8_substr ($site ['description'], 0, 255));
