Forum Replies Created

Viewing 30 posts - 2,281 through 2,310 (of 25,536 total)
  • Author
    Posts
  • in reply to: Remove time from Sidebar-Blog #1369333

    Hi Arantza,

    Thanks for giving us admin access.
    I have removed the code I have given in Quick CSS and have installed and activated this plugin: WPCode – Insert Headers and Footers + Custom Code Snippets – WordPress Code Manager then added Mike’s code and saved it (named it: Remove Time from Enfold Latest News Widget) and it worked well.
    I have also removed this code in your Quick CSS:

    /* link logo para idiomas diferentes */
    
    add_filter(‘avf_logo’,’av_change_logo’);
    function av_change_logo($logo)
    {
    $lang = pll_current_language(‘locale’);
    switch ($lang) {
    case 'de_AT':
    $logo = “/wp-content/uploads/2022/07/Aespa-Logo_ES.png”;
    break;
        case 'es_ES':
    $logo = “/wp-content/uploads/2022/10/Aespa-Logo_DE.png”;
    break;
    }
    
    return $logo;
    }

    This code will not run since it’s not CSS and may cause unintentional behavior.

    Best regards,
    Nikko

    Hi asociacionespanolaaustria,

    Please try to check this article: https://answeryourtech.com/how-to-stop-putting-uploads-into-month-and-date-folders-in-wordpress/
    Hope it helps.

    Best regards,
    Nikko

    in reply to: Remove time from Sidebar-Blog #1369312

    Hi asociacionespanolaaustria,

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

    #top .news-time {
        display: none;
    }

    If that does not help, please give us a link so we can check it.

    Best regards,
    Nikko

    in reply to: I’d like to move the icon to the front of the sentence. #1369311

    Hi colorlike,

    Please edit those specific Text Blocks and then go to Advanced (tab) > Developer Settings > Custom CSS Class put titleblock
    Then go to Enfold > General Styling > Quick CSS and add this code:

    #top .titleblock .avia_textblock {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    #top .titleblock .avia_textblock > * {
        margin-top: 20px;
    }

    Best regards,
    Nikko

    in reply to: Tabs and accordions not working #1369309

    Hi lris3021,

    Can you give us a link to the page mentioned? so we can inspect it.
    You can post the link privately.

    Best regards,
    Nikko

    in reply to: BLOG Weiter Button zeigt in die falsche Richtung #1369307

    Hi Guido,

    You’ll need to add it at the bottom of your functions.php file (child theme).
    If you don’t have a child theme yet, you can download it here (instructions are included in the link).
    Hope this helps.

    Best regards,
    Nikko

    in reply to: How to add a border to an image inside a layout element #1369306

    Hi rhae,

    The code you gave seems correct as well as the instruction.
    Can you give us the link to the page mentioned? so that we could inspect it.

    Best regards,
    Nikko

    in reply to: Change entire blog archive layout #1369304

    Hi AHolm1957,

    I think it would be best if you use the Advanced Layout Builder to change the layout.
    Go to Enfold (theme options) > Blog Layout > Blog Layout and set it to Use the advance layout editor to build your own blog layout (simply edit the page you have chosen in Enfold->Theme Options as a blog page)
    Then enable the Advanced Layout Builder in your blog page and make changes there.

    Best regards,
    Nikko

    in reply to: Endless loading Avia Advanced Layout Builder #1369299

    Hi nuslyz,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( to be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create an admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    in reply to: Can't access portfolio items on backend #1369297

    Hi bynet2013,

    Thanks for informing us of the solution that worked for you. :)
    Although I think it may be a server/configuration issue as I have been using PHP 7.4 with Enfold in different platforms (as well as other users have used it) without issues.
    Thanks again for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Display a banner image #1369296

    Hi Mauro,

    Thanks for the screenshot.
    I think I have introduced a problem by adding height.
    Please replace this code in your Quick CSS:

    #av_product_description {
        height: 270px;
        min-height: 270px;
    }

    And replace it with:

    #av_product_description {
        min-height: 270px;
    }
    
    #av_product_description .av-parallax {
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1) !important;
    }

    Hope this helps.

    Best regards,
    Nikko

    in reply to: Tab section: icon-text alignment + icon background #1369295

    Hi gabrimore98,

    I apologize for the delayed response.
    The problem for #1 should be fixed by adding this CSS code:

    #top .av-tab-section-tab-title-container .av-section-tab-title .av-tab-arrow-container {
        position: absolute;
        top: auto;
        bottom: 0;
    }

    Best regards,
    Nikko

    in reply to: Debug file #1369294

    Hi Asterios,

    I apologize for the delayed response.
    Can we request for the login link as well?

    Best regards,
    Nikko

    in reply to: Fullwidth Slide Audio Not Working #1369293

    Hi envisageiam,

    I apologize for the delayed response.
    For the unmute button, please add this code at the bottom of your child theme’s functions.php file:

    add_action('wp_footer', 'autoplay_volume');
    function autoplay_volume(){
        ?>
        <script>
            var vids = document.querySelectorAll('video');
    		
            vids.forEach(function (video) {
                var interval = setInterval(function() {
                    if(video.readyState === 4) {
                        video.volume = 0.8;
                        clearInterval(interval);
                    }    
                }, 1000);		
            });	
        </script>
        <?php
    }

    As for the video is not playing on mobile, mobile browsers block videos from Autoplaying that’s why the fallback static image is being used.

    Best regards,
    Nikko

    in reply to: Remove date from Masonry Grid iPad #1369000

    Hi Chrisi,

    The code should still work on iPad, can you try to clear the browser cache on iPad.
    If that does not work, can you give us a link to the page mentioned? so we can inspect it.
    You can post the link privately.

    Best regards,
    Nikko

    in reply to: Tab section: icon-text alignment + icon background #1368999

    Hi gabrimore98,

    You can align them top by adding this CSS code in Enfold > General Styling > Quick CSS:

    #top .av-tab-section-tab-title-container .av-section-tab-title {
        vertical-align: top;
    }

    If you want it to be inside a circle, then you can use this code instead:

    #top .av-tab-section-tab-title-container .av-section-tab-title {
        vertical-align: top;
        border: 2px solid white;
        border-radius: 50%;
        min-height: 134px;
        margin-left: 5px;
        margin-right: 5px;
    }

    Best regards,
    Nikko

    in reply to: Debug file #1368936

    Hi Asterios,

    I see, I’m not really sure what’s the cause of the issue so we may need to check on the backend.
    Can you give us temporary admin access? so we can check further.
    Just post the credentials in private content.
    Also, here’s a similar thread which you may want to check: https://kriesi.at/support/topic/wordpress-eroror-messages/

    Best regards,
    Nikko

    in reply to: Button Row custom icon #1368935

    Hi luismc83,

    You can follow the instructions in https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-
    Once the custom font icon is registered in Iconfont Manager, that icon should show up in the options.
    Hope this helps.

    Best regards,
    Nikko

    in reply to: Can't access portfolio items on backend #1368933

    Hi bynet2013,

    Thanks for giving us admin access.
    It seems the issue with opening portfolio is memory limit.
    I tried to increase it by adding this in wp-config.php:

    define('WP_MEMORY_LIMIT', '256M');

    However, the issue is still the same.
    I created a page that shows the PHP information (link in private content), search for memory_limit and it seems the limit is only 32M.

    Best regards,
    Nikko

    in reply to: Fullwidth Slide Audio Not Working #1368921

    Hi envisageiam,

    Thanks for giving us admin access.
    We have added this plugin “Avia Slider Video Controls Fix” to your site to fix the issue.
    Please review your site.

    Best regards,
    Nikko

    in reply to: Menu custom link in a new page #1368918

    Hi Andrea,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( to be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create an admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    in reply to: Display a banner image #1368917

    Hi Mauro,

    Can you try adding this code in functions.php (child theme):

    add_action( 'init', 'move_banner', 99 );
    function move_banner() {
        remove_action( 'ava_after_main_container', 'avia_woocommerce_shop_banner', 11 );
        add_action( 'woocommerce_before_main_content', 'avia_woocommerce_shop_banner', 12);
    }

    Let us know if this helps.

    Best regards,
    Nikko

    Hi Ben,

    Thanks for giving us admin access and I apologize for the delayed response.
    This is now fixed on your site.
    I have set the two columns to Stretch to fit.
    Then set Custom CSS Class to no-margin for the video and then added this CSS code in Enfold > General Styling > Quick CSS:

    .no-margin {
        margin: 0 !important;
    }

    Please review your site.

    Best regards,
    Nikko

    in reply to: Headline apear, disapear and then apear #1368914

    Hi mvi,

    Yes that’s possible, try to give those section an ID, for example mysection (use any name) and then in Enfold > General Styling > Quick CSS then add this CSS code:

    #mysection {
        min-height: 365px;
        max-height: 365px;
    }

    Hope this helps.

    Best regards,
    Nikko

    Hi Mauro,

    I don’t think they will be added for the future release since it may cause issues for other who doesn’t have the problem.
    That small CSS added to your site will not have a significant performance impact.

    Best regards,
    Nikko

    in reply to: Professional Help Needed For Image Issues #1368912

    Hi Lee,

    Yes, it’s possible but would it be okay if I ask you to backup your site first?
    Once done, then I’ll regenerate all images.

    Best regards,
    Nikko

    in reply to: toggle #1368802

    Hi webdesignphx,

    I’m glad that Rikard could help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Portfolio Grid Title font size #1368801

    Hi Tilman,

    Please try to add this CSS code:

    #top #wrap_all .main_color .grid-entry-title {
        font-size: 18px;
    }

    Best regards,
    Nikko

    Hi chicuza,

    Please check our documentation regarding translations: https://kriesi.at/documentation/enfold/translation/
    Hope it helps :)

    Best regards,
    Nikko

    in reply to: Demo cannot be installed #1368799

    Hi AASpA,

    I tried to login with the admin credentials you gave however it does not work, please check.
    Full error in private content.

    Best regards,
    Nikko

Viewing 30 posts - 2,281 through 2,310 (of 25,536 total)