Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #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
    Kai

    #953054

    Hey Kai,

    Thank you for using Enfold.

    This is not possible yet. You can only apply the copyright info on an Image element.

    Best regards,
    Ismael

    #1280273

    hello 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?

    #1281318

    Hi,

    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,
    Ismael

    #1282214

    Hi Ismael,

    I don’t get your point how a modification of the color section can impact the masonry gallery ?

    Best regards,
    Clément

    #1282791

    Hi,

    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,
    Ismael

    #1282996

    ok, you can not give us a workaround for the Slide-Show Element – hmmm

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.