Hello,
This issues comes from override heading addon. I fix your issues, Please check and let me know. This way I solve this issues:
Go to system/templates/shaper_tixon/sppagebuilder/addons/heading/site.php
remove this line from site.php
$title_link = ($use_link) ? ((isset($this->addon->settings->title_link) && $this->addon->settings->title_link) ? $this->addon->settings->title_link : '') : false;
then use this code instead of above line:
// Handle title_link for the structure observed (src instead of url)
$title_link = '';
if ($use_link && isset($this->addon->settings->title_link)) {
if (is_object($this->addon->settings->title_link) && isset($this->addon->settings->title_link->src)) {
$title_link = $this->addon->settings->title_link->src;
} elseif (is_string($this->addon->settings->title_link)) {
$title_link = $this->addon->settings->title_link;
}
}
Thanks