Forum Replies Created

Viewing 30 posts - 14,581 through 14,610 (of 25,536 total)
  • Author
    Posts
  • in reply to: Enfold and blocks #1044597

    Hi SandyMcD,

    If those sites are already using WordPress 5 then you should install the classic editor so the gutenberg (the new block editor of wordpress) will be disabled.
    At the moment it’s causing issues to a lot of sites/themes, so disabling it for now is the best choice.

    Best regards,
    Nikko

    in reply to: Comment and scroll function #1044595

    Hi Harry,

    Can you try to disable gutenberg by installing the classic editor plugin?
    You can follow the instructions in this post: https://www.a2hosting.com/kb/installable-applications/optimization-and-configuration/wordpress2/wordpress-plugins/disabling-gutenberg-in-wordpress-5
    Gutenberg seems to cause issues to a lot of sites and themes, disabling it might fix the issue.

    Best regards,
    Nikko

    in reply to: The Events Calendar rendering problem #1044594

    Hey Mike,

    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
      ( do 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 a admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    in reply to: Positioning logos in socket/copyright area. #1044590

    Hey Leosoki,

    Can we request for a mockup or a screenshot of what you’re trying to achieve?
    Maybe with some visuals we can get a better idea and try to give you some css codes that should work, or if it needs to have some changes in html structure we can provide further instructions.

    Best regards,
    Nikko

    in reply to: Padding of section with image overlay #1044588

    Hey transformmedia,

    Try to replace this css code you have from:

    .overlapping-image {
        position: relative;
        top: -80px;
    }

    to:

    .overlapping-image {
        margin-top: -80px !important;
    }

    Hope this helps.

    Best regards,
    Nikko

    in reply to: Enfold find css generator #1044587

    Hi spb-vladimir,

    We would love to help you out with it, however it’s a bit complicated to modify the core files that generates those css codes, a workaround to do that would be to add an ID or class to the color section and have that css code in Quick CSS. Hope this helps.

    Best regards,
    Nikko

    in reply to: Avia Layout builder vs Gutenberg #1044585

    Hi,

    Our developers are working on an option in the backend to enable/disable gutenberg, so it will be easier for Enfold users without having to code :)

    Best regards,
    Nikko

    in reply to: Google Tag Manager #1044583

    Hey adferger1,

    I have checked your site and can still see the googletagmanager script inserted on the heading.
    Can you try using a plugin for google tag manager?

    Best regards,
    Nikko

    in reply to: excerpt in enfold child theme ? #1044575

    Hi kohlidays_kohsamui ,

    You can find the instructions here: https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb
    First you’ll need to add this code on your child theme’s functions.php:

    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    function avia_include_shortcode_template($paths)
    {
      $template_url = get_stylesheet_directory();
          array_unshift($paths, $template_url.'/shortcodes/');
    
      return $paths;
    }

    then in your parent theme (Enfold) copy portfolio.php located in config-templatebuilder / avia-shortcodes / portfolio folder
    then go to your child theme folder create a new folder and name it shortcodes then paste the portfolio.php you have copied and tweak it from there.

    Best regards,
    Nikko

    in reply to: Layer slide freeze on mobile #1044571

    Hi Animationink,

    I have checked it and tried to enable the main layerslider you have on mobile and it does work fine and animate properly on mobile.
    It might be some configuration that might have been overlooked.
    If not, can you try to duplicate the main slider and make some modifications and check if it works properly on mobile.

    Best regards,
    Nikko

    in reply to: Enfold WordPress 5.0 #1044551

    Hi schwabino,

    You can check out this post which shows different ways to disable automatic updates on wordpress: https://www.wpbeginner.com/wp-tutorials/how-to-disable-automatic-updates-in-wordpress/

    @goldengate415
    and @Michael thanks for helping out.

    Best regards,
    Nikko

    in reply to: How do i enable the column fade in animations on mobile? #1044546

    Hey theantiego,

    Unfortunately, we don’t have that feature yet implemented though we have Animation option on our Column elements but it affects both desktop and mobile.
    Please feel free to request – or vote if already requested – such feature on Enfold feature request form.

    Best regards,
    Nikko

    in reply to: Masonry Gallery – Images appear in wrong order #1044541

    Hey Vasilis,

    I have checked your site and noticed your still using Enfold 4.2 with a child theme, I noticed that the order was alphabetical but I tested it on my Enfold site and is ordered as how the images are sequenced so I think there might be some plugin causing it or probably might be a bug in a previous version.
    Can you try to setup a staging site (just a duplicate of your site on your subdomain), so we can do some tests without affecting your live site, here is how to do it: https://themeisle.com/blog/wordpress-staging-site/

    Best regards,
    Nikko

    in reply to: Perfectly Manual Masonry order issue #1044529

    Hi samvasgr,

    We’ll answer it there then and I’ll be closing this thread.

    Best regards,
    Nikko

    in reply to: error product_snippet_review.php on line 80 #1044527

    Hi Chowdhury,

    To be honest I’m not really sure what’s causing it.
    __return_true and __return_false are built in wordpress, you can check it here: https://codex.wordpress.org/Function_Reference/_return_true and here: https://codex.wordpress.org/Function_Reference/_return_false
    maybe you can try to switch to a default wordpress theme and check if these warnings still shows or maybe some server configurations that needs to be adjusted.

    Best regards,
    Nikko

    Hi lorenzopaolini,

    I have modified the filter code to:

    add_filter( 'avf_masonry_loop_prepare', 'avf_masonry_loop_prepare_mod_cat', 10, 2 );
    function avf_masonry_loop_prepare_mod_cat( $key, $entries )
    {
    
        $categories = get_the_category($key['ID']);
    		$author_id = get_post_field( 'post_author', $key['ID'] );
    	
    		$separator = ' ';
        $output = '<div class="ww-masonry-author">' . get_the_author_meta( 'display_name', $author_id ) . '</div>';
        $output .= '<div class="ww-masonry-cat">';
        if ( ! empty( $categories ) ) {
            foreach( $categories as $category ) {
                $output .= '<span alt="' . esc_attr( sprintf( __( 'View all posts in %s', 'textdomain' ), $category->name ) ) . '">' . esc_html( $category->name ) . '</span>' . $separator;
            }
        }
        $output .= '</div>';
    
        $key['text_before'] .= trim( $output, $separator );
        return $key;
    }

    Let us know if you need further assistance.

    Best regards,
    Nikko

    in reply to: Shadown Boxes Around All Items #1044510

    Hi zippyants,

    I see you’re using this value:

    box-shadow: 0 0 10px 0 #000000;

    try using this instead:

    box-shadow: 0 0 10px rgba(1,1,1,0.26);

    Hope this helps.

    Best regards,
    Nikko

    in reply to: Posts in Grid Alpha order #1044505

    Hi SandraSquires,

    It’s still the same. Can you try this instead:

    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
      ( do 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 a admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    in reply to: Centering Logo etc on Login Page #1044502

    Hi H,

    Glad that we could help :)
    Thanks for using Enfold and have a great day!

    @Guenni: thanks for helping out :)

    Best regards,
    Nikko

    in reply to: Posts in Grid Alpha order #1044249

    Hi SandraSquires,

    It’s still the same, screenshot in private content.

    Best regards,
    Nikko

    in reply to: Centering Logo etc on Login Page #1044247

    Hi H,

    Yes, I thought you would add it in functions.php, since Quick CSS only affects the frontend of the site but not including the login page.
    If you have already hooked in login_enqueue_scripts you just need to add the css there, if not you can use this and add at the bottom of functions.php:

    function my_login_logo() { ?>
        <style type="text/css">
            body.login div#login h1 a {
                margin-left: -99px;
            }
        </style>
    <?php }
    add_action( 'login_enqueue_scripts', 'my_login_logo' );

    For more information regarding this, you can check the wordpress codex: https://codex.wordpress.org/Customizing_the_Login_Form

    Best regards,
    Nikko

    in reply to: Changing Portfolio "Nothing Found" #1044246

    Hi leviticus,

    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
      ( do 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 a admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    in reply to: Envato Private Token Error #1043261

    Hi,

    Please try the solution posted on this thread: https://kriesi.at/support/topic/envato-private-token-doesnt-work/#post-1023876
    Hope it helps.

    Best regards,
    Nikko

    in reply to: Shadown Boxes Around All Items #1043260

    Hi zippyants,

    We apologize for the delayed response.
    Can you give us a link to your site? it would be better if your site is using a boxed layout.
    It’s possible using some css code, specifically box-shadow.

    Best regards,
    Nikko

    in reply to: Logos blurry #1043258

    Hi Lara,

    The super blurry ones that you are referring (example in private content) which is 150px x 92px.
    The size of the slider is 184px x 113px so using the same or a bit higher image dimension should fix it.
    Also I would suggest since there are solid colors in your image, use png instead of jpg.
    Hope this helps.

    Best regards,
    Nikko

    in reply to: Proper method to disable Google Maps in Enfold #1043251

    Hey Julie,

    This code should do:

    add_filter( 'avf_load_google_map_api', '__return_false' );

    The codes above just deregisters the js scripts which are used for enfold’s google map integration which should also work.

    Best regards,
    Nikko

    in reply to: Posts in Grid Alpha order #1043244

    Hey SandraSquires,

    We apologize for the late response since the forum is overloaded with threads.
    I tried to access your site however I’m getting:

    ERROR: Incorrect username or password.
    

    Please check.

    Best regards,
    Nikko

    in reply to: Internet Exporer – Crash #1043241

    Hey danielrad78,

    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
      ( do 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 a admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    in reply to: After enabling Layerslider I'm facing 400 error. #1043239

    Hi sovik_rc,

    Can you give us ftp access also?
    so we can try to enable debugging and error logging.
    Just post the credentials in private content.

    Best regards,
    Nikko

    in reply to: Change Instagram widget text #1043237

    Hi elsmore01,

    No worries, that’s why I sent a screenshot since you might have missed it :)
    Glad that we could help.
    Thanks for using Enfold :)

    Best regards,
    Nikko

Viewing 30 posts - 14,581 through 14,610 (of 25,536 total)