Forum Replies Created

Viewing 30 posts - 46,171 through 46,200 (of 66,075 total)
  • Author
    Posts
  • in reply to: issues with onepage-anchor menu #484339

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

    Hey!

    Please copy the code directly from this forum, not from your email. Make sure that that symbols are not converted to something else.

    Cheers!
    Ismael

    in reply to: Move Product description to full width #484314

    Hi!

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

    in reply to: Products List not displaying correctly #484313

    Hi!

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

    in reply to: Sidebar contents in shop product details page #484310

    Hey!

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

    in reply to: Scroll bar on the content of Ajax Portfolio ?? #484307

    Hey!

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

    in reply to: Full Width Easy Slider Video #484306

    Hey!

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

    in reply to: Masonry Gallery "Open Link In New Tab" Option #484305

    Hey!

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

    in reply to: Enfold custom CSS quick CSS and other changes #484303

    Hey!

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

    in reply to: Hotspot image slider #484302

    Hey!

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

    in reply to: Enfold update issues (wp 4.3.2 and enfold 3.2.3) #484299

    Hi!

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

    in reply to: Problem with displaying portfolio entries #484297

    Hey!

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

    Hi!

    Did you test the code above? You can use that code plus a few css media queries to fix the gap below the images. This is how the images look on the browser when you set the height to 381px, monitor resolution is 1920x1080px:

    Regards,
    Ismael

    Hey!

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

    in reply to: Change Mobile Menu Icon #484294

    Hi!

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

    in reply to: Help with z-index #484288

    Hey!

    I checked the page but there is no “Let’s Talk” button there. Can you please provide a screenshot?

    Best regards,
    Ismael

    in reply to: Masonry Gallery "Open Link In New Tab" Option #483724

    Hey!

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

    in reply to: open all links in blog grid in new window by default. #483722

    Hi!

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

    Hi!

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

    Hi 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!
    Ismael

    in reply to: Mobile Menu Hover #483708

    Hi!

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

    in reply to: CPT and Page same permalink #483704

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

    in reply to: Font #483699

    Hey 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!
    Ismael

    in reply to: Preview Image Advanced Layout Editor #483693

    Hey!

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

    in reply to: Buttons hovering color effect? #483680

    Hi!

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

    in reply to: Easy Slider image size #483673

    Hi!

    You can use this in the Quick CSS field:

    .avia-slideshow li img {
        width: auto !important;
        margin: 0 auto !important;
    }
    

    Regards,
    Ismael

    in reply to: Facebook Like Box – Width Problem #483671

    Hi!

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

    in reply to: Media Library Error – can't upload images #483669

    Hi!

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

    Hey!

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

    Hi!

    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

Viewing 30 posts - 46,171 through 46,200 (of 66,075 total)