Perfect! Thanks!
The message box isn’t the same black font but that’s okay.
1. Also, do you know if there is a way for me to get rid of the magnifying glass in the header?
2. Is there a way of having linked words, such as “Learn More” font in a different color?
3. For the testimonials is there a dummy picture within the template that can be used for testimonials that don’t have a picture?
Hey!
1. You can set that in Enfold > Header Options > Extra Elements.
2. You can use the WYSIWYG WP editor for that:
3. No, that’s not possible but you don’t need to upload a new image for each testimonial, just pull them from the Media Library.
Regards,
Josue
Hi Josue,
Thank you!
2. How do I get to the WYSIWYG WP editor?
3. For several of the testominials I don’t have pictures and wasn’t sure if there dummy picture in the media gallery I can use
Hi!
It should be there in any text input (Text tab), just make sure to toggle the extra toolbar:
Regards,
Josue
perfect,thank you.
the last question was the dummy images for the testimonials.
There isn’t a dummy/placeholder image for the testimonials. But you could try this, open /config-templatebuilder/avia-shortcodes/testimonials.php, look for line 240:
if($src) $avatar = "<div class='avia-testimonial-image' $markup>".wp_get_attachment_image( $src , $avatar_size , false, array('alt'=>esc_attr(strip_tags($name))))."</div>";
Replace it by:
if($src) { $avatar = "<div class='avia-testimonial-image' $markup>".wp_get_attachment_image( $src , $avatar_size , false, array('alt'=>esc_attr(strip_tags($name))))."</div>"; } else { $avatar = "<div class='avia-testimonial-image' $markup><img src='_PLACEHOLDER_IMAGE_HERE_'></div>"; }
Change _PLACEHOLDER_IMAGE_HERE_ by the route of the image you want to use as a placeholder (must be at least 80×80).
Regards,
Josue