Forum Replies Created

Viewing 30 posts - 49,501 through 49,530 (of 66,166 total)
  • Author
    Posts
  • in reply to: New Feature Preloading #413425

    Hi!

    Try this in the Quick CSS field:

    @media only screen and (min-width: 989px) {
    html.responsive {
      overflow-y: scroll;
    }
    
    .av-preloader-reactive {
      overflow: hidden !important;
    }}

    It will show the scrollbar instantly.

    Cheers!
    Ismael

    in reply to: email link, top bar styling for wpml #413421

    Hey!

    Yes, it will automatically add the mailto: tag when you add a valid email address.

    Best regards,
    Ismael

    in reply to: Private posts appear in some elements and not in others #413419

    Hi!

    The private posts are showing up fine on our installation using Grid Layout Blog Posts element. It doesn’t display on your installation. I’m not sure why. Try to add this to the functions.php file:

     add_filter('avia_post_slide_query', 'avia_post_slide_query_mod', 10, 2);
     function avia_post_slide_query_mod($query, $params)
     {	 
    	 $query['post_status'] = 'publish';
    	 return $query;
     }

    Cheers!
    Ismael

    in reply to: Error WPML and theme after switching to another language #413413

    Hey!

    Try to re-update the translated page: http://test.paulleegwater.com/de/

    Regards,
    Ismael

    in reply to: Blank page = not responsive #413405

    Hi!

    Please avoid editing the theme files directly. Use a child theme. You can add all css modifications in the Quick CSS field or the custom.css file. Control the width of the input fields by using this:

    #top input[type="text"] {
      width: 50%;
      max-width: 50%;
    }

    Best regards,
    Ismael

    in reply to: Google Analytics Code not working #413401

    Hi!

    Can you please provide a link to the site? Aside from adding an option to add the GA code, we don’t have any control over the performance of the site. Please try to verify if the site is actually using the GA code: https://support.google.com/webmasters/answer/185871?hl=en

    Regards,
    Ismael

    in reply to: Tripadvisor #413390

    Hey!

    Thank you. We have reported the issue to Kriesi. I’m not sure if this is connected to facebook.

    http://stackoverflow.com/questions/7131909/facebook-callback-appends-to-return-url
    http://stackoverflow.com/questions/7485111/weird-url-appended

    Best regards,
    Ismael

    in reply to: Single Product Advanced Layout Featured Image #413389

    Hey Michael!

    Thank you for using Enfold.

    Yes, unfortunately, when you switch to the builder mode, all default elements such as post meta info, featured image, title etc. will be remove. You have to start from scratch.

    Cheers!
    Ismael

    in reply to: Display textual description in product category page #413376

    Hey!

    I hope you figure it out. I also tried it on my installation and the category description field accepted html tags. We’ll keep the thread open. Please share any info regarding the issue.

    Regards,
    Ismael

    in reply to: Color section with responsive background image #413373

    Hi!

    I checked the site and the images are responsive. Note that the background size is set to “cover” which means that:

    Scale the background image to be as large as possible so that the background area is completely covered by the background image. Some parts of the background image may not be in view within the background positioning area

    You can set the background size to 100% but it will distort the image.

    Regards,
    Ismael

    in reply to: Gallery Problems #413372

    Hey juliaevemann!

    Thank you for using Enfold.

    You have to enable or set the “Use Lightbox” option of the gallery element to “Yes”. The image overlapping issue is cause by a third party “lightbox” plugin. Please remove it or add this to the Quick CSS field to fix it:

    #top #wrap_all .avia-gallery .avia-gallery-thumb a.lightbox {
      position: relative !important;
    }

    Get well soon. :)

    Cheers!
    Ismael

    in reply to: Translation #413367

    Hi!

    After the translation, click the “generate-mo-file” button to regenerate the .mo file.

    Regards,
    Ismael

    in reply to: Wistia embed – display: block #413366

    Hey!

    Add this to the Quick CSS field:

    input#wistia_21_requireEmail_email {
      max-width: 300px;
    }

    Regards,
    Ismael

    in reply to: 3.1 and current Yoast SEO causes Internal Server Error #413361

    Hey!

    Thank you for using Enfold.

    @Dandy: Thank you for the confirmation.


    @ewingmh
    : Download the latest version of the plugin then override the old one inside the plugins folder. Activate it.

    Regards,
    Ismael

    in reply to: Contact Form changes email with Email Protection Code… #413358

    Hi!

    Glad you figured it out. Thanks for sharing. :)

    Cheers!
    Ismael

    in reply to: Layout settings ignored #413357

    Hi!

    Try to overwrite the header.php and helper-main-menu.php file in the child theme folder. See if it helps.

    Regards,
    Ismael

    Hey Octopus4444!

    Thank you for using Enfold.

    I checked the site and the header background is correctly set. Can you please provide a screenshot of the issue? Note that the header minimal style will remove the menu indicator, transparency and #header_main border but it will not remove the menu border.

    Best regards,
    Ismael

    Hi beste_medien_werbe_agentur!

    Thank you for using Enfold.

    The socket menu is hidden by default on mobile devices because it breaks the layout of the container. If you want to display it in smaller screen sizes, you can adjust the media queries above:

    @media only screen and (max-width: 1024px) {
    .responsive #socket .sub_menu_socket {
    display: block !important;
    }}

    Regards,
    Ismael

    in reply to: Problem with menu drag and drop #413348

    Hey!

    Please provide a link to the actual website. Make sure that you have the latest version of the theme, version 3.1. If possible, deactivate all plugins while testing the site. If you can’t deactivate the plugins, switch to a default theme. See if the “drag and drop” function works.

    Cheers!
    Ismael

    in reply to: mobile search icon near the cart in mobile view #413347

    Hi!

    My bad. Add this to the Quick CSS field:

    @media only screen and (max-width: 989px) {
    .responsive.html_mobile_menu_tablet .main_menu .avia-menu, .responsive.html_mobile_menu_tablet .main_menu .avia-menu ul #menu-item-search {
      display: block;
      position: absolute;
      top: 0;
      right: 60px;
    }
    
    .responsive.html_mobile_menu_tablet .main_menu .avia-menu ul li{
      display: none;
    }}

    Regards,
    Ismael

    in reply to: Couple of problems with 3.1 update. #413344

    Hi!

    Alright. I didn’t notice the background colour right away. Add this to the functions.php file:

    add_action('wp_footer', 'ava_auto_resize');
    function ava_auto_resize(){
    ?>
    <script>
    (function($){	
    	$(window).on("resize", function (event) {
    		if (event.originalEvent === undefined) {
    			var alien = 'alien';
    			console.log(alien);
    		} else {
    			var human = 'human';
    			console.log(human);
    		}
    	}).resize();
    })(jQuery);
    </script>
    <?php
    }

    Remove browser cache then reload the page. You can try the suggestion above to adjust the background position.

    Regards,
    Ismael

    in reply to: Logo stretching on Safari #413086

    Hey!

    Please try this code:

    .avia-safari .logo img { height: 146px; min-height: 146px; }
    

    Regards,
    Ismael

    in reply to: Mega Menu not working #413063

    Hey!

    I created a mega menu for you. Set it as Enfold Main Menu if you want to check it: http://www.harlech.org/wp-admin/nav-menus.php

    Add this to the Quick CSS field to set the capitalization of the text to normal.

    h2.av-special-heading-tag {
      text-transform: none;
    }

    Cheers!
    Ismael

    in reply to: Boxed layout & custom logo size #413052

    Hi!

    It’s not possible to have full width elements when using the boxed layout, it is possible but it will take a lot of css modifications. It’s easier to use the stretched layout and create boxed containers inside the color section. Insert a color section add a custom id attribute in Section ID field. Use it to modify the style of the section container. Can you please provide a screenshot of the design that you want?

    Cheers!
    Ismael

    in reply to: Home page does not always show #412822

    Hey marinusvanschagen!

    Thank you for using Enfold.

    You don’t have to install the Layer Slider plugin because it is already included in the theme. Once the plugin is deactivated, the home page is working as expected. http://www.progarant.nl/

    Cheers!
    Ismael

    in reply to: Differentiate "auto responder subjects" #412817

    Hi!

    I think it’s better if you use the Contact Form 7 plugin. Set up the Mail 2 feature to create a different autoresponder content. http://contactform7.com/setting-up-mail/

    Cheers!
    Ismael

    in reply to: Edit destination link #412814

    Hi codecreative!

    Thank you for using Enfold.

    Yes, you need to remove the menu then add a custom link. There’s no option to change the link or url of menu items even on the default WP menu.

    Regards,
    Ismael

    in reply to: Advanced Styling funktioniert nicht #412813

    Hi!

    Can you please provide a screenshot of the title that you’re trying to change? I edited the H1 element in the Advanced Styling panel and it works fine. Note that advanced styling panel doesn’t contain all the elements on the theme so you still have to add custom css modifications if necessary.

    Regards,
    Ismael

    in reply to: theme options not updating on front end #412812

    Hi stiklewert!

    Thank you for using Enfold.

    Is the issue still happening? The menu is now white so I think the theme options are now working. If you can’t see the changes right away, try to hard refresh (CTRL + F5) the page.

    Best regards,
    Ismael

    Hi Erich Nolan!

    Thank you for using Enfold.

    I’m sorry but we don’t have access to the plugin so we can’t tell you for sure. I think it’s best to contact the plugin author. The theme does use the wp_head and wp_footer function, most themes do.

    Cheers!
    Ismael

Viewing 30 posts - 49,501 through 49,530 (of 66,166 total)