There are many bugs to fix
Thanks for answering, but I already solved it by editing the spreadsheet files
- Error On line 161 (finion j4)
templates\finion\sppagebuilder\addons\articles\site.php
if(isset($image) && $image) {
$output .= '<a class="sppb-article-img-wrap" href="'. $item->link .'" itemprop="url" style="background-image: url('/. $image .');"></a>';
}
Solution
if(isset($image) && $image) {
$output .= '<a class="sppb-article-img-wrap" href="'. $item->link .'" itemprop="url"><img class="sppb-img-responsive" src="'. $image .'" alt="'. $item->title .'" itemprop="thumbnailUrl"></a>';
- In the blog format category hide the introduction text and group the links of the introduction image with the title link so that an accessibility error is not generated since a duplicate link is always generated, I managed to solve it by editing the following files
templates/finion/html/com_content/category/blog_item.php
templates/finion/html/layouts/joomla/content/blog_style_default_item_title.php
templates/finion/html/layouts/joomla/content/intro_image.php