Forum Replies Created

Viewing 30 posts - 45,781 through 45,810 (of 66,103 total)
  • Author
    Posts
  • in reply to: Contact Form Bugs #498214

    Hey!

    Did you register the site on clouldflare or any cdn sites? Please refer to this link for a possible fix: https://kriesi.at/support/topic/contact-form-resetting-to-defaults/#post-391712

    Cheers!
    Ismael

    in reply to: Main menu: change link hover color on current page link #498210

    Hey!

    The current main menu hover color is set to #7373ff when I checked the page. Please provide a screenshot of what you’re seeing on your end and a screenshot of what you’re expecting to see. Use imgur or dropbox.

    Best regards,
    Ismael

    in reply to: Buttons not working on mobile. #498206

    Hi!

    Thank you for the confirmation. We will investigate the issue and provide an official patch on future update. If possible, please create a test page with a parallax color section and a button shortcode.

    Best regards,
    Ismael

    in reply to: Sidebars are removed or shifted after update #498205

    Hi!

    Starting from WP version 4.2, the register_sidebar function is required to have an id which breaks the theme’s custom widgets. You will find the assigned widgets relocated in the Appearance > Widgets > Inactive Widgets section. This is not going to happen again on future updates. Also, make sure not to use any special characters when creating a custom widget.

    Best regards,
    Ismael

    in reply to: Landing Page v1 missing #498200

    Hey!

    Which demo would you like to use? This is the shortcode of the v1 landing page style: http://pastebin.com/1ufPFeSb

    Regards,
    Ismael

    in reply to: Grid row layout component Issue #498193

    Hey!

    It does look broken. Can you please post the login details here? We will check the structure of the page.

    Regards,
    Ismael

    in reply to: Vertically centering text depending on image height #498191

    Hey!

    Great! Glad we could help. :)

    Cheers!
    Ismael

    in reply to: Moving a slider #498181

    Hey!

    I checked the page but I don’t see any space left between the header and slider. Do you need the title container in the home page? If not, use this css code:

    .home .title_container {
        display: none;
    }

    Add this code to adjust the padding of the main container:

    .html_header_top.html_header_sticky #top #wrap_all #main {
        padding-top: 150px;
    }

    Please turn on the custom css class: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Edit the slider element, look for the Custom CSS Class field. Add “custom-slider” for example then use this in the Quick CSS field to adjust the bottom margin:

    .custom-slider { margin-bottom: 10px !important; }
    

    Regards,
    Ismael

    in reply to: Alignment help for Bar above Main Menu & Breadcrumb #498178

    Hi!

    I’m sorry but what do you mean by “main container”? Can you please provide a screenshot of that area? Use imgur or dropbox for the screenshot. If you’re referring to the main container of the top bar, try to decrease the padding of the phone info and the minimum height of the container:

    .phone-info {
        padding: 2px 0;
    }
    
    #header_meta {
        min-height: 20px;
    }

    Best regards,
    Ismael

    in reply to: Headline Rotator doesn't display until I start scrolling #498174

    Hi James!

    Thank you for using Enfold.

    The page is password protected. Please post the password in the private field.

    Best regards,
    Ismael

    in reply to: Tag filter input for Blog Posts element #498172

    Hi!

    Thank you for the suggestions. You can post them here: https://kriesi.at/support/enfold-feature-requests/

    There is actually an available filter function called “avia_blog_post_query” for blog posts element that you can use to alter the query parameters.

    Example:

    add_filter('avia_blog_post_query', 'avia_modify_post_grid_query_desc');
    
    function avia_modify_post_grid_query_desc( $query ) {
    $query['orderby'] = 'title';
    $query['order'] = 'DESC';
    return $query;
    }

    Maybe, it will help.

    Cheers!
    Ismael

    in reply to: Center Logo on Mobile #498169

    Hi!

    The code above should work but there is a few missing css code. Please try this:

    @media only screen and (max-width: 767px) {
    .responsive #top .logo {
        width: 100%;
        text-align: center;
    }
    
    .responsive .logo img {
        display: inline-block;
    }
    }

    Remove browser cache then reload the page.

    Best regards,
    Ismael

    in reply to: Video on iPhone not working #498166

    Hey!

    Great! If you have more questions, let us know. :)

    Cheers!
    Ismael

    in reply to: My account ICON #498165

    Hi!

    This kind of layout is a bit too different from the default theme setup so it will require more than a few modifications. First, try to display the cart icon on mobile with this in the Quick CSS field:

    @media only screen and (max-width: 1024px) {
    nav.main_menu {
        display: block;
    }
    
    .avia-menu {
        display: none;
    }
    
    .html_header_top #menu-item-shop.cart_dropdown {
        right: -80px;
    }
    }

    Add this in the functions.php file to add the account icon:

    // add account icon
    add_action('ava_after_main_menu', function() {
    	echo "<a class='mobile-account' href='#'><img src='ACCOUNT IMAGE URL'></a>";	
    });

    In the Quick CSS field, add this afterwards:

    @media only screen and (min-width: 1024x) {
    .mobile-account {
     display: none;
    }
    }

    The code above will hide the account icon on desktop view. You can use additional css properties to adjust the position and style of the icon. Note that you need to create your own icon image, use that url in place of the “ACCOUNT IMAGE URL”.

    Regards,
    Ismael

    in reply to: Including shortcodes within tabs #498149

    Hi!

    The scripts and stylesheets are currently minified. Please try to disable the minify and cache plugin then check the page again. Make sure that you’re not looking on a cached version of the site.

    Best regards,
    Ismael

    in reply to: Parallax & Color Section #498147

    Hi!

    The parallax effect on the demo site is working when I checked it on chrome. The effect is a bit subtle compare to the parallax effect of the bridge theme but it’s there. Can you please provide a link to the page with the parallax background?

    Best regards,
    Ismael

    in reply to: LayerSlider Not Working with Chrome #498146

    Hey!

    Please refer to this link for a possible fix: https://kriesi.at/support/topic/advanced-layerslider-not-showing-images/#post-441910

    Best regards,
    Ismael

    in reply to: Background overlay on Masonry grid #498142

    Hey Emilvillumsen!

    Thank you for using Enfold.

    I can’t seem to access the site including the background image for some reason. Is there any security block or something? Anyway, try to use this in the Quick CSS field:

    .av-masonry-entry:before {
        content: '';
        display: block;
        min-height: 500px;
        width: 100%;
        z-index: 1000;
        position: absolute;
        opacity: 0.3;
        background-color: #515151;
        background-image: url(https://laserhoofs.ninja/wp-content/themes/enfold/images/background-images/wool-diagonal-for-dark-background.png);
        background-repeat: repeat;
    }

    Regards,
    Ismael

    in reply to: News Slider #498140

    Hey!

    Please post the login details here so that we can set it up for you. If you want to do it yourself, edit the home or front page then switch to the advance layout builder. Look for the Content Elements panel, from there you’ll find the Post Slider element.

    Regards,
    Ismael

    in reply to: Produktfilter-Plugin wird überschrieben #498139

    Hey daeumling!

    Thank you for using Enfold

    We don’t know how the plugin works but you can use this in the functions.php file to remove the theme’s filter:

    remove_action( 'woocommerce_before_shop_loop', 'avia_woocommerce_frontend_search_params', 20);
    

    Please contact the plugin author for more info.

    Regards,
    Ismael

    in reply to: Gallery lightbox images too big #498137

    Hey boxedupmedia!

    Thank you for using Enfold.

    The lightbox will use the Settings > Media > Large thumbnail option. You can adjust the max width and height then regenerate the thumbnails: https://wordpress.org/plugins/force-regenerate-thumbnails/

    Best regards,
    Ismael

    in reply to: Blog post element not visible #498136

    Hi!

    Thank you for using Enfold.

    Are you referring to the first element after the search box? It is displaying the blog posts. Can you please provide a screenshot of the issue?

    Regards,
    Ismael

    in reply to: Ajax Portfolio – Mouse Rollover Options #498134

    Hey!

    Thank you for using Enfold.

    1.) The overlay effect is part of a different script so changing the arrow to the portfolio item title is not possible.

    2.) I’m not so sure what you mean by this. Can you please provide a screenshot?

    3.) By captions, I think you’re referring to the Ajax Portfolio Preview Settings in the portfolio item editor. You can find it below the text editor.

    Regards,
    Ismael

    in reply to: DataTables with Enfold #498132

    Hi!

    You can load the table in an iframe then set the thead container of the table to fixed position. Or try to add this in the Quick CSS field:

    #overstock > thead {
        position: fixed;
        top: 310px;
        z-index: 10000;
    }

    Might need a few adjustments for mobile devices.

    Cheers!
    Ismael

    in reply to: Fullscreen Slider 3 buttons? #497535

    Hey!

    Add this in the Quick CSS field:

    #top .avia-caption-content a {
        text-decoration: none;
    }

    Best regards,
    Ismael

    in reply to: Fullwidth images #497534

    Hey!

    Yes, if we modify it via css, all posts with featured image will be affected. You can contact codeable if you want to create a custom option: http://kriesi.at/contact/customization

    Best regards,
    Ismael

    in reply to: CSS-Styles werden nicht geladen #497532

    Hi!

    Glad it is fixed. Let us know if the issue turns back. :)

    Cheers!
    Ismael

    in reply to: sidebar which shows menu items #497530

    Hi!

    You can enable the Enfold > Sidebar Settings > Page Sidebar navigation. It will automatically create a list of child pages in the sidebar. First, you need to set a parent page: https://en.support.wordpress.com/pages/page-attributes/

    Regards,
    Ismael

    in reply to: expand Accordions on load #497529

    Hey!

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

    Add the class selector in the previous code.

    Regards,
    Ismael

    in reply to: Tablet Portrait Columns & Ajax Portfolio Slideshow #497526

    Hey!

    1. )

    1. open a project in the grid with ajax preview
    2. close the preview
    3. open the same project in preview again
    4. the slideshow doesn’t show anymore

    Slideshow Issue: I was able to reproduce the issue and I noticed that it is only happening on portfolio items with images that are not fully loaded yet. If you wait for a few seconds, the slideshow will turn up eventually. Maybe, if you can optimize the images then install a cache plugin then it will be fixed.

    2.) Scrolling Issues: The site is pretty smooth on chrome, windows 7 and 8. I’m pretty sure you’re experiencing the “lag” issue when you use the middle mouse scroll wheel. Note that if you use the scroll wheel, it will jump a few pixels (roughly 10px or 15px) up or down, creating a lag-like experience on any websites. If you try the actual scroll bar of the browser, you’ll see the difference. Try to check other websites with parallax effect, use the mouse scroll wheel versus the browser scrollbar. Example: http://www.superlime.fr/

    Regards,
    Ismael

Viewing 30 posts - 45,781 through 45,810 (of 66,103 total)