MG 2.0 "Share this media" option settings?

BobHarbison

Active member
I don't like some of the "Share this media" link options, particularly the "here's a direct link to full size image to make it super easy to download" one.

How do I choose which of those show up and which do not?
 
You would have to edit them out of the template.

In the template xfmg_media_view_macros you will find:
HTML:
<xf:macro name="share_sidebar" arg-mediaItem="!">
The various share links are found within that block of code. Specifically the full size image ones are:
HTML:
<xf:macro template="share_page_macros" name="share_clipboard_input"
   arg-label="{{ phrase('xfmg_copy_image_link') }}"
   arg-text="{{ link('canonical:media/full', $mediaItem) }}" />

<xf:macro template="share_page_macros" name="share_clipboard_input"
   arg-label="{{ phrase('xfmg_copy_image_bb_code') }}"
   arg-text="[IMG]{{ link('canonical:media/full', $mediaItem) }}[/IMG]" />
 
Back
Top Bottom