-
Notifications
You must be signed in to change notification settings - Fork 0
PHP
Marie-Louise edited this page Aug 20, 2018
·
46 revisions
FILE : footer.tpl.php /sites/all/modules/custom/corp_markup/theme/sitewide/footer.tpl.php/footer.tpl.php
<ul class="nav-social__list">
<?php foreach($variables['social'] as $item): ?>
<li class="nav-social__list__item">
<a href="<?php print $item['url']; ?>"
title="Follow us on <?php print $item['title']; ?>"
class="nav-social__list__item__link nav-social__icon nav-social__icon--<?php print
$item['class_modifier']; ?>"><?php
print "Wellcome on " . $item['title'];
?></a>
</li>
<?php endforeach; ?>
</ul>
In order to render the desired labels to the social media icons, it was necessary to add the following code (the full code block is above) :
print "Wellcome on " . $item['title'];
OTHER FILES :
/sites/all/modules/custom/corp_markup/theme/misc/social_media_share.tpl.php/social_media_share.tpl.php /sites/all/modules/custom/corp_markup/theme/sitewide/footer.tpl.php/footer.tpl.config.js /sites/all/modules/custom/corp_markup/corp_markup.module