Forum Replies Created

Viewing 30 posts - 21,211 through 21,240 (of 67,482 total)
  • Author
    Posts
  • in reply to: Theme update error ('unable to copy some files') #1143197

    Hi,

    Thank you for the update.

    Where is the site hosted? It’s possible that your server is rejecting the requests or the source files from Envato. We’ll forward this thread again to the dev team.

    Yes, we can help you with the update this time but it will be very inconvenient for you to look for us every time you needed to update. We are pretty sure that is not an issue with the theme, but rather an issue related to the server configuration or something else.

    Best regards,
    Ismael

    in reply to: Menu in mobile devices #1143195

    Hi,

    ‘– PORTFOLIO‘ at top of the PORTFOLIO submenu. Is there a way to remove the – PORTFOILO submenu item?

    That is what the option does. It creates a copy of the parent menu item inside the sub menu container. That’s the only way to have access to the parent menu item and still have the sub menu items hidden. If you want to remove the “clone” or the copy of the parent menu item, you have to set the menu to display all items including the sub menu.

    Best regards,
    Ismael

    in reply to: Ajax Portfolio Search #1143194

    Hi,

    Thank you for the update.

    Only the content from the “Ajax Portfolio Preview Settings” including the slider or the gallery will be displayed in the AJAX preview by default. It will not be able to display any content from the default editor — but it’s possible. Unfortunately, it will require modification that is beyond the scope of support.

    Best regards,
    Ismael

    in reply to: Enfold Table of Contents Widget not Landing on H2 #1143192

    Hi,

    Odd. The site scrolls smoothly now every time we click an item in the TOC even though the option in the widget is disabled. Did you add a smooth scroll script or plugin? Unfortunately, we are not yet sure why the widget’s smooth scroll option is not working.

    Thank you for the update.

    Best regards,
    Ismael

    in reply to: start page doesn`t change #1143190

    Hi,

    Thank you for the update.

    1.) I didn’t notice that you’re already using the plugin. Sorry about that. You can use this css code to create some space between the social icons.

    #ssb-container ul li {
        line-height: 45px;
        margin-bottom: 50px;
    }

    2.) And add this one to add a border around the tagcloud items.

    .tagcloud a {
    	border: 1px solid gray;
    	border-color: gray !important;
    	margin-top: 3px;
    	margin-right: 3px;
    }

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    in reply to: Open Youtube Video in Lightbox #1143189

    Hi,

    Looks like @Guenter is starting to implement the script, which will allow the video element to directly open inside a lightbox. It will probably be included in the next release.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Activation Code Error ?? #1143188

    Hi,

    Thank you for the update.

    We checked the layer slider panel, but there’s no existing sliders in it, so we created one and added a background to it. We then created a test page, added the layer slider element using the builder and everything seems to be working as it should. You’ll see the test page URL in the private field.

    Best regards,
    Ismael

    in reply to: WPML translation: not all settings taken over #1143187

    Hi,

    Thank you for the update.

    Do you have site backup or restore point? We would like try and transfer the theme settings in the EN version manually. We’ll need a backup in case something went wrong.

    UPDATE: The EN version looks exactly the same as the original language.

    Best regards,
    Ismael

    in reply to: Help with isolating an element #1142632

    Hi,

    Thank you for the update.

    Yes, you can do that. If you want the selector to be more specific, add the “#top” id or even “.responsive #top” plus your custom class name. They’re all the same. Did you enable the Performance > File Compression settings? You should disable that for now.

    Best regards,
    Ismael

    in reply to: Create Horizontal Overlap #1142626

    Hey!

    Yes, you can do that. Just apply a custom css class name to the element and style it as you wish.

    // https://kriesi.at/documentation/enfold/add-custom-css/

    Thank you for the update.

    Regards,
    Ismael

    Hi,

    Thank you for that info.

    There is a missing curly brace in that css media query. Please use the following css code instead.

    @media only screen and (max-width: 1110px) {
        .av-main-nav > li.menu-item-avia-special { display: block; }
    }
    .av-main-nav > li { display: none; }
    

    That should fix the issue.

    Best regards,
    Ismael

    in reply to: Serve scaled images #1142618

    Hi,

    Great! Glad to know that you figured it out. We’ll close the thread now.

    Have a nice day!

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Did you toggle the Performance > File Compression settings after adding the code? It is possible that the site is still loading the old version of the stylesheet. Please toggle the compression before testing the page again.

    Best regards,
    Ismael

    Hi,

    Sorry about that. We’ll do our best to help you better in the future. And please note that you will always have a higher chance of getting a response when you open your own thread or ticket.

    Thank you for your understanding and patience.

    Best regards,
    Ismael

    in reply to: Video shortcode in Ajax Portfolio #1142608

    Hi,

    Thank you for the update.

    We found an unclosed column shortcode in the preview editor, but the result is still the same after fixing it. The content is thrown out of the AJAX preview, but we could not figure out why. Did you add any customizations in the theme aside from those suggested above? Can we deactivate the plugins temporarily?

    Where did you add the “avf_custom_exec_sc_only” filter? We can’t find it in the functions.php file.

    Best regards,
    Ismael

    Hi,

    You can’t override the config file in the child theme. What you need to do is remove the default hook.

    remove_action( 'woocommerce_after_shop_loop_item', 'avia_add_cart_button', 16);
    

    And create your own hook and callback. Just copy the “avia_add_cart_button” function in the child theme’s functions.php file, rename it, then do your own modifications.

    Best regards,
    Ismael

    in reply to: LayerSlider not working #1142574

    Hi,


    @BinaryDigitalDesigns
    : The site contains a very old version of the theme, 4.4.1. In order to fix the layer slider issue, upgrade the theme to version 4.6.2. Please feel free to open your own thread if you need anything else. We’ll close the thread now.

    Best regards,
    Ismael

    in reply to: masonry gallery issue when mage is open #1142573

    Hi,

    Thank you for the update.

    Add this css code to prevent the site from scrolling when lightbox is activated.

    .mfp-zoom-out-cur {
        height: 100vh;
        overflow: hidden;
    }
    
    .mfp-bg {
        height: 100vh !important;
    }

    You can also add this css to remove the transparency of the lightbox background and completely cover the site content.

    .mfp-zoom-in.mfp-ready.mfp-bg, .mfp-zoom-in.mfp-ready .mfp-preloader {
        opacity: 1;
    }
    

    Best regards,
    Ismael

    in reply to: Masonry gallery images border #1142572

    Hi,

    Thank you for the update.

    We checked the site on Chrome Windows 10, but we are still not able to reproduce the issue. Did you remove the css code? The items don’t flicker on load.

    Best regards,
    Ismael

    in reply to: Portfolio issues #1142570

    Hi,

    Thank you for the update.

    The items in the portfolio grid will automatically display in the order they were published, but it can be adjusted manually in the “Order by” and “Display Order” settings of the portfolio grid element. However, if you want to manually sort the order of the items, the portfolio post type has to support “page-attributes”. Use this snippet to enable the “page-attributes” for the portfolio post type.

    /* Change portfolio post type settings */
    add_filter('avf_portfolio_cpt_args', 'avf_portfolio_cpt_args_mod');
    function avf_portfolio_cpt_args_mod($args) {
    	$args['supports'][] = 'page-attributes';
    	return $args;
    }
    

    You can then manually set the value of the “Order” attribute of the portfolio items that have to be displayed first. Don’t forget to set the “Order by” settings of the portfolio grid element to “Page Order”.

    // https://make.wordpress.org/support/user-manual/content/pages/page-attributes/#order

    Best regards,
    Ismael

    in reply to: Menu in mobile devices #1142567

    Hi,

    The “Clone title menu items to submenu” is not set to the “Create a clone for the title menu item”. You have to set it to that option if you want to hide the submenu and still have access to the parent menu item.

    Thank you for the update.

    Best regards,
    Ismael

    in reply to: Sidebar schließt nicht an Rand an #1142565

    Hi,

    I only change the color of the sidebar to white. Maybe it colored not the whole element?

    Yes, that may be the case. You can apply a right margin to center align the content inside the sidebar area, but it will decrease the width of the widgets.

    .inner_sidebar {
        margin-left: 50px;
        margin-right: 50px;
    }

    If you want to reclaim some of the area for the sidebar, try to adjust the content/sidebar ratio in the Enfold > General Layout > Dimensions panel.

    Thank you for the update.

    Best regards,
    Ismael

    in reply to: Google Maps API Error message #1142564

    Hi,

    Yes, that can be the case sometimes. We will change the version to 3.38 in the next release.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Theme update error ('unable to copy some files') #1142561

    Hi,

    Sorry about that. I’m not familiar with that plugin, and I might have missed that it’s initially disabled.

    >> When I look at the source code for your site it looks like the updates are disabled:

    It won’t affect the auto update, but I’ve asked one of our developers to confirm.I’ll let you know once he responds. For now, you will have to update the theme manually via FTP.

    Best regards,
    Ismael

    in reply to: Add padding to navigation menu items but separator #1142559

    Hi,

    Thank you for the update.

    Can you give us a screenshot of the header or menu layout that you have in mind? Please use imgur or dropbox.

    Best regards,
    Ismael

    in reply to: Site stuck in maintenance mode #1142557

    Hi,

    @jhnrgrn: We don’t have access to that email address — only Kriesi. Please provide a username and password directly. And create your own thread so that we can close this one. Did you install a cache or maintenance mode plugin?

    Best regards,
    Ismael

    in reply to: Blog featured image and sidebars #1142556

    Hi,

    Thank you for the update.

    We just found out that the image is used as the background of the body element. Did you do that?

    <body data-rsssl="1" id="top" class="post-template-default single single-post postid-964 single-format-standard stretched lato " itemscope="itemscope" itemtype="https://schema.org/WebPage" style="background:url(https://aquastars.com.au/wp-content/uploads/2019/09/taylah2.jpg) no-repeat center top transparent;background-size:100% 370px;">
    

    Looks like it was added directly in the template.

    Best regards,
    Ismael

    in reply to: Google Maps – Can't connect with your API key #1142555

    Hi,

    The API takes time to propagate or initialize, usually 5 minutes up to an hour, so you have to wait for a bit before you can actually use it. Anyway, we’re glad that the map is finally working now. Please don’t hesitate to open a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    There was an invalid css code in the Quick CSS field, which breaks the layout of the privacy modal window when the file compression is enabled. We removed the single quote in this css code.

    .fillskrew1{
      min-width:13%; 
      background-color: #035d67;'
      float: left;
       margin-left: -2%;
      }
      

    Best regards,
    Ismael

    in reply to: Logo and fonts uploaded to Enfold. #1142550

    Hey Fernanda,

    Thank you for the inquiry.

    The logo displays fine on our end. Which fonts are you referring to? Please check the screenshot below.

    Screenshot: https://imgur.com/a/l0qpeoN

    Best regards,
    Ismael

Viewing 30 posts - 21,211 through 21,240 (of 67,482 total)