Forum Replies Created

Viewing 30 posts - 46,741 through 46,770 (of 66,033 total)
  • Author
    Posts
  • in reply to: One page menu anchors #468107

    Hey!

    I think it will help if you read the documentation about single page navigation. You can find it here: http://kriesi.at/documentation/enfold/add-anchors-to-your-page-for-single-page-navigation/

    You don’t need to modify any files.

    Regards,
    Ismael

    in reply to: Widget in sidebar disappear (in responsive) #468104

    Hi!

    You can try this instead:

    add_action('wp_footer', 'ava_custom_script', 10);
    function ava_custom_script(){
    ?>
    <script>
    (function($) {
        if($('.responsive.html_mobile_menu_tablet #advanced_menu_hide').css('display') == 'block') {
          $('#top #main .sidebar').insertBefore('.container .av-content-small.units');
        }
    }(jQuery));
    </script>
    <?php
    }

    Cheers!
    Ismael

    in reply to: Theme broke after activation #467452

    Hi navdd!

    Thank you for using Enfold.

    Maybe the update is incomplete. Please try to delete the entire enfold folder in the themes directory then replace it with a new one You can download the files directly in your themeforest account.

    Best regards,
    Ismael

    in reply to: Hide Fullwidth Sub Menu #467437

    Hey gigoz!

    Thank you for using Enfold.

    Turn on the custom css class in order to apply a unique class attribute to the submenu element: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Use css media query in the Quick CSS field to hide the element on mobile device.

    Cheers!
    Ismael

    in reply to: Where to put the language files? #467435

    Hi Edi!

    Thank you for using Enfold.

    Are you trying to translate the frontend of the site? or the wp dashboard? You don’t have to copy or rename any files. Please refer to this link for more info: https://codex.wordpress.org/Installing_WordPress_in_Your_Language

    Best regards,
    Ismael

    in reply to: Not Google mobily friendly #467431

    Hey bts-de!

    Thank you for using Enfold.

    Please provide a link to the actual website so that we can check it. You can just the ignore the warnings though because they don’t really affect the website.

    – Content wider than the screen

    Floating objects or containers can trigger this warning. Third party plugins that creates containers usually cause the issue.

    – Links are too close together

    We can separate the links by adding more padding or margin around them.

    Best regards,
    Ismael

    in reply to: Setting different slider heights #467428

    Hey!

    You need to use the google inspector or the firebug plugin in order to inspect the html codes. Or right click the page then click “View Source. Look for the body tag. You should see the id as one of the class attribute.

    Best regards,
    Ismael

    in reply to: shop demo responsive images with overlay #467427

    Hi lobstahhhhhhh!

    Thank you for using Enfold.

    Those are Image elements inside the grid row cells with 0 padding. Just add a grid row element then set the cells to 4 1/4s. Set the cell paddings to zero. Add the Image element on each cells.

    Regards,
    Ismael

    in reply to: full width easy slider #467426

    Hey Maher!

    Thank you for using Enfold.

    What do you mean by ‘it does not work”? Any specific issues? A link to the site will help. Make sure that you have the latest version of the theme which is 3.2.1.

    Regards,
    Ismael

    in reply to: slideshare can not open to full screen #467425

    Hi!

    I checked the page and the “View Fullscreen” toggle is working. On what browser are you testing this? I’m sorry but we don’t provide support for third party plugins as stated on our support policy but when we do, it is only to a limited extent.

    Cheers!
    Ismael

    in reply to: WPML theme options doesn't work #467424

    Hey datibus!

    Thank you for using Enfold.

    Please give us a link to the website. If you have access to the cpanel, check if the languages’ css files are being generated on wp-content > uploads > dynamic_avia folder. You should see multiple css files with file name, enfold_language.css.

    Cheers!
    Ismael

    in reply to: Socket background image not working #467420

    Hey!

    Try to set the domains and domains/mogadorcosmetics.nl directory to 755. The theme needs to be able to write to the directory in order to update the theme’s css file. When I try to update the theme options, the version of the css file inside the dynamic_avia folder is not being updated:

    http://nieuw.mogadorcosmetics.nl/wp-content/uploads/dynamic_avia/mogador_cosmetics.css?ver=5559ff0309600

    Cheers!
    Ismael

    in reply to: Directory config-events-calendar #467407

    Hi Edi!

    Thank you for using Enfold.

    Yes, it will make sure that the plugin is compatible with the theme. Did you find any issues with it?

    Cheers!
    Ismael

    in reply to: NO COMMENTS INPUT SCREEN #467401

    Hey emin!

    Thank you for using Enfold.

    The comments section should be enabled by default unless you build the post by using the advance layout builder. You have to add the “Comments” element manually. Make sure that you enabled the comments in the Settings > Discussions panel.

    Best regards,
    Ismael

    in reply to: Customizing error404 page #467400

    Hi!

    You need to modify the includes > error404.php file in order to do that. Separate the section by enclosing them inside a column. By section, I mean this line of codes:

    <p class='entry-content'><strong><?php _e('Nothing Found', 'avia_framework'); ?></strong><br/>
    
    <?php _e('Sorry, the post you are looking for is not available. Maybe you want to perform a search?', 'avia_framework'); ?>
    </p>
    <?php
    
    		if(isset($_GET['post_type']) && $_GET['post_type'] == 'product' && function_exists('get_product_search_form'))
    		{
    			get_product_search_form();
    		}
    		else
    		{
    			get_search_form();
    		}
    
    ?>
    
    <div class='hr_invisible'></div>
    

    And this one:

    <section class="404_recommendation">
        <p><?php _e('For best search results, mind the following suggestions:', 'avia_framework'); ?></p>
        <ul class='borderlist-not'>
            <li><?php _e('Always double check your spelling.', 'avia_framework'); ?></li>
            <li><?php _e('Try similar keywords, for example: tablet instead of laptop.', 'avia_framework'); ?></li>
            <li><?php _e('Try using more than one keyword.', 'avia_framework'); ?></li>
        </ul>
    
        <div class='hr_invisible'></div>
    
        <h3 class=''><?php _e('Feel like browsing some posts instead?', 'avia_framework'); ?></h3>
    
        <?php
        the_widget('avia_combo_widget', 'error404widget', array('widget_id'=>'404',
                'before_widget' => '<div class="widget avia_combo_widget">',
                'after_widget' => '</div>',
                'before_title' => '<h3 class="widgettitle">',
                'after_title' => '</h3>'
            ));
            
        do_action('ava_after_content', '', 'error404');
        ?>
    </section>
    

    Best regards,
    Ismael

    in reply to: Masonry Gallery with Lightbox – Possible? #467397

    Hey!

    Did you place the masonry_entries.php code inside the “shortcodes” folder? This code will check for the ALB elements in the “shortcodes” folder:

    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    function avia_include_shortcode_template($paths)
    {
    	$template_url = get_stylesheet_directory();
        	array_unshift($paths, $template_url.'/shortcodes/');
    
    	return $paths;
    }

    This process is still not future-proof because we might add or fix codes on the original file that will then be ignored because you have an existing file inside the child theme folder. The best thing to do is to create a change log or a note about this modification in case you update the theme.

    Regards,
    Ismael

    in reply to: Background Image and mobile RESIZE #467396

    Hey!

    Alright. Let us know if the background of the section is still showing there.

    Best regards,
    Ismael

    Hey DROR!

    Thank you for using Enfold.

    You can add this:

    #top .av-subnav-menu li .sub-menu li a {
      background-color: #37a8e0;
    }

    Best regards,
    Ismael

    in reply to: One Page – Photo in background not responsive #467391

    Hi mike1270!

    Thank you for using Enfold.

    You can set the background size to 100% but there’s a chance that the background image will be distorted:

    .avia-section {
      background-size: 100% 100%;
    }
    

    Regards,
    Ismael

    Hey!

    Thank you for using Enfold.

    The parallax effect may vary on different screen resolutions so it’s up to you to decide which works best for your site. I think 2560 × 1440px is not a common resolution for monitors. According to StatCounter, the most used resolution is 1366 x 768px so working on screen resolution between 1920 × 1080px and 1600 x 900px is your sweet spot.

    To give you a better idea, I think we should look on the demo site. Check the parallax section at the very bottom of this page: http://kriesi.at/themes/enfold/homepage/home-v8-frontpage-shop/

    This is the background image: http://kriesi.at/themes/enfold/files/2013/06/slide3_bg.png

    And if you check the “A Beautiful Experience” section in this page: http://kriesi.at/themes/enfold/homepage/home-v9-videos-and-parallax/

    .. this is the background image that is being used: http://kriesi.at/themes/enfold/files/2014/02/photodune-2708157-meat-balls-m-1000×1500.jpg

    As you can see, the image sizes are completely different but it kind of work well with the page. Don’t get caught up with the “right” height or width of the background images because there is none. It’s actually a hit and miss experiment. Regarding the image cropped, it’s because the background size property of the parallax container is set to “cover” which means that it will:

    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

    This will also keep the aspect ratio of the images.

    Regards,
    Ismael

    in reply to: Header löst sich im Chlid-Theme #467386

    Hey Luxususer!

    Thank you for using Enfold.

    I checked the html code of the page and then I found this:

    "GGG"
    <test>ggg+</test>
    "GGG"
    

    Where do you think it comes from? It is located above the wrap_all container.

    Best regards,
    Ismael

    Hey Cropsnc!

    Thank you for using Enfold.

    Yes, I think that’s possible but it will require custom modification that we can’t provide here. Anyway, there’s a built in widget that you can use to display product attributes. Go to Appearance > Widgets then look for the Woocommerce Layered Nav widget.

    Best regards,
    Ismael

    Hey!

    I’m not sure if this is an issue with the separator element or the color section. I tried to relocate the separators and the page is suddenly fixed: http://nuitsjaunes.com/test/

    Best regards,
    Ismael

    in reply to: layerslider delay when loading page #467378

    Hi piemoo!

    Thank you for using Enfold.

    I think the slider is trying to compensate for the video height to keep the video’s aspect ratio so it automatically adjust its height to contain the whole video. How did you add the video? We would like to test it on our own installation. Have you tried using the full width easy slider?

    Regards,
    Ismael

    in reply to: proper logo resize #467374

    Hi!

    You should create another logo specifically for mobile device because the text in the original logo is a bit too small. Use this in the Quick CSS field to remove the default logo then add the mobile logo as background:

    @media only screen and (max-width: 767px) {
    .responsive #top .logo {
      background-image: url('http://efl.wienerpresswerk.at/wp-content/uploads/2015/06/mobile_logo.gif');
      background-size: 100%;
      background-repeat: no-repeat;
    }
    
    .logo img { display: none; }
    }

    Regards,
    Ismael

    in reply to: Forms #467370

    Hi Bruno!

    Thank you for the heads up. I tried to reproduce the issue by adding a checkbox element and then disabling the label but there is no error. How can we reproduce the issue? We will ask Kriesi to include it on the next update if we got an error confirmation.

    Cheers!
    Ismael

    in reply to: set font for tagline in mobile version #467364

    Hi!

    Do you have the actual Bradley Hand ITC font file? It works on desktop or pc because the system recognize the font but on mobile device like iPhone, the font is not locally available on the system so it’s not working. You have to purchase the font in order to use it. https://www.myfonts.com/fonts/itc/bradley-hand/

    You can use google fonts which is free as an alternative.

    Regards,
    Ismael

    Hi slinder!

    Thank you for using Enfold.

    Youtube or Vimeo videos should autoplay when set as color section background on desktop view but take note that videos are purposely disabled on mobile devices. You should enable the Hide video on Mobile Devices? option then set a custom background image for mobile devices.

    Hide video on Mobile Devices?
    You can chose to hide the video entirely on Mobile devices and instead display the Section Background image
    Most mobile devices can’t autoplay videos to prevent bandwidth problems for the user

    A link to the actual site will help.

    Regards,
    Ismael

    in reply to: menu bar #467359

    Hey Welmoed!

    Thank you for using Enfold.

    Please go to Users > your profile > enable the Show Toolbar when viewing site.

    Regards,
    Ismael

    in reply to: Element Spacing with Avia Layout Builder #467358

    Hey darranreadman!

    Thank you for using Enfold.

    I checked the site but I’m not sure which spacing or gap you would like to get rid of. Please provide a screenshot.

    Best regards,
    Ismael

Viewing 30 posts - 46,741 through 46,770 (of 66,033 total)