You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The contrib Views module provides a More link template file, which contains spaces inside the <a> element, which are then visualised on the frontend, e.g. when underlining...
Please provide a clean, updated template file in our Ocelot theme structure containing the proper output:
<?php
/**
* @file
* Theme the more link.
*
* - $view: The view object.
* - $more_url: the url for the more link.
* - $link_text: the text for the more link.
*
* @ingroup views_templates
*/
?>
<div class="more-link">
<a href="<?php print $more_url ?>"><?php print $link_text; ?></a>
</div>
For example in Ocelot/templates/views/views-more.tpl.php
The text was updated successfully, but these errors were encountered:
The contrib Views module provides a More link template file, which contains spaces inside the
<a>
element, which are then visualised on the frontend, e.g. when underlining...Please provide a clean, updated template file in our Ocelot theme structure containing the proper output:
For example in Ocelot/templates/views/views-more.tpl.php
The text was updated successfully, but these errors were encountered: