Forum Replies Created

Viewing 30 posts - 16,111 through 16,140 (of 25,536 total)
  • Author
    Posts
  • Hey gabrielprado,

    Thanks for giving us access.
    Can you tell us what php version you are using?
    If you are using below 5.6, please try to update your php version to atleast 5.6 otherwise, try re-install Enfold manually via ftp or cpanel.
    Hope this helps.

    Best regards,
    Nikko

    in reply to: Show image slider on mobile and hide video #964072

    Hi siteitltd,

    You need to identify first what modification you added, if you’re having a hard time doing this you need to check the version of your current Enfold theme used and compare your header.php (modified) with the original header.php of the same version. You can then check the difference here:
    https://www.diffchecker.com/
    Then copy header.php from the latest version then apply the modifications you made before.

    Best regards,
    Nikko

    in reply to: Blocked loading mixed active content #964068

    Hi Corina,

    Yes, since spamshield works properly I think it’s worth to try the Enfold form.
    Try it with spamshield on and observe for several days if spam still goes in.

    Best regards,
    Nikko

    in reply to: Video just stopped playing – Advanced Layer Slider #964066

    Hi promisecenterchurch,

    I just cleared the cache and just moved your login details in private content.
    Glad that it’s all good.
    Let us know if you need further assistance :)

    Best regards,
    Nikko

    Hi oestersund,

    It’s fixed. The link is stored in the database so I used Better Search & Replace to fix it.
    Let us know if it’s good on your end as well.


    @Guenni007
    : Thanks for helping out.

    Best regards,
    Nikko

    in reply to: Hover image #964055

    Hi Jose Ramon,

    Try adding this css code:

    #top .image-overlay {
        display: none !important;
    }

    Hope this helps :)

    Best regards,
    Nikko

    in reply to: Misaligned header/menu on site and mobile #964046

    Hi indpro,

    Thanks for giving us the ftp access.
    I have checked it and noticed that you are using enfold 4.2 and inside the theme there’s another enfold (version 4.3.2), I have moved it to wp-content folder.
    And this plugin also is inside the theme: temporary-login-without-password (this is also now moved to wp-content folder).
    Also can we request for admin access again? since it has already expired so we can flush and disable caching and minification.

    Best regards,
    Nikko

    in reply to: Google maps element not working #964030

    Hi Petra,

    You should see the code in this file: enfold > framework > php > class-gmaps.php (line 345):

    avia_framework_globals.gmap_api = '" .$api_key . "';

    I don’t really see any spaces within the code, can you give us a link to the page that uses google maps so we can take a closer look.

    Best regards,
    Nikko

    in reply to: Masonry Gallery Custom Links Open in New Tab #964027

    Hi Energy1,

    I tried adding the code also but it didn’t save and I get this error in the console:

    http://www.catalyst-ir.com/wp-admin/admin-ajax.php 504 (Server timeout)

    I think you’ve done it properly but the server timeout prevents it from saving, you can add it via ftp instead.

    Best regards,
    Nikko

    in reply to: No bullet points in text widget of sidebar #964024

    Hi Colindie,

    You can give us temporary account, as long as it has proper permission to view the page then it should be good enough.

    Best regards,
    Nikko

    Hi hackoffseries,

    I apologize for my mistake, it’s not supposed to be in Quick CSS, but at the bottom of functions.php, however it wouldn’t work since you are using Yoast SEO, you can modify it using the plugin settings in yoast, for more information please check this post: https://yoast.com/wordpress/plugins/seo/yoast-seo-robots-meta-configuration/
    Hope it helps.

    Best regards,
    Nikko

    in reply to: Web Page randomly doesn't load #963507

    Hi hutch80,

    Thanks for giving us admin access.
    The mixed content issue is resolved and I checked your site several times and it does load properly each time.
    Please check and let us know your feedback, clearing your browser cache might be needed.

    Best regards,
    Nikko

    in reply to: Remove Video Download Icon #963506

    Hi Neil,

    I have tested the shortcode on my end and it removes the download icon.
    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: Logo behavior an Mobile and Desktop different #963504

    Hi Martin,

    Glad that it worked properly :)
    A normal user should be able to find it in Appearance > Editor or via ftp but they need also to check for our documentation to be more informed on these things.
    As for the functions.php to be overwritten on the next update, you need to use a child theme and place it on the child theme’s functions.php so it will be retained even during theme update, for more information on it please check our documentation: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#why-child-theme
    Hope this helps :)

    Best regards,
    Nikko

    in reply to: Logo behavior an Mobile and Desktop different #963402

    Hi Martin,

    Try adding this php code at the bottom of your functions.php:

    function av_change_logo($logo, $use_image, $headline_type, $sub, $alt, $link){
    	$use_image = $use_image;
    	$headline_type = $headline_type;
    	$sub = $sub;
    	$alt = get_bloginfo('name');
    	$link = home_url('/');
    	
    	if($sub) $sub = "<span class='subtext'>$sub</span>";
    	$dimension = "height='300' width='300'";
    
    	if($logo = avia_get_option('logo'))
    	{
    		$logo = $logo;
    		if(is_numeric($logo)){ $logo = wp_get_attachment_image_src($logo, 'full'); $logo = $logo[0]; }
    		$logo = "<img {$dimension} src='{$logo}' alt='{$alt}' />";
    		$logo = "<$headline_type class='logo'><a href='".$link."'>".$logo."$sub</a></$headline_type>";
    	}
    	else
    	{
    		$logo = get_bloginfo('name');
    		if($use_image) $logo = "<img {$dimension} src='{$use_image}' alt='{$alt}' title='{$logo}'/>";
    		$logo = "<$headline_type class='logo bg-logo'><a href='".$link."'>".$logo."$sub</a></$headline_type>";
    	}
    
     	return $logo;
    }
    add_filter('avf_logo_final_output', 'av_change_logo', 100, 6);

    Hope it helps :)

    Best regards,
    Nikko

    in reply to: Random username and api key #963396

    Hey ennaz,

    I’m not sure why it popultes random username and api key but please do use your own username and api key, this will not affect your site, but using the right/your own username and api key should fix any issue regarding automatic updates. :)

    Best regards,
    Nikko

    in reply to: Special Fonts #963394

    Hi Marie,

    Try clearing out the browser cache in firefox, it’s probably just a caching issue.
    I have checked your site in firefox and I don’t see the issue on my end.

    Best regards,
    Nikko

    in reply to: Video just stopped playing – Advanced Layer Slider #963390

    Hey promisecenterchurch,

    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

    Hey manbaritone,

    Thanks for describing the issue, however I’m not really sure why that’s happening, however I can recommend a way to update with lesser risk.
    You can use a stage site where you can apply updates first without risking your live site, for more information on creating a stage site, you can check this post:

    If you have issues on your stage site when updating, you can give us access to it, so we can check it.

    Best regards,
    Nikko

    in reply to: No bullet points in text widget of sidebar #963386

    Hey Colindie,

    Can you give us a link to the page mentioned? so we can take a closer look.
    You can post the link in private content, if you want it to be seen only by the moderators.

    Best regards,
    Nikko

    in reply to: Hover image #963384

    Hi José Ramón,

    Try adding this css code in Quick CSS instead:

    #top .image-overlay-inside {
        display: none !important;
    }

    If that misses some images, please post the link of the page, so we can check it.

    Best regards,
    Nikko

    Hey freshwebsitesla,

    Try adding this css code in Quick CSS (located in Enfold > General Styling):

    .single-product .single-product-main-image .avia-wc-30-product-gallery-lightbox {
        display: none !important;
    }

    Hope it helps :)

    Best regards,
    Nikko

    in reply to: Plugin Conflict #963381

    Hey moxisjc,

    Thanks for giving us access to your site.
    I have checked both homepage and about page and ALB works fine.
    Can you tell us which page/s shows the issue?

    Best regards,
    Nikko

    in reply to: Google Maps error since GRPD update #963379

    Hi Underkult,

    Glad that it’s fixed. :)
    Feel free to comeback if you need further assistance.
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: since last update polylang plugin doesn't work #963377

    Hi Luisgasser,

    Glad that it’s properly working now. :)
    Let us know if you need further assistance or if we can close this thread.

    Best regards,
    Nikko

    Hi gux,

    Glad that Victoria helped you. :)
    Feel free to comeback if you need further assistance.
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Enfold 4.4 – Missing Font #963373

    Hey Florian,

    Try adding this code instead:

    add_filter( 'avf_available_google_fonts',  'avia_add_google_font');
    function avia_add_google_font( $fonts ) {
    	$fonts['Maven Pro'] = 'Maven Pro';
    	return $fonts;
    }

    You should find Maven Pro last in the list.
    Hope this helps :)

    Best regards,
    Nikko

    in reply to: mailchimp add at checkout #963364

    Hi studioinktvis,

    We would be glad to help you with this customization, but at the moment there is no easy way to do this by using a small custom code snippet, so I am afraid it’s out of the scope of our support.

    But please feel free to request such feature at our feature request system: https://kriesi.at/support/enfold-feature-requests/

    This system allows us to keep track of user suggestions and lets you vote on the feature you would like to see the most. I am afraid though there is no guarantee that a feature will get implemented. If that’s something you really need you can always try to hire a developer for the task.

    Best regards,
    Nikko

    Hey Tilman,

    Yes, the error is pointing on layerslider.
    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: Blocked loading mixed active content #963361

    Hi Corina,

    Thanks for providing us ftp access and a stage site as well.
    This is the best that we could ask. I have found out which plugin causes the issue, disabling Contact Form 7 removes the problem.
    Though I know you need this plugin for the form, I still couldn’t figure out atm why enabling the plugin causes that error in firefox.

    Best regards,
    Nikko

Viewing 30 posts - 16,111 through 16,140 (of 25,536 total)