Forum Replies Created

Viewing 30 posts - 14,791 through 14,820 (of 25,536 total)
  • Author
    Posts
  • in reply to: Remove fade in effect whem page load #1038590

    Hey CloudChoice,

    Can you try to temporarily disable all plugins? then check.
    I think one of it might be responsible for having that fade in effect.
    Then try to enable the plugins one by one to know which is causing it.
    If you have caching plugin make sure to flush out the cache.

    Best regards,
    Nikko

    in reply to: Separator between menu items do not appear #1038588

    Hey aintzerga,

    I have checked your site and I can see the separator between menu items, however it’s light gray so it’s not that obvious.
    Let us know if I have misunderstood the issue.

    Best regards,
    Nikko

    in reply to: google map problem #1038586

    Hi zerod10,

    That issue appears because google now doesn’t allow free use of their map, and needs you to update your billing information.
    Your issue is similar to this post: https://stackoverflow.com/questions/50977913/google-maps-shows-for-development-purposes-only

    Best regards,
    Nikko

    in reply to: Google API Error with Plugin: The Events Calendar / Pro #1038585

    Hey fbsd44,

    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 1lizcollins,

    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: Load more button issue #1038582

    Hi sony1208,

    We apologize for the late response.
    I have fixed it. In Enfold > Performance > Disabling of template builder elements, I set it to Always load all elements then cleared the cache using your caching plugin.
    Let us know if you need further assistance.

    Best regards,
    Nikko

    in reply to: Background image issues post 4.5 update #1038580

    Hi Jonathan,

    Thanks for providing the admin and ftp access to the staging site.
    I have updated it and have enabled avia debugger by adding this code in functions.php:

    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug() {
    	return "debug";
    }

    with this shortcodes generated by ALB is shown, I’ve looked at it and noticed that some attributes in the shortcode, the most notable one is attachment_size=’full’ which seems to be missing in all of those sections that lost their image in the frontend but showing in the frontend. Though I do apologize, I couldn’t really find a better solution on fixing it.

    Best regards,
    Nikko

    in reply to: The Instagram Widget #1038561

    Hi cici_sleestak,

    Can you create a new thread and give us temporary admin access, as I have instructed above?
    Just post the login/credentials in private content, so it’s only visible to the moderators and the thread creator.

    @DJQuad: Glad to hear that it’s working again.

    Best regards,
    Nikko

    in reply to: Problems with Burger Menu, Lightbox #1038555

    Hi KiGePa,

    I have dynamic IP address so it changes frequently, but try adding it so I can try to take a look.
    It’s in private content.

    Best regards,
    Nikko

    in reply to: problem with registration key API google maps #1038553

    Hi minogig,

    With regards to token not validating, try to check the solution posted by Yigit: https://kriesi.at/support/topic/envato-private-token-doesnt-work/#post-1023876
    As for “Too many requests at once, please wait a few seconds before requesting the coordinates again”
    You need to add billing to your project/api, as verified in these threads: https://kriesi.at/support/topic/google-api-key-problem/#post-994400 and https://kriesi.at/support/topic/google-maps-error-too-many-requests/#post-997569

    Best regards,
    Nikko

    • This reply was modified 6 years, 7 months ago by Nikko.
    in reply to: Footer padding #1038550

    Hi alsonjonsolutions,

    Can you try to remove top padding as well on Yigit’s code, so it should look like:

    #footer {
        padding-bottom: 5px;
        padding-top: 0;
    }

    Then add this css code as well:

    #footer .widget p {
        margin-bottom: 0;
    }

    Best regards,
    Nikko

    in reply to: Custom template builder avia-shortcode attributes #1038546

    Hi rrajan18,

    Can you try to create a js folder in your child theme and then copy and paste avia-builder.js file inside the js folder, then in functions.php add:

     // Load child theme avia-builder js 
     function wp_change_aviabuilderjs() {
    	wp_dequeue_script( 'avia_builder_js' );
    	wp_enqueue_script( 'avia_builder_js-child', get_stylesheet_directory_uri().'/js/avia-builder.js', array('jquery','jquery-ui-core', 'jquery-ui-sortable', 'jquery-ui-droppable','jquery-ui-datepicker','wp-color-picker','media-editor','post'), 2, true );
     }
     add_action( 'wp_print_scripts', 'wp_change_aviabuilderjs', 100 ); 

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Mobile Menu Modern Layout for Commerce #1038539

    Hi vickilouisex,

    Please feel free to request – or vote if already requested – such feature on Enfold feature request form.

    As for now, I can only suggest adding this css code in QUick CSS (located in Enfold > General Styling):

    @media only screen and (max-width:767px) {
        .responsive #top #wrap_all #header {
            position: fixed !important;
        }
    
        .responsive #top #header_main .container {
            width: 100%;
            max-width: 100%;
            height: 60px !important;
            line-height: 60px !important;
        }
    
        .responsive #top #header_main .container .logo {
            height: 60px !important;
        }
    
        .responsive #top #header_main .container .logo img {
            max-height: 60px;
        }
    
        .responsive #top #header_main .container .main_menu {
            height: 60px;
            top: -10px;
        }
    
        .responsive #top #header_main .container #menu-item-shop {
            top: -10px;
        }
    
        .responsive #top #wrap_all #main {
            padding-top: 60px !important;
        }
    }

    Best regards,
    Nikko

    in reply to: Nofollow for Post slider element and blog post modification #1038533

    Hi Artur667,

    For 3, try to create includes folder in your child theme, then copy loop-index.php in the includes folder of Enfold to the includes folder of your child theme.
    Then go to line 242 and replace this code:

    if ($slider) $slider = '<a href="' . $link . '" title="' . $featured_img_desc . '">' . $slider . '</a>';

    with:

    if ($slider) $slider = $slider;

    Best regards,
    Nikko

    in reply to: SideBar Page, Standard Menu – Stick on scroll #1038520

    Hi Animationink,

    Thanks for giving us the link.
    Unfortunately since it’s inside the layerslider, I don’t think it’s possible with just css.
    Probably javascript/jquery could do it however it would take a lot of time just to do it, though we wanted to help but it’s outside the scope of our support.

    Best regards,
    Nikko

    Hi pepin,

    Thanks for giving us admin access.
    I was able to fix it by going to Enfold > Performance > Disabling of template builder elements, set to: Always load all elements.
    Then Purge all cache from your caching plugin.
    Let us know if you need further assistance.

    Best regards,
    Nikko

    in reply to: Page Template breaks normal layout… #1038503

    Hi 5ivecanons,

    Try using this as your base template: https://pastebin.com/XV4hufrk
    Just replace the template name then add whatever you need to add.
    Hope this helps.

    Best regards,
    Nikko

    in reply to: Problem uploading Fontello and Flaticons #1038467

    Hi bjorn-elementMEDIA,

    Glad that we could help 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: define custom link in custom post type not working #1038064

    Hi Birdster,

    Thanks for understanding.
    I think you’ll just have to create a category for it in portfolio and it should work well.

    Best regards,
    Nikko

    in reply to: Color section scroll down problem #1038061

    Hi grafixstudio,

    Yes, I do understand your concern however avia.js couldn’t be replaced anymore since some js files depends on it.
    I don’t think CSS based solution would work, since it requires dynamic calculation.
    I also couldn’t find how to dequeue a js file that’s being depended by other js files, I think if wordpress allows this then it would be possible using the child theme.

    Best regards,
    Nikko

    in reply to: Text on Portfolio Pictures #1038056

    Hi Funkys,

    Thanks for giving us the link.
    Can you try to edit your Masonry and find Size Settings
    Change it from Perfect Automatic Masonry to Flexible Masonry.
    Hope this helps.

    Best regards,
    Nikko

    in reply to: Problem uploading Fontello and Flaticons #1038049

    Hi bjorn-elementMEDIA,

    Thanks for giving us admin access.
    Please login to your site and click on the link in private content.
    There are some extensions that are essential but aren’t available on your server settings but the most important one that really needs to be enabled when uploading fonts/icons is: PHP ZipArchive Extension
    Contact your hosting provider to enable those and it should fix the issue :)

    Best regards,
    Nikko

    in reply to: bg image on color sections vanishes after update #1038047

    Hi mirzepapa,

    I tried the login credentials you gave, however it doesn’t seem to work, please check.

    Best regards,
    Nikko

    in reply to: Custom template builder avia-shortcode attributes #1038046

    Hi rrajan18,

    Try using:

    $id = get_the_ID();

    or:

    global $post;
    $id = $post->ID;

    Hope this helps.

    Best regards,
    Nikko

    in reply to: Secondary Navigation Font changes in size from page to page #1038045

    Hi markpevans,

    Can you try adding this css code:

    #top #avia2-menu li a span.wpml-ls-native {
        font-size: 11px;
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Automatically close accordions on a single color section #1038044

    Hi,

    Thanks for giving us both admin and ftp access.
    I have added this in the Developer ID of your section (wrapping the toggle) accordion-section
    Then in your functions.php, I have added this php code (at the bottom):

    function accordion_fn(){
    	?>
    	<script>
    	$( document ).ready(function() {
    		
    		$( "#accordion-section .single_toggle .toggler" ).on("click", function() {
    			var $el = $( "#accordion-section" ),
    					fake_id = $(this).data("fake-id") + "-container",
    					$id = $( fake_id ).attr('id');
    			
    			$el.find(".toggle_wrap").each(function(){
    					var temp_id = "#" + $(this).attr('id');
    					if( !( temp_id == fake_id ) ) {
    						$(this).removeClass("active_tc");
    					}
    			});
    			
    		});
    	});
    	</script>
    	<?php
    }
    add_action('wp_footer', 'accordion_fn');

    However during theme update this tweak would be lost so I would suggest using a child theme: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#why-child-theme
    Then remove the code I added in the functions.php of the parent theme and put it in the functions.php of your child theme.
    Hope this helps.

    Best regards,
    Nikko

    in reply to: define custom link in custom post type not working #1038024

    Hi Birdster,

    I apologize for the late response.
    To be honest I also find it hard to make it work.
    You would most likely need to make adjustment on Masonry element to make it work.
    Maybe you can take a look at it and maybe try to override it in the child theme.

    Best regards,
    Nikko

    in reply to: Question about anchor links #1038022

    Hi marco3253 ,

    I apologize for the late response.
    Instead of linking it like: http://www.mywebsite.com/mypage#my-anchor/ try making it: http://www.mywebsite.com/mypage/#my-anchor
    Smooth scrolling doesn’t really work well if you use it to open a different page, since it’s usually intended for single page sites.

    Best regards,
    Nikko

    in reply to: Color section scroll down problem #1038004

    Hi grafixstudio,

    I have checked it actually the code isn’t the issue but avia.js in Enfold isn’t dequeued even with the code, probably because other scripts are dependent on it.
    I have commented out hook so it doesn’t run the code, can you try doing the changes on the Enfold theme itself? this should fix the issue, though it’s not really ideal.

    Best regards,
    Nikko

    in reply to: problem with registration key API google maps #1037984

    Hi minogig ,

    Can you try to check if you’re API key has an extra space after in the Theme Options?
    if it doesn’t try to check the solutions posted in this thread which has similar issue as you are having: https://kriesi.at/support/topic/google-maps-error-3/#post-672381
    Hope this helps.

    Best regards,
    Nikko

Viewing 30 posts - 14,791 through 14,820 (of 25,536 total)