-
AuthorPosts
-
May 5, 2018 at 9:56 pm #952174
Hello together,
I would like to add the copyright information to an easy slider as possible at images as discribed here:
https://kriesi.at/support/topic/copyright-option-for-images/#post-949561
Thank you and best regards
KaiMay 8, 2018 at 4:54 am #953054Hey Kai,
Thank you for using Enfold.
This is not possible yet. You can only apply the copyright info on an Image element.
Best regards,
IsmaelFebruary 13, 2021 at 5:28 pm #1280273hello Ismael,
I have the same issue – would like to add the copyright information to an Slide-Show. I already use this workaround for the section-element:Is this also possible for the Slide-Show Element? Can you explain?
February 16, 2021 at 1:39 pm #1281318Hi,
Thank you for the inquiry.
Which specific slider would you like to add the copyright container to? This line of code prints the copyright container in the color section.
if ($copyright !== "") { $copyright_text = get_post_meta($attachment_entry->ID, '_avia_attachment_copyright', true ); } if ($copyright_text) { $copyright_tag = "<small class='avia-copyright'>{$copyright_text}</small>"; $class .= ' av-has-copyright'; if ($copyright !== '') $class .= ' av-copyright-'.$copyright; }
But you have to create an option for it first.
array( "name" => __("Copyright Info", 'avia_framework' ), "desc" => __("Use the media manager to add/edit the copyright info.", 'avia_framework' ), "id" => "copyright", "type" => "select", "std" => "", "required" => array('src','not',''), "subtype" => array( __('No', 'avia_framework' ) =>'', __('Yes, always display copyright info', 'avia_framework' ) =>'always', __('Yes, display icon and reaveal copyright info on hover', 'avia_framework' ) =>'icon-reveal', ) ),
And add it to the attributes.
'bottom_border_style'=>'', 'custom_arrow_bg' => '', 'copyright' => '' // <--- this is the copyright ), $atts, $this->config['shortcode']); extract($atts);
Best regards,
IsmaelFebruary 19, 2021 at 1:36 pm #1282214Hi Ismael,
I don’t get your point how a modification of the color section can impact the masonry gallery ?
Best regards,
ClémentFebruary 22, 2021 at 1:38 pm #1282791Hi,
I was just describing the previous modifications that we have done for the color section, which could be implemented for the gallery or the slider elements as well, with some tweaks. Unfortunately, this is not yet available for the sliders and for the gallery. Please contact our partner, Codeable, or a hire a freelance developer to adjust the modification for the gallery and slider elements.
Thank you for understanding.
Best regards,
IsmaelFebruary 23, 2021 at 8:46 am #1282996ok, you can not give us a workaround for the Slide-Show Element – hmmm
-
AuthorPosts
- You must be logged in to reply to this topic.