Forum Replies Created

Viewing 30 posts - 7,651 through 7,680 (of 25,536 total)
  • Author
    Posts
  • in reply to: Can't change logo #1256565

    Hi shedoesitcoaching,

    I have made the changes, please check.
    As for the jQuery Migrate showing up, you can ignore this, these are the files that use the jQuery Migrate file which is removed in WordPress 5.5.
    Since you are still using Enfold 4.4.1 which uses jQuery Migrate then this plugin is a must, but this issue is fixed in Enfold 4.7.6.2 (current version is 4.7.6.4).
    Once you have updated to the latest version of Enfold then this plugin can be removed and those warnings will also be removed.
    Also, I would advise creating a backup first before updating the theme.

    Best regards,
    Nikko

    in reply to: Color Section issue #1256380

    Hi beryllineusa,

    Oh! I see :D
    Anyway, I’m just glad we could help.
    Thanks also for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Can't change logo #1256379

    Hi shedoesitcoaching,

    I have made the changes, please check.

    Best regards,
    Nikko

    in reply to: Blog post layout and grid text #1256363

    Hi mason7773,

    Thanks for providing the screenshot.
    As for the sidebar, can you give us a temporary admin access? so we can check on it further (since I could not reproduce the issue).
    Just post the details in private content.
    The 2nd one would require some custom CSS but we’ll need the link of the page so we can write the code specific for it.

    Best regards,
    Nikko

    in reply to: Problem with BlogPosting #1256361

    Hi PM,

    Can you give us the link/URL which you used to test? so we can check further on the issue.

    Best regards,
    Nikko

    Hi Tallnick,

    We apologize for the delayed response.
    I have tried to reproduce the issue on my end using WP 5.5.1, Enfold 4.7.6.4, Woocommerce 4.6.1 and Mailchimp for Woocommerce 2.4.7.
    I tried to look also for error_logs but there’s none generated on your site which should be helpful for us to find the cause of the issue.
    Can you give us FTP access? so we can try to troubleshoot further.
    If it’s also possible to setup a staging site, so we can try to troubleshoot the issue without affecting your live site.
    Here’s a simple tutorial on how to do it: https://themeisle.com/blog/wordpress-staging-site/

    Best regards,
    Nikko

    in reply to: Frontend not loading, Backend works but not the preview #1256353

    Hi Nadja,

    I have checked the pages and it seems the NinjaFirewall setting is causing these issues.
    When I check on the web console, I see this error:

    ZUGRIFF NICHT ERLAUBT
    Die angeforderte Seite darf nicht angezeigt werden.

    Try to disable the firewall and check if it helps.
    Also, you can try to enable the firewall and try to modify the settings, maybe loosen it up first and once it’s all good try to play with those settings and tighten it up a bit.
    Hope it helps.

    Best regards,
    Nikko

    Hi Emese,

    To prevent it from happening in the future, I would suggest flushing out the cache from caching plugins and Autoptimize and disable it temporarily before upgrading so newer theme files are fetched by the browser and served by the server.
    For the second question, there are multiple ways to create, if you have access to cPanel or FTP then you can create there: https://www.doteasy.com/cpanel-hosting-features/cpanel-file-manager-creating-a-new-file-or-new-folder
    Another way is to use a File Manager plugin (you can search for it in the plugins)

    Best regards,
    Nikko

    • This reply was modified 5 years, 3 months ago by Nikko.
    in reply to: Missing custom fonts in move from staging to production #1256344

    Hi mclweb,

    We’re glad that you have resolved the issue.
    And thanks for sharing the solution that worked for you which can be used by other users as reference if they encounter the same issue.
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Transparent header on every page of my website #1256343

    Hey ivancg,

    There’s no option for a global transparent header.
    However, there’s a solution posted by Guenni007 which should help: https://kriesi.at/support/topic/header-visibility-and-transparency/#post-1227888

    Best regards,
    Nikko

    in reply to: Enfold Lawyer Demo #1256341

    Hi roosites,

    1. Color Section with background image
    2. Inside the color section, 1/1 column with Special Heading
    3. Below the 1/1 column, there are 3 1/3 columns set to Equal Height and No space between columns
    4. Inside the 1/3 column, there’s a Special Heading, Text Block, Whitespace and Button
    Hope this helps.

    Best regards,
    Nikko

    in reply to: Icon boxes #1256337

    Hi Charlotte,

    Please do the following:
    1. Enable Advanced Layout Builder Debug Mode: https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode
    2. Get the shortcode from the page (debug mode adds a textarea below the content where it shows the shortcodes generated by the page)
    – If there are lots of code then you can use templates: https://kriesi.at/documentation/enfold/intro-to-layout-builder/#templates
    – Create a template then create a new page, use the template and remove every element except for the 4 icon boxes and copy all the shortcode in the Debugger area.
    3. Then add this code at the bottom of your child theme’s functions.php:

    function enfold_after_main_container() {
        echo do_shortcode("[some_shortcode]");
    }
    add_action('ava_after_main_container', 'enfold_after_main_container');

    just replace [some_shortcode] with the shortcode copied for the debugger.
    Hope it helps.

    Best regards,
    Nikko

    in reply to: Request for support #1256312

    Hey Miejski Zakład Oczyszczania w Pruszkowie Sp. z o. o.,

    Thanks for contacting us!
    WordPress 5.5 has removed jQuery Migrate file which used by the version of Enfold you are using (it’s fixed in the latest version)
    To temporarily fix the issue, please install and activate Enable jQuery Migrate Helper plugin

    Best regards,
    Nikko

    in reply to: Catalogue images #1256311

    Hi kellyCraftMedia,

    Please try to do the following:
    1. In your child (if you don’t have one, you can download and find instructions here, then add this at the bottom of functions.php:

    function enfold_customization_modify_thumb_size( $size ) {
      $size['square'] = array('width'=>250, 'height'=>160, 'crop'=>false);
      return $size;
    }
    add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );

    2. Re-upload the catalogue image
    3. Add this CSS code in Quick CSS, located in Enfold > General Styling:

    #top .av-catalogue-image {
        width: 250px;
    }
    
    #top .av-catalogue-content li {
        list-style-type: inherit;
        border: 0;
    }

    Best regards,
    Nikko

    in reply to: Frontend not loading, Backend works but not the preview #1256306

    Hi NadjaJacke,

    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: Post title = H1 #1256305

    Hi Mark,

    Yes, post title are h1 in its own post, for example: https://kriesi.at/themes/enfold-2017/2014/08/24/a-nice-entry/
    However, in the blog page where it contains a list of posts, the post title is set to h2: https://kriesi.at/themes/enfold-2017/blog/

    Best regards,
    Nikko

    in reply to: Missing logo on some pages of mobile #1256283

    Hi mclweb,

    The pages like archives that have a missing logo seems to be pointing to this image URL (link in private content) and it returns nothing.
    Please update the URL and that should work properly.

    Best regards,
    Nikko

    in reply to: Emoji stop displaying #1256282

    Hey Jacopotj,

    Thanks for giving us the link.
    I have tried emoji on the latest version of Enfold and it still works fine.
    Try to go to Enfold > Performance > Disable Emoji/Smiley Support and check if this is disabled.
    If this does not help, 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: Loop Video in header #1256280

    Hi John,

    If the spinner is from Enfold then that code should work and you can actually try to test the code.
    However, I did check the video link and since my connection isn’t that fast, the spinner is showing up on my end.

    Best regards,
    Nikko

    Hi marotiem,

    I have made some changes and it seems that caching from Autoptimize is causing the issue.
    After temporarily turning its HTML, JS and CSS Optimization, and re-saving the Theme Options worked.
    Can you try to check again? and let us know which parts still have issues.

    Best regards,
    Nikko

    in reply to: Slow Performance Due to Avia Builder #1256273

    Hi hylandgraphics,

    Does your site/server have restriction on some countries? I have tried to login and it worked however when it was redirected to wp-admin, this shows up (and just white screen):

    Sorry, your request cannot be accepted.

    Best regards,
    Nikko

    in reply to: titles #1256271

    Hi satucker,

    Thanks for giving us admin access.
    I have moved the code above the media query and also closed the media query, please check again.

    Best regards,
    Nikko

    in reply to: Color Section issue #1256261

    Hi beryllineusa,

    I’m very sorry to hear, that code should have some use but generally, it’s not applicable to everything.
    Maybe if I see the thread where this is recommended then I might understand the context.
    If the one who recommended it has some malicious intent then we could check on his/her thread/replies and remove it.

    Best regards,
    Nikko

    in reply to: CSS code for H1 not working #1256259

    Hi RubenHD,

    I think some locations are blocked, if I try to go to wp-admin (which usually redirects to wp-login.php) I get this error:

    Acceso restringido desde tu conexión
    ¿Qué ha podido pasar?
    Se ha bloqueado por seguridad el acceso desde tu conexión a la url que intentas acceder. Si la web es tuya pulsa aquí para solucionarlo, por favor:

    Best regards,
    Nikko

    in reply to: how to remove labels in email enfold contactform #1256258

    Hi Boris,

    I see, I apologize, the code you would use would look something like this:

    if( $element['id'] == 'avia_1_1' ) {
        $message .= $element['id'].": ".$field_value." <br/>";
    } else {
        $message .= $field_value." <br/>";
    }

    I’ll also just correct, this is a PHP code and must be put in PHP files and not in Quick CSS or any css files.

    Best regards,
    Nikko

    in reply to: ALB Data Table keeps crashing #1256257

    Hi Borissimo,

    You’re welcome :)

    Best regards,
    Nikko

    in reply to: Color Section issue #1256117

    Hi beryllineusa,

    Can you try to remove this code in Quick CSS:

    .content {
        background-color: white !important;
    }

    Let us know if it helps.

    Best regards,
    Nikko

    in reply to: titles #1256114

    Hey satucker,

    Try adding this CSS code in Quick CSS, located in Enfold > General Styling:

    #top #wrap_all .all_colors h1 {
        font-family: pacifico,helveticaneue,helvetica neue,helvetica-neue,Helvetica,Arial,sans-serif;
        text-transform: none;
    }

    Best regards,
    Nikko

    in reply to: text color for testimonials #1256112

    Hey satucker,

    Please try adding this CSS code in Quick CSS, located in Enfold > General Styling:

    #endorsements .avia-testimonial-content strong,
    #endorsements .avia-slider-testimonials .avia-testimonial-name,
    #endorsements .avia-slider-testimonials .avia-testimonial-subtitle {
        color: white !important;
    }

    Best regards,
    Nikko

    in reply to: Possible to auto mute all videos? #1256105

    Hi Greg,

    There’s no global option for this and needs to be muted individually.
    However, you can try to open wp-content > themes > enfold > config-templatebuilder > avia-shortcodes > video > video.php (line 400):

    if( ! empty( $video_autoplay_enabled ) )

    above this just put:

    $video_mute = 1;

    Hope it helps.

    Best regards,
    Nikko

Viewing 30 posts - 7,651 through 7,680 (of 25,536 total)