Forum Replies Created

Viewing 30 posts - 541 through 570 (of 25,536 total)
  • Author
    Posts
  • in reply to: 2 different imported fonts #1417557

    Hi BenjaminSpeedtsberg,

    Did you rename the zip file? if it uses different name for the zip file, it should not overwrite another.
    Or you can try the instructions posted here by @Guenni007 https://kriesi.at/support/topic/font-weights-all-400-when-importing-font-file/#post-1362386

    Best regards,
    Nikko

    in reply to: Adding a custom font to a special heading #1417551

    Hi tcampaner,

    I have added the WP Code plugin to add this PHP snippet (to add the Archivo Font):

    add_filter( 'avf_available_google_fonts', 'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    	$fonts['Archivo'] = 'Archivo:400,900';
    	return $fonts;
    }

    This will add the Archivo font in the Font dropdown.
    You’ll need to add this atleast once, you could add it in Advanced Styling > H1 and that should do the job.
    If you want to use it on other elements, then you can just add this CSS Code:

    #top .element h2 {
        font-family: 'archivo',Helvetica,Arial,sans-serif;
        font-weight: 900;
    }

    Hope it helps.

    Best regards,
    Nikko

    Hi elenapoliti,

    I tried to test the Search & Filter Pro plugin however I can’t seem to make it work with

    [searchandfilter id="123456" action="filter_next_query"]

    There’s a avia_post_grid_query filter in Portfolio Grid where you can filter in the query, and I tried to modify it according to the instructions however it doesn’t work.
    The only one that actually worked for me is

    [searchandfilter id="123"]
    [searchandfilter id="123" show="results"]

    But it will need some modifications with CSS to make it look like portfolio grid, which I think is the easier approach.
    I also tested infinite scroll but could not get it to work even with a WordPress Default theme.

    Best regards,
    Nikko

    Hi elenapoliti,

    I apologize for the delayed response.
    The issue seems a bit tricky, the pagination that comes with portfolio grid does not work in this case because the Post Number is set to All instead of putting a certain number.
    I’m not really sure how it works with our page builder but please try to use Infinite Scroll instead of pagination: https://searchandfilter.com/documentation/search-results/infinite-scroll/

    Best regards,
    Nikko

    in reply to: Header Button Menu element text color #1417367

    Hi jasonlthornton,

    Please try to add this CSS code in Enfold > General Styling > Quick CSS:

    #top #header #avia-menu .av-menu-button .avia-menu-text {
        color: black;
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Phone number text larger and different color #1417366

    Hi jasonlthornton,

    Please try to add this CSS code in Enfold > General Styling > Quick CSS:

    #top #header_meta #menu-item-3738 a {
        color: white;
        font-size: 14px;
    }

    Hope it helps.

    Best regards,
    Nikko

    Hi Dominic,

    You’re welcome :)
    As for the issue you mentioned, the reason is because you have an empty 1/5 column and a 4/5 column on the page, here’s the fix for it (the code is only specific to the page you gave):

    @media only screen and (max-width:767px) {
        #top.page-id-26 .av_four_fifth {
            width: 100%;
        }
    }

    If this needs to be applied in multiple page, or other pages in the future just let us know.

    Best regards,
    Nikko

    in reply to: Social media icon in footer #1417065

    Hi Lene,

    Please try to add this CSS code:

    #top #footer .widget .social_bookmarks {
        margin-top: -10px;
    }

    Just adjust the value as you see fit.

    Best regards,
    Nikko

    in reply to: Enfold-child css and functions #1417059

    Hi limesolutions,

    You’re welcome :)
    I’m glad that we could help you.

    Best regards,
    Nikko

    in reply to: second font will overwrite first font after import #1417057

    Hi rixi,

    I see, but Custom Font Manager only registers the font but does not apply them, it will only show up as font options on the font fields.
    You have to select it in General Styling > Fonts > Heading Font.

    Best regards,
    Nikko

    in reply to: Enfold-child css and functions #1417056

    Hi limesolutions,

    You have a caching plugin, try to flush it out.
    If it’s not the plugin then maybe there’s a built-in caching on your server (hosting provider), some hosting platforms seems to have this unclearable cache.
    You may also want to try to go to Enfold > Performance, then enable Show Advanced Options and try different settings in there, or try to disable CSS File Merging And Compression.
    Hope it helps.

    Best regards,
    Nikko

    Hi elenapoliti,

    What was the version of Enfold that the Search & Filter plugin was working?

    Best regards,
    Nikko

    in reply to: second font will overwrite first font after import #1417047

    Hi rixi,

    Can you give us the steps on how you do things? and we’ll try to reproduce it and see if we can make any recommendations.

    Best regards,
    Nikko

    in reply to: Social media icon in footer #1417046

    Hi Lene,

    If we align it to the left, when you hover over it and shows up as a button then it would not be aligned to the left on hover.
    Should we remove the hover effect and just align it to the left?

    Best regards,
    Nikko

    in reply to: Enfold-child css and functions #1417045

    Hi limesolutions,

    Thanks for giving us admin access.
    I have moved the CSS code from Appearance > Customize to style.css of the child theme and it works.
    Although you can’t see style.css you will see the style reflected on the page and you can inspect the element to make sure it’s there, it’s just merged with other css files and then minified.

    Best regards,
    Nikko

    Hi Dominic,

    There’s actually an option for that but it is only applicable for browser width below 990px, you can see it in Enfold > Theme Options > Main Menu > General > Menu Items for Mobile.
    However, your site needs a larger width, so we’ll have to use custom css for it (in most cases the first code I gave is sufficient but in your case there’s some additional modification), please replace it with this code:

    @media only screen and (max-width: 1366px) {
        .responsive #top .av-main-nav .menu-item-avia-special {
            display: block !important;
        }
    
        .responsive #top .av-main-nav .menu-item {
            display: none !important;
        }
    
        .responsive #top #wrap_all #header {
            width: 100%;
        }
        
        .responsive #top #wrap_all .container {
            width: 85%;
            max-width: 85%;
            margin: 0 auto;
            padding-left: 0;
            padding-right: 0;
            float: none;
        }
        
        .responsive #top #wrap_all .main_menu {
            top: 0;
            height: 80px;
            left: auto;
            right: 0;
            display: block;
            position: absolute;
        }
    
        .responsive #top:not(.home) #wrap_all .container .logo {
            padding-top: 20px;
            padding-bottom: 20px;
        }
    
        .responsive #top:not(.home) #wrap_all .container .logo img {
            max-height: 120px;
            width: auto;
        }
    
        #top #av-burger-menu-ul {
            padding: 188px 0 !important;
        }
    }

    Best regards,
    Nikko

    Hi Tia,

    I’m glad that you have fixed the issue :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    Hi Frank,

    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Text block: Underlined link #1417019

    Hi Lene,

    Please try to add this CSS code:

    #top #socket a:hover {
        text-decoration: underline;
    }

    Best regards,
    Nikko

    in reply to: Question before purchase #1417018

    Hi Monica,

    Thanks for contacting us!
    You will need to check if the API key or Envato private token is filled in, in Enfold > Theme Updates.
    If the theme is bought from Themeforest then it should allow the theme to update.

    Best regards,
    Nikko

    in reply to: Grid row height mobile #1417017

    Hi stephaniebLOS,

    Please try to add this CSS code in Enfold > General Styling > Quick CSS:

    @media only screen and (max-width:767px) {
      #welcome .flex_cell {
        min-height: auto;
      }
    
      #welcome .flex_cell .hr {
        display: none;
      }
    
      #welcome .flex_cell .av-special-heading {
        margin: 30px 0;
      }
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Fullscreen Slider Mobile #1417016

    Hi stephaniebLOS,

    Please try to add this CSS code in Enfold > General Styling > Quick CSS:

    @media only screen and (max-width:767px) {
      #top .avia-fullscreen-slider .avia-slideshow {
        max-height: 50vh;
      }
    }

    Just change the value, 50vh is 50% of the vertical height of the screen.
    Hope this helps.

    Best regards,
    Nikko

    in reply to: second font will overwrite first font after import #1417015

    Hi rixi,

    You can set the font for headings for all in General Styling > Fonts > Heading Font.
    Then for specific heading tags like h1, you can set it separately in Advanced Styling.
    Hope this helps.

    Best regards,
    Nikko

    in reply to: Social media icon in footer #1417014

    Hi Lene,

    Thanks for giving us admin access.
    I have added the code:

    function social_bookmarks_shortcode() {
      $social_args = array('outside'=>'ul', 'inside'=>'li', 'append' => '');
      $social = avia_social_media_icons($social_args, false);
      return $social;
    }
    add_shortcode('social-bookmarks', 'social_bookmarks_shortcode');

    in functions.php of the child theme and it worked properly.
    Please review your website.

    Best regards,
    Nikko

    Hi Elena,

    Can you setup a staging site for us?
    Also, please tell us the steps required to reproduce the issues.

    Best regards,
    Nikko

    in reply to: filter option on a listing #1417012

    Hi JeSchami,

    Is it possible to integrate a direct language in the automatic reply. such as Dear Ms. Mustermann.
    It’s possible using this filter: avf_form_custom_autoresponder
    Please try to check this thread: https://kriesi.at/support/topic/contact-form-changes-after-enfold-update/

    And the information is drawn from what he entered in the form?
    I think you may need an advanced form with some conditional logic built-in it.
    For free contact form plugin, you can try contact form 7 and add another plugin called conditional fields: https://developerrocket.com/how-to-add-conditional-fields-using-contact-form-7/
    But if you want a more convenient and user-friendly one, a paid one like gravityforms has this feature.

    Best regards,
    Nikko

    Hi dominictschupp,

    Can you try to change the code I gave with this one:

    @media only screen and (max-width: 1366px) {
        .responsive #top .av-main-nav .menu-item-avia-special {
            display: block !important;
        }
    
        .responsive #top .av-main-nav .menu-item {
            display: none !important;
        }
    
        .responsive #top #wrap_all #header {
            width: 100%;
        }
        
        .responsive #top #wrap_all .container {
            width: 85%;
            max-width: 85%;
            margin: 0 auto;
            padding-left: 0;
            padding-right: 0;
            float: none;
        }
        
        .responsive #top #wrap_all .main_menu {
            top: 0;
            height: 80px;
            left: auto;
            right: 0;
            display: block;
            position: absolute;
        }
    
        .responsive #top:not(.home) #wrap_all .container .logo {
            padding-top: 20px;
            padding-bottom: 20px;
        }
    
        .responsive #top:not(.home) #wrap_all .container .logo img {
            max-height: 120px;
            width: auto;
        }
    }

    Best regards,
    Nikko

    in reply to: Table is not updated correctly in Firefox #1417010

    Hi blende64,

    Can you try to update the latest Enfold version and maybe temporarily disable any caching plugins?

    Best regards,
    Nikko

    in reply to: Enfold-child css and functions #1416939

    Hi limesolutions,

    To assist you further, please provide us with your login credentials by following these steps:

    1. Install and activate the “Temporary Login Without Password” plugin. You can find it here.
    2. Once activated, navigate to “Users > Temporary Logins” in the left-side menu.
    3. Click on “Create New” to generate a temporary login.
    4. Enter the email address for the account (you can use (Email address hidden if logged out) ) and select the highest possible role. Set the expiry date to around four days to ensure enough time for debugging.
    5. Click “Submit” to create the temporary account.
    6. In the private section, provide us with the URL that allows us to access the temporary login and assist you.

    Please note that once your issue is resolved, you can remove the plugin. Alternatively, if you prefer not to use the plugin, you can manually create an admin user and share the login credentials in the “private data” field.

    If you have any further questions or concerns, please let us know.

    Best regards,
    Nikko

    in reply to: Table is not updated correctly in Firefox #1416938

    Hi blende64 ,

    I’m not really sure what the problem could be, does the customer use some firefox extensions?

    Best regards,
    Nikko

Viewing 30 posts - 541 through 570 (of 25,536 total)