Hello!
Tell me, please, where can I turn off in the photos - the keywords?
Tell me, please, where can I turn off in the photos - the keywords?
//Remove its wording only
<button class="btn btn-photo-popup-nav-item dropdown-toggle_" data-bs-toggle="dropdown">
<i class="fa fa-users"></i>
</button>
or
//Totally remove taglist function, comment out or remove this code, line 24-52
<div class="dropdown_" data-item-actions-menu>
<button class="btn btn-photo-popup-nav-item dropdown-toggle_" data-bs-toggle="dropdown">
<i class="fa fa-users"></i>
</button>
<div class="es-photo-tag-list-dropdown dropdown-menu dropdown-static <?php echo !$tags ? 'empty-tags' : '';?>" data-photo-tag-list-item-group>
<?php if ($tags) { ?>
<?php foreach ($tags as $tag) { ?>
<div class="es-photo-tag-list-item es-photo-tag-<?php echo $tag->type; ?>"
data-photo-tag-list-item
data-photo-tag-id="<?php echo $tag->id; ?>"
data-photo-tag-type="<?php echo $tag->type; ?>"
<?php if (!empty($tag->uid)) { ?>
data-photo-tag-uid="<?php echo $tag->uid; ?>"
<?php } ?>
>
<i class="fa fa-eye"></i>
<a href="javascript: void(0);"><span><?php echo $tag->label; ?></span></a>
<?php if ($tag->deleteable()) { ?>
<b data-photo-tag-remove-button data-photo-tag-id="<?php echo $tag->id; ?>"><i class="fa fa-remove"></i> <span><?php echo JText::_('COM_EASYSOCIAL_PHOTOS_TAG_REMOVE_TAG'); ?></span></b>
<?php } ?>
</div>
<?php } ?>
<?php } ?>
<div class="empty-tags-hint t-lg-p--md">
<?php echo JText::_('COM_EASYSOCIAL_PHOTOS_TAGS_EMPTY_HINT'); ?>
</div>
</div>
</div>