don't worry these problem has been solve by the help of a friend i added an if condition in the article default.php to check if full article image is empty or no
i will leave it here in case some one have the same problem
this is to be added inside if condation around line 102 "if ($post_format=='standard')"
<?php
if ($post_format=='standard') {
if($article_image == "")
{
echo JLayoutHelper::render('joomla.content.intro_image', $this->item);
}
else
{
echo JLayoutHelper::render('joomla.content.full_image', $this->item);
}
}
else {
echo JLayoutHelper::render('joomla.content.post_formats.post_' . $post_format, array('params' => $params, 'item' => $this->item));
}
?>
this issue is what is urgent for me now
https://www.joomshaper.com/forums/category-blog-layout-3
i was wondering why don't you have a support ticket system