By Aleksandr on Friday, 14 April 2017
Posted in General Issues
Likes 0
Views 362
Votes 0
Hello!
Tell me, please, where can I turn off in the photos - the keywords?
Is it possible provide us one of the screenshot which photo keyword you referring to?
·
Friday, 14 April 2017 16:38
·
0 Likes
·
0 Votes
·
0 Comments
·
screenshot
·
Friday, 14 April 2017 17:00
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

May i know whether you wanted to fully remove those 'Taglist' or only its wording? You can applied those codes below on your template override on this file .../components/com_easysocial/themes/wireframe/photos/popup/taglist.php and see how it goes.


//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>


Note:
To do template override, you can refer our documentations here https://stackideas.com/docs/easysocial/administrators/templating/template-overrides

Please give it a try and see how it goes
·
Friday, 14 April 2017 18:00
·
0 Likes
·
0 Votes
·
0 Comments
·
Thank you!
·
Wednesday, 21 June 2017 16:11
·
0 Likes
·
0 Votes
·
0 Comments
·
You are most welcome Aleksandr Glad to hear your issue has resolved.

As a gentle reminder, kindly start a new thread if you have any other issue in the future so it will be easier for us to manage your inquiry. I will lock and mark this thread as resolved.

Have a nice day ahead
·
Wednesday, 21 June 2017 16:23
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post