Forum Replies Created
-
AuthorPosts
-
Hi Mark!
Can you expand on what you’re trying to do?
Best regards,
JosueIt’s on your child theme functions.php.
I’m not sure what can you ask to your hosts, the culprit could actually be on WordPress level, maybe a plugin, something is converting characters like ” to ' (in the Post excerpt / Product short description).
Best regards,
Josue-
This reply was modified 10 years, 3 months ago by
Josue.
Hi!
There’s a part in the Pinit script that looks for all “http://pinterest.com/pin/” links and replaces them with the Pin it button, unfortunately there’s no way for us to modify this behavior as the Pinit script is ran by Pinterest. I’d disable the Pinterest share button as a workaround.
Regards,
JosueNovember 24, 2015 at 11:03 pm in reply to: Enfold Menu Hover – How do I make it vertical, and how do I change it/design? #542029Hi!
I’m not seeing the same (on your site) as in the first screenshot.
Cheers!
JosueHi!
The issue here is the same as in the Table hyphens, seems your server really likes to convert characters or symbols to HTML entities which messes up with the shortcode execution, i’ve now added a filter to the product description that should prevent this from happening:
function filter_short_description($excerpt) { $new_excerpt = preg_replace_callback("/(&#[0-9]+;)/", function($m) { return mb_convert_encoding($m[1], "UTF-8", "HTML-ENTITIES"); }, $excerpt); return $new_excerpt; } add_filter('woocommerce_short_description', 'filter_short_description');Regards,
JosueHey!
Should be as follows:
// Add new icon as an option for social icons function avia_add_custom_social_icon($icons) { $icons['Yelp'] = 'yelp'; $icons['Houzz'] = 'houzz'; return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1); // Register new icon as a theme icon function avia_add_custom_icon($icons) { $icons['yelp'] = array( 'font' =>'yelp', 'icon' => 'ue800'); $icons['houzz'] = array( 'font' =>'houzz', 'icon' => 'ue801'); return $icons; } add_filter('avf_default_icons','avia_add_custom_icon', 50, 1);It’s already applied on your site.
Regards,
JosueHi,
Can you please hand me a WordPress administrator account?
Regards,
JosueNovember 24, 2015 at 10:39 am in reply to: Avia Editor won't open (but only on a certain page) #541438Glad to hear that :)
Cheers!
JosueHi,
Can you please check if the issue persists with the default WordPress theme activated?
Regards,
JosueNovember 24, 2015 at 9:58 am in reply to: Avia Editor won't open (but only on a certain page) #541402Hm, as the issue is not related to the theme i don’t know what could be the culprit to be honest, hope updating WordPress fixes the issue for you.
Regards,
JosueThat’s actually the intended result, product gallery appears first and then the sidebar.
Regards,
JosueHi,
Can you post the link to the Page where you’re trying this please?
Regards,
JosueYou are welcome, glad to help :)
Regards,
JosueNovember 24, 2015 at 2:38 am in reply to: With a side menu, change screen width at which mobile menu appears #541297You are welcome, glad to help :)
Regards,
JosueYou are welcome, glad to help :)
Regards,
JosueHey!
Try adding this code to the Quick CSS:
.single-product .sidebar { display: none !important; }That will hide the sidebar in single products view.
Cheers!
JosueHi!
Kriesi is aware of the issue and will probably include a fix in the near future, in the meantime, change this part in /config-templatebuilder/avia-shortcodes/logoslider.php:
public function set_slides($ids) { if(empty($ids)) return; $this->slides = get_posts(array( 'include' => $ids, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'post__in') ); //resort slides so the id of each slide matches the post id $new_slides = array(); foreach($this->slides as $slide) { $new_slides[$slide->ID] = $slide; } $this->slides = $new_slides; $this->id_array = explode(',',$this->config['ids']); $this->slide_count = count($this->id_array); }To:
public function set_slides($ids) { if(empty($ids)) return; $this->slides = get_posts(array( 'include' => $ids, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'post__in') ); //resort slides so the id of each slide matches the post id $new_slides = array(); $new_ids = array(); foreach($this->slides as $slide) { $new_slides[$slide->ID] = $slide; $new_ids[] = $slide->ID; } $this->slides = $new_slides; $this->id_array = $new_ids; $this->slide_count = count($this->id_array); }Best regards,
JosueNovember 23, 2015 at 4:43 pm in reply to: How to hide specific posts from single post navigation #541010You are welcome, glad to help :)
Regards,
JosueNovember 23, 2015 at 4:42 pm in reply to: One Page Website menu not working on portfolio page #541008Hey Gavin!
1. Use this plugin to set a different menu in your homepage:
https://wordpress.org/plugins/zen-menu-logic/2. Those are disabled on mobile because they would be harder to press given the space, you can force them to show up with the following:
.responsive #top .avia-post-nav { display: block !important; }3. I’m not really noting that on my Android device (using Chrome), on which platform are you having the issue?
Cheers!
JosueNovember 23, 2015 at 4:04 pm in reply to: How to hide specific posts from single post navigation #540968Sorry i forgot to explain that, those are the categories IDs you want to exclude, you can check the ID of the category by looking at the URL when editing one of them (in the dashboard).
Regards,
JosueHey!
Try putting the URL as follows:
https://www.youtube.com/watch?v=I2RkGtrxSiwWithout parameters and un-shortened.
Best regards,
JosueHey Milan!
Try adding this code to the Quick CSS:
.avia_transform .avia_start_delayed_animation.fade-in { -webkit-animation: avia-fadein 1s 1 ease-out; /* Safari 4+ */ animation: avia-fadein 1s 1 ease-out; /* IE 10+ */ opacity: 1; }Cheers!
JosueHi!
MediaElementJS (the library WordPress and Enfold use), doesn’t have volume up / volume down controls by default, instead it uses volume sliders (as you can see in the two videos), although it may be possible to get two buttons as you’re requesting, it would require some custom work, unfortunately that’s beyond our support scope. You can request a customisation quote from a third-party provider here.
Best regards,
JosueHey!
Can you post a screenshot/mockup of what would you want to achieve?
Best regards,
JosueNovember 23, 2015 at 3:19 pm in reply to: Blog Sticky Posts not sticking / Receiving Pingbacks (when unchecked) #540911You are welcome, glad to help :)
Regards,
JosueHey Peter,
1. Refer to this on how to override a WC template:
https://docs.woothemes.com/document/template-structure/2. There isn’t an element specific for that yet, try using an Image Element or Gallery.
Best regards,
JosueNovember 23, 2015 at 2:39 pm in reply to: How to hide specific posts from single post navigation #540861Hey!
Try adding this at the very end of your theme / child theme functions.php file:
function avia_post_nav_settings_func($settings) { $settings['excluded_terms'] = '32,34,53'; return $settings; } add_filter('avia_post_nav_settings', 'avia_post_nav_settings_func');Cheers!
JosueHey!
Sidebar seems to be working correctly there, below the product gallery at the right.
Regards,
JosueNovember 23, 2015 at 1:14 pm in reply to: Child theme style.css code not applying -but quick-css does #540751Hi!
Your CSS comments are formatted incorrectly:
*/ LAYERSLIDER SHADOW */Should be:
/* LAYERSLIDER SHADOW */Cheers!
Josue -
This reply was modified 10 years, 3 months ago by
-
AuthorPosts
