Forum Replies Created
-
AuthorPosts
-
Hi,
Open js/avia.js and look for line:
container.on("click", "a", methods.load_item);
Replace it by this:
container.on("click", "a:not([href*=vimeo.com])", methods.load_item);
Regards,
JosueHi,
Can you post the link to the page in question please?
Regards,
JosueMarch 31, 2016 at 3:37 pm in reply to: change the loop-index.php to get the right blog-design? #605955Hi,
Can you post the link to your blog please?
Regards,
JosueHey!
I understand your request but i’m afraid this won’t be possible without modifying the link handling functionality extensively, unfortunately that’s beyond our support scope. You can request a customisation quote from a third-party provider here.
Cheers!
JosueHi,
Can you post the link to your website please?
Regards,
JosueMarch 31, 2016 at 3:24 pm in reply to: WEIRD BLOCK APPEARS IN TOP RIGHT CORNER IN EDGE BROWSER/IMAGES NOT 100% WIDE #605950Glad you managed to sort it out, i’ll take note of this issue with MS edge.
Best regards,
JosueMarch 31, 2016 at 3:21 pm in reply to: How to add dot control buttons to testimonials slider? #605949Open /enfold/config-templatebuilder/avia-shortcodes/contentslider.php and look for:
if($slide_count > $columns && $type == 'slider' && $navigation != 'no') { if($navigation == 'dots') $output .= $this->slide_navigation_dots(); if($navigation == 'arrows') $output .= $this->slide_navigation_arrows(); }
Move it a few lines below (place it between these):
$output .= "</div>"; $output .= "</div>";
Best regards,
JosueYou are welcome, glad to help :)
Regards,
JosueJust changing those lines should be enough (+ adding the custom CSS).
Hm, you could try this:
@media only screen and (min-width: 1500px) { #top .av_slideshow_full li img { min-height: 600px; width: auto; } }
Yes, the mod will be void when you update the theme but you can have prevent that by having a child theme.
Hi,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueShould work now (i didn’t specify the exact lines to edit in my message).
Hi!
Can you post a screenshot of what you’re referring to? on mobile it should look like this – http://screencast.com/t/tPibdbGndF91
Regards,
JosueMarch 31, 2016 at 1:38 pm in reply to: How to add dot control buttons to testimonials slider? #605876Hey!
Testimonial Slider do not support dot control options at the moment, however you could use a Content Slider instead.
Best regards,
JosueCan you please create me a WordPress administrator account? post it here as a private reply.
Regards,
JosueSorry i’ve mistaken, i though you were using a FullWidth Slider, what you’re seeing is indeed unexpected, can you please try updating the theme to the latest version (3.5.1)?
March 31, 2016 at 1:27 pm in reply to: Strange icons in place of standard Enfold theme icons over https #605865You are welcome, glad to help :)
Regards,
JosueHm, that’s unexpected, does it happen with other images too?
You are welcome, glad to help :)
Regards,
JosueIf you hand me a FTP account i can do this for you.
Best regards,
JosueMarch 31, 2016 at 1:01 pm in reply to: Strange icons in place of standard Enfold theme icons over https #605843I placed the @font-face inclusion in your child theme style.css (changed http to https).
Hey!
Try changing
1.5
to something closer to2
(like1.8
).Regards,
JosueI’m not seeing the code being added, it should look like this:
Try adding it again but refresh a few times so it refreshes the file.
There’s a way though, but it requires modifying the main slider file. Open /enfold/config-templatebuilder/avia-shortcodes/helper-slideshow.php and look for line 367:
$img = wp_get_attachment_image_src($slide->ID, $this->config['size']);
Change it to:
$img = wp_get_attachment_image_src($slide->ID, $this->config['size']); $img_full = wp_get_attachment_image_src($slide->ID, 'full');
Also in the same file look for (490)
$html .= "<img src='".$img[0]."' width='".$img[1]."' height='".$img[2]."' title='".$linktitle."' alt='".$linkalt."' $markup_url />";
Change it to:
$html .= "<img class='img_default' src='".$img[0]."' width='".$img[1]."' height='".$img[2]."' title='".$linktitle."' alt='".$linkalt."' $markup_url />"; $html .= "<img class='img_full' src='".$img_full[0]."' width='".$img_full[1]."' height='".$img_full[2]."' title='".$linktitle."' alt='".$linkalt."' $markup_url />";
Finally add this to Quick CSS:
img.img_full{ display: none !important; } @media only screen and (min-width: 1500px) { img.img_full { display: block !important; } img.img_default{ display: none !important; } }
With that modification both images will be loaded but the full one will be shown after 1500px only.
Best regards,
JosueMarch 31, 2016 at 12:32 pm in reply to: Strange icons in place of standard Enfold theme icons over https #605829Fixed.
No, i’m afraid Tabs weren’t built with that kind of functionality in mind, although it can be done it would needed to be coded from scratch.
Regards,
JosueI see what you’re referring to, there’s an option in the Easy Slider to get the full image – http://screencast.com/t/WBXI7IDyl14
Try with this code instead;
#top #header .three.units{width:225px;} #top #header .six.units{width:450px;} #top #header .nine.units{width:675px;} #top #header .twelve.units{width:900px;}
Hi,
Open /config-templatebuilder/avia-shortcodes/helper-masonry.php and look for line:
if($custom_link) $this->loop[$key]['url'] = $custom_link;
Replace it by this:
if($custom_link) $this->loop[$key]['url'] = $custom_link; $this->loop[$key]['url'] = wp_get_attachment_image_src($id, 'full');
Regards,
Josue -
AuthorPosts