Hi,
When using masonry element, the #top .av-current-sort-title shows the active sort and displayed on left. As the sort options displayed on right side shows this info anyway.
Is it possible to deactivate #top .av-current-sort-title and replace it with a new div for a custom static title. And just have the right side sorting options remaining the same?
Thanks in advance
Hey user877!
You can change that on line 462 in /enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php.
if(strpos($this->atts['sort'], 'tax') !== false) $output .= "<div class='av-current-sort-title'>{$first_item_html}</div>";
Best regards,
Elliott
Hi and thanks for the pointer.
Do is add this underneath?
echo “<div class=’your-text’>your text goes here</div>”;
Hey!
Change the line to this.
if(strpos($this->atts['sort'], 'tax') !== false) $output .= "<div class='av-current-sort-title'>Your title goes here</div>";
Best regards,
Elliott