Forum Replies Created

Viewing 30 posts - 47,251 through 47,280 (of 67,591 total)
  • Author
    Posts
  • in reply to: Removing Line under hyper links only works on some pages #498785

    Hi!

    They don’t seem to be connected at all. Since we didn’t see the link with the issue, we won’t be able to tell what causes it. It might be from a rogue style sheet from a plugin or something else. Anyway, glad you fixed it. :)

    Cheers!
    Ismael

    in reply to: Header widget not displaying on iPhone 6+ #498784

    Hi!

    Does the iphone have retina display? Try to use this css media queries to adjust the element: https://css-tricks.com/snippets/css/retina-display-media-query/

    Regards,
    Ismael

    in reply to: HTML BLOCK #498783

    Hey!

    Looks like the code also affects the theme’s logo. Add a color section then place a code block element inside. In the code block element, add this code:

    <div class="container">
    <img class="logo-custom" src="http://www.7emezzastudio.it/TEST/logo-edit.png">
    <img class="due" src="http://www.7emezzastudio.it/TEST/2.png" />
    <img class="scritta" src="http://www.7emezzastudio.it/TEST/scritta.png" />
    </div>
     
    <script src="http://cdnjs.cloudflare.com/ajax/libs/gsap/1.17.0/TweenMax.min.js"></script>
    <script src="http://www.7emezzastudio.it/TEST/main.js"></script>

    After, modify this file http://www.7emezzastudio.it/TEST/main.js. Replace this line of code:

    TweenLite.to(".logo" , 3, {x:460, rotation:360, ease: Bounce.easeOut})
    

    ..with this:

    TweenLite.to(".logo-custom" , 3, {x:460, rotation:360, ease: Bounce.easeOut})
    

    I’m not sure how the TweenLite script actually works so you have to contact the plugin author regarding the correct settings.

    Cheers!
    Ismael

    in reply to: Enfold 3.3.2 breaks WPML with Domains #498782

    Hi!

    Thank you for creating the test site. Yes, we need to access the dashboard. Please post the login details in the private field. Have you tried flushing the Settings > Permalink options?

    Cheers!
    Ismael

    in reply to: Button Issue on Mobile Devices #498781

    Hi!

    Can you please recreate the test page? We found other threads confirming the issue. If I remember correctly, you have an iPhone with retina display. Is this happening on mobile devices without retina display?

    Regards,
    Ismael

    in reply to: Grid row layout component Issue #498779

    Hi!

    Looks like you combined shortcodes plus html codes inside the code block element. There is a note in a code block:

    “Enter some text/code. You can also add plugin shortcodes here. (Adding theme shortcodes is not recommended though)”.

    It is not recommended to use theme shortcodes inside a code block because a combination of shortcodes and html codes tend to break the layout of the builder. Removing the search widget doesn’t seem to fix the issue.

    Cheers!
    Ismael

    in reply to: My account ICON #498778

    Hi!

    Replace the code in functions.php if you want to use the icon font:

    // add account icon
    add_action('ava_after_main_menu', function() {
    	echo '<a class="mobile-account" href="#"><span class="av_font_icon avia_animate_when_visible av-icon-style-  av-no-color avia-icon-pos-left  avia_start_animation avia_start_delayed_animation" style=""><span class="av-icon-char" style="font-size:40px;line-height:40px;" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></span></span></a>';	
    });

    I’m sorry but I don’t see why you have to add it above the header? According to the screenshot, you want to align the icons on a single file.

    Cheers!
    Ismael

    in reply to: Translation Upcoming #498777

    Hi!

    What is the language which you want to translate it to? Please access the theme folder via FTP then look for the “lang” folder. Look for the language file (.po), edit it then add this code at the very bottom:

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/events_countdown.php:210
    msgid "Upcoming"
    msgstr "TRANSLATION HERE"
    

    Save the file. Go to the Loco Translate plugin again then compile or sync the language files.

    Cheers!
    Ismael

    in reply to: Mailchimp integration failure #498776

    Hey Sanderkleijn!

    Thank you for using the theme.

    The site redirects to a facebook page. When I tried to access the wp admin directly, an error has occured:

    Parse error: syntax error, unexpected '}' in /var/www/qb102298/data/www/bijzonderkleijn.nl/wp-content/themes/enfold-child/functions.php on line 10
    

    http://www.bijzonderkleijn.nl/wp-admin/

    Cheers!
    Ismael

    in reply to: Bild im Headerbereich wird nicht gestreckt #498773

    Hey ideenheimat!

    Thank you for using Enfold.

    Did you add the header in the general styling > header panel? Try to add this in the Quick CSS field:

    .header_color .header_bg {
        background-size: cover;
    }

    Cheers!
    Ismael

    in reply to: Whitespace erzeugt dennoch Linie #498772

    Hey Phybo!

    Thank you for using Enfold.

    The theme automatically creates section for every element outside a color section, grid row or any main container. And each section content contains a 50px padding, top and bottom. Try to relocate the separator inside the grid row cells. If the grid row element contains 2 cells, add the same separator on each cells.

    Cheers!
    Ismael

    in reply to: Responsive version: Headlines are not shown in a whole… #498771

    Hi!

    The titles’ are a bit long so decreasing the font size is not a good option. If you want to try it, add this:

    @media only screen and (max-width: 767px) {
    .template-page .entry-content-wrapper h1, .template-page .entry-content-wrapper h2 {
        font-size: 11px !important;
    }
    }

    Cheers!
    Ismael

    in reply to: Background overlay on Masonry grid #498770

    Hey!

    What happens when you add more masonry items? I have a monitor with 1920x1080px resolution but the issue is barely visible. Let’s hope that adding more items correct the alignment.

    Best regards,
    Ismael

    Hi!

    Try to use this:

    function avf_accordion_entries_query_mod($query, $params) {
        $query['category__not_in'] = array( 27, 18 );
        return $query;
    }
    add_filter('avf_accordion_entries_query','avf_accordion_entries_query_mod');

    Again, you can add a unique category to the posts that you want to exclude. Use the id of that category to replace 27 and 18 in the example above.

    Best regards,
    Ismael

    in reply to: Unable to clear selection in WooCommerce Layered Nav Filter #498237

    Hey!

    The href attribute of the chosen product attribute is empty. Did you add any modifications in the theme (functions.php etc.)? Please post the login details here, we would like to check it.

    Best regards,
    Ismael

    in reply to: Responsive version: Headlines are not shown in a whole… #498221

    Hi!

    The word-break property is not set. Try to use this in the Quick CSS field:

    .template-page .entry-content-wrapper h1, .template-page .entry-content-wrapper h2 {
        word-break: break-word;
    }

    Cheers!
    Ismael

    in reply to: remove margins in color section & fullsize images #498219

    Hey!

    Can you please provide a link to the actual page? Try to set the image as Custom Background Image of the grid row cell.

    Cheers!
    Ismael

    in reply to: Static button in Advanced Layerslider #498217

    Hi!

    What if you add another color section with the button below the slider? Apply a negative top margin to the section to move it upwards in front of the slider. Use the “Section ID ” field to distinguished that specific color section from other section in the page.

    Best regards,
    Ismael

    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

Viewing 30 posts - 47,251 through 47,280 (of 67,591 total)