Forum Replies Created
-
AuthorPosts
-
Hi!
I tried to recreate the test page but I can’t reproduce the issue. Please try to edit the js > avia.js file then look for this code around line 733:
fixedMainPadding = parseInt($('html').css('margin-top'),10);
Replace it with:
fixedMainPadding = parseInt($('html').css('margin-top'),10) - 10;
Remove browser cache then reload the page.
Best regards,
IsmaelAugust 7, 2015 at 7:54 am in reply to: Hauptmenu zeigt MegaMenu im Responsive Mode an; resp. ist voll ausgeklappt #484316Hey!
Please copy the code directly from this forum, not from your email. Make sure that that symbols are not converted to something else.
Cheers!
IsmaelHi!
You can try this:
.template-shop .single-product-main-image .images a { width: 70%; float: left; } .single-product-main-image .thumbnails { width: 25% !important; float: left; margin-left: 4%; } #top .single-product-main-image .thumbnails a { width: 48%; }
Regards,
IsmaelHi!
If you’re referring to the size of the thumbnail that is being used in the product item, you can set the size on Woocommerce > Settings > Products > Display > Product Images panel. Adjust the thumbnail size then regenerate the thumbnails. https://wordpress.org/plugins/simple-image-sizes/
Best regards,
IsmaelHey!
Looks like you’re using a custom product tab. I’m not sure how they render the tabs inside the product page. Please ask the author of the WooCommerce Custom Product Tabs Lite plugin.
Best regards,
IsmaelHey!
Alright. I checked the screenshot and the actual page. The container is now scrollable which is how you want it. I’m not sure what’s the issue. Do you want to change the background of the image container? You can use this:
div .portfolio-preview-image { background-color: #ffffff; }
Cheers!
IsmaelHey!
Please use css media queries to adjust the height on different screen sizes: Example:
/* Tablet Portrait size to standard 960 (devices and browsers) */ @media only screen and (min-width: 768px) and (max-width: 989px) { ul.avia-slideshow-inner { max-height: 300px !important; }}
Refer to this link for more info: https://css-tricks.com/css-media-queries/
Best regards,
IsmaelHey!
Alright. This should work:
function add_custom_script(){ ?> <script> jQuery('#top .isotope-item').each(function() { jQuery(this).attr('target', '_blank'); }); </script> <?php } add_action('wp_footer', 'add_custom_script');
Regards,
IsmaelHey!
2.) Please give us a link to the page with the gallery.
3.) You can generate the likebox widget script in the following link then place it in a text widget: https://developers.facebook.com/docs/plugins/page-plugin
4.) There will be an update notification when a new patch is available.
5.) The theme has its own styling options so you won’t be needing the css hero plugin to modify the elements in the theme. I’m afraid the plugin is not fully compatible with theme, if it is, we are not sure how to implement it. Please contact the plugin author.
Regards,
IsmaelHey!
That is not possible at the moment but you can try to generate the image hotspot shortcode by using the shortcode generator then use it in the layer slider or the content slider.
Cheers!
IsmaelHi!
Alright. Most of the errors are generated directly from the WP core files. Please get a fresh copy of the WordPress files then overwrite the installation.
Regards,
IsmaelHey!
Can you please add a featured image in this post? http://350pdx.org/portfolio-item/dirty-truth-about-obamas-clean-power-plan/
We can hide the featured image in the actual post via css. Or use the advance layout builder for portfolio items with videos, it will not display the featured image.
Cheers!
IsmaelAugust 7, 2015 at 6:45 am in reply to: Images in Code Blocks not behaving correctly when browser shrinks. #484296August 7, 2015 at 6:38 am in reply to: Change Testimonial Slider (Large) Previous and Next Arrows #484295Hey!
Please give us the font icon zip file from the fontello.com then we’ll test it on our installation. You can try this code in the function.php file:
add_action('init', function() { global $avia_config; $avia_config['font_icons']['next_big']['icon'] = 'ue824'; $avia_config['font_icons']['prev_big']['icon'] = 'ue824'; return $avia_config; });
Best regards,
IsmaelHi!
Did you copy the code straight from your email? Please get the code directly from this forum. Make sure that the symbols are not converted to something else.
Best regards,
IsmaelHey!
I checked the page but there is no “Let’s Talk” button there. Can you please provide a screenshot?
Best regards,
IsmaelHey!
Please give us a link to the page. We will check it. Try to replace the code with this:
function add_custom_script(){ ?> <script> jQuery('.slide-entry a').each(function() { jQuery(this).attr('target', '_blank'); }); </script> <?php } add_action('wp_footer', 'add_custom_script');
Replace the “.slide-entry a” with the correct selector.
Best regards,
IsmaelAugust 6, 2015 at 8:24 am in reply to: open all links in blog grid in new window by default. #483722Hi!
Please replace the code with this:
function add_custom_script(){ ?> <script> jQuery('.slide-entry a').each(function() { jQuery(this).attr('target', '_blank'); }); </script> <?php } add_action('wp_footer', 'add_custom_script');
Regards,
IsmaelAugust 6, 2015 at 8:20 am in reply to: scroll percentage setting for displaying thumbnail in galleries #483717Hi!
It will not change the scroll offset. The code will disable the gallery loading animation. Please remove browser cache then test the page again.
Regards,
IsmaelAugust 6, 2015 at 8:18 am in reply to: Additional Social Icons in Footer (replacing RSS/Twitter) Widget #483716Hi brittanywinter!
Thank you for using Enfold.
You can follow the code pattern when you switch the rss to facebook. I’m sure you will know where to add the following code. Let’s try to add the pinterest icon. Add this code:
$pinterest = empty($instance['pinterest']) ? '' : $instance['pinterest'];
And this one:
if(isset($pinterest)) { $link = 'http://pinterest.com/'; $before = apply_filters('avf_social_widget', "", 'pinterest'); $output .= "<a href='$link' $addClass'>{$before}<strong class='asc_count'>".__('Follow','avia_framework')."</strong><span>".__('on Pinterest','avia_framework')."</span></a>"; }
Below, look for this line of code:
$instance = wp_parse_args( (array) $instance, array('rss' => avia_get_option('feedburner'), 'twitter' => avia_get_option('twitter')) );
Add the pinterest option:
$instance = wp_parse_args( (array) $instance, array('rss' => avia_get_option('feedburner'), 'twitter' => avia_get_option('twitter'), 'pinterest' => avia_get_option('pinterest') ) );
And again, find this line:
<p><label for="<?php echo $this->get_field_id('rss'); ?>">Enter your feed url: <input class="widefat" id="<?php echo $this->get_field_id('rss'); ?>" name="<?php echo $this->get_field_name('rss'); ?>" type="text" value="<?php echo esc_attr($rss); ?>" /></label></p>
Follow the pattern, add something like this:
<p><label for="<?php echo $this->get_field_id('pinterest'); ?>">Enter your pinterest username: <input class="widefat" id="<?php echo $this->get_field_id('pinterest'); ?>" name="<?php echo $this->get_field_name('pinterest'); ?>" type="text" value="<?php echo esc_attr($pinterest); ?>" /></label></p>
After that, there will be a new field in the widget for the pinterest icon.
Cheers!
IsmaelHi!
I checked the Quick CSS field and there are multiple css media queries which are not needed. For example, you have this code:
@media only screen and (max-width: 767px) { .responsive #top .av-large-testimonial-slider.avia-testimonial-wrapper .avia-testimonial { padding: 0px 0px !important; font-size: 14px !important; } } @media only screen and (max-width: 767px) { .responsive #top .av-large-testimonial-slider.avia-testimonial-wrapper .avia-testimonial { padding: 0px 0px !important; font-size: 14px !important; } }
You can remove the other media query because they are basically the same. And you have this code with the same media query:
@media only screen and (max-width: 767px) { #top .av-large-testimonial-slider.avia-testimonial-wrapper .avia-testimonial { padding: 0; }}
You can combine these codes to a single media query:
@media only screen and (max-width: 767px) { #top .av-large-testimonial-slider.avia-testimonial-wrapper .avia-testimonial { padding: 0; } .responsive #top .av-large-testimonial-slider.avia-testimonial-wrapper .avia-testimonial { padding: 0px 0px !important; font-size: 14px !important; }}
Please clean up the css codes and css media queries usually go at the very bottom of the stylesheet. You can try this css media query in order to change the hover effect for retina display:
https://css-tricks.com/snippets/css/retina-display-media-query/
Best regards,
IsmaelHey senso!
Thank you for using Enfold.
Please provide a link to the page, we would like to check it. Check this page:
http://queryposts.com/function/wp_unique_term_slug/
http://queryposts.com/function/wp_unique_post_slug/Regards,
IsmaelHey boscotwcheung!
Thank you for using Enfold.
You can add it manually with the css font face rule or use the following plugin:
https://wordpress.org/plugins/wp-font-face/
Refer to these links for more info:
http://www.w3schools.com/cssref/css3_pr_font-face_rule.asp
https://css-tricks.com/snippets/css/using-font-face/You can then use the Quick CSS field to apply the fonts on different elements.
Cheers!
IsmaelHey!
Looks like you managed to find a workaround by using the image element. Is that right? If you want to enable the lightbox, edit the image element then go to the “Link Settings” panel. Set the Image Link? to “Lightbox”.
Best regards,
IsmaelHi!
Use this for the full width submenu button:
#top .av-menu-button-colored:hover > a .avia-menu-text { background-color: blue !important; color: #ffffff; webkit-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; }
The contact form button should have the same effect by default.
Best regards,
IsmaelHi!
You can use this in the Quick CSS field:
.avia-slideshow li img { width: auto !important; margin: 0 auto !important; }
Regards,
IsmaelHi!
The kriesi.at likebox width is set to 300px which is the actual width of the sidebar so there’s no issue there. You can generate the likebox widget in the following link then use the scripts on a text widget. Make sure that the “Adapt to plugin container width” option is enabled: https://developers.facebook.com/docs/plugins/page-plugin
Example:
<div id="fb-root"></div> <script>(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.4"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk'));</script> <div class="fb-page" data-href="https://www.facebook.com/kriesi.at" data-small-header="false" data-adapt-container-width="true" data-hide-cover="false" data-show-facepile="true" data-show-posts="false"><div class="fb-xfbml-parse-ignore"><blockquote cite="https://www.facebook.com/kriesi.at"><a href="https://www.facebook.com/kriesi.at">Kriesi</a></blockquote></div></div>
Refer to this link for more info: https://kriesi.at/support/topic/change-in-appearance-of-enfoldfacebook-likebox/
Regards,
IsmaelHi!
Looks like you’re using an old version of the theme, 3.1.4. Please update to version 3.2.2. After that, use this plugin to force the resources to load over https: https://wordpress.org/plugins/wordpress-https/
Cheers!
IsmaelAugust 6, 2015 at 5:20 am in reply to: Is there a diagram that shows what theme options affect which areas on the page? #483667Hey!
If you don’t mind, please create a new thread for your inquiries. A screenshot of the element that you’re trying to modify will help. For the widget or sidebar links, if I am not mistaken, you can use this in the Quick CSS field:
.main_color .sidebar a { color: red; }
Regards,
IsmaelAugust 6, 2015 at 5:15 am in reply to: Hauptmenu zeigt MegaMenu im Responsive Mode an; resp. ist voll ausgeklappt #483666Hi!
Please use this in the functions.php file to enable the “Hide Mobile Menu Submenu Items” option if header is set to “Left sidebar”:
add_action('avf_header_classes', 'avf_header_classes_mod', 10, 3); function avf_header_classes_mod($class, $necessary, $prefix) { $class['header_mobile_behavior'] = 'header_mobile_behavior'; return $class; }
Cheers!
Ismael -
AuthorPosts