Apolozy for the inconvenience. Customization is out of our support scope. However, I'm providing you with a small code snippet as a good starting point. Please note that we only provide technical support.
Add the below code in your JRoot/templates/shaper_hope/html/com_content/article/default.php file
<?php
use Joomla\CMS\Helper\ModuleHelper;
$modules = ModuleHelper::getModules('position7');
if (!empty($modules)) {
foreach ($modules as $module) {
echo '<div class="custom-module">';
if ($module->showtitle) { // Show title only if enabled in settings
echo '<h3>' . htmlspecialchars($module->title) . '</h3>';
}
echo ModuleHelper::renderModule($module);
echo '</div>';
}
}
?>
Important: This modification is not update-proof. Any Joomla update or template update may overwrite the default.php file, removing your changes.