Hello,
Your first screenshot for the settings ( prnt.sc/JPz5tNu43yID ) is not a HikaMarket vendor listing (or vendor product listing).
The tabs we can see in the screenshots are : "product options", "price display".
These tabs are HikaShop settings, not HikaMarket.
More than that, there is no "Watchlist" menu in HikaMarket (or HikaShop).
I'm sorry but I don't know what menu that is.
Regarding the "vendor order listing" and the "vendor product listing" menus, the views are currently missing the code to display the menu.
But the "vendor listing" do handle correctly the Joomla setting and you can already copy the content from the view (vendormarket / listing) and copy it into the view "ordermarket / listing" and "productmarket / listing".
<?php
$title = 'show_page_heading';
$titleType = 'h1';
if($this->module) {
$title = 'showtitle';
$titleType = 'h2';
}
if($this->params->get($title) && hikaInput::get()->getInt('hikamarket_front_end_main', 0)) {
if($this->module) {
$heading = $this->params->get('title');
} else {
$heading = $this->params->get('page_title');
if($this->params->get('page_heading')) {
$heading = $this->params->get('page_heading');
}
}
echo '<' . $titleType . '>' . $heading . '</' . $titleType . '>';
}
?>
Regards,