Jump to content

Thumbview - Summary text as Tooltip only?


Willburn

Recommended Posts

Hi,

When setting it to thumb view, summary text shows up as a tooltip when hovering over the Main Media Thumbnail. Is there any way i can disable the tooltip and have the summary text to show up as normal, meaning no tooltip and hovering ?

I have made a small modification which works as a temporary solution + using overrides as explained in the documentation.

Copied the following from blogview.thtml:

<div class="jrListingSummary">

                                <?php echo $Text->truncateWords($listing['Listing']['summary'],$list_abstract_trim);?>

                            </div>

                        <?php elseif($list_show_abstract == 1):?>

                            <div class="jrListingSummary">

                                <?php echo $listing['Listing']['summary'];?>

                            </div>

 

and pasted + replaced the following in listings_thumbview.thtml:

<div class="jrListingSummary jrPopup">

                                <?php echo $Text->truncateWords($listing['Listing']['summary'],$list_abstract_trim);?>

                            </div>

                        <?php elseif($list_show_abstract == 1):?>

                            <div class="jrListingSummary jrPopup">

                                <?php echo $listing['Listing']['summary'];?>

                            </div>

 

Edited by Willburn
Link to comment
×
×
  • Create New...