Forum Replies Created

Viewing 30 posts - 11,611 through 11,640 (of 66,166 total)
  • Author
    Posts
  • in reply to: I'm not able to download and import demo template. #1327606

    Hi,

    Thank you for the info.

    Just in case the demo I chose: Consulting Demo

    We managed to import the demo without encountering the error above. You can now begin with the site modification.

    Hello, every time I try to download ‘Photography Portfolio Demo’ I get this information:

    If you want to import a different demo, try to reset the database and the whole installation using the WP Reset plugin.

    // https://wordpress.org/plugins/wp-reset/

    Best regards,
    Ismael

    in reply to: Fade in animation on section #1327590

    Hey Sigmund,

    Thank you for the inquiry.

    This option is not available in the color section element by default but you can use the layer slider instead. Add a new layer and enable the fade option in the Transitions > Style Properties settings.

    Best regards,
    Ismael

    in reply to: PDF link not opening #1327559

    Hey onedesignprint,

    Thank you for the inquiry.

    We cannot open the PDF file on desktop and mobile view. The file doesn’t seem to exist. Please remove the old file, then try to upload it again. (see private field)

    Best regards,
    Ismael

    in reply to: Enfold / Formidable Forms javascript problem (Other Field) #1327557

    Hey sitesme,

    Thank you for the inquiry.

    Looks like you are now using the default contact form from the theme. Where did you add the formidable forms? Please provide the page URL in the private field.

    Best regards,
    Ismael

    in reply to: Enfold Single Post Navigation #1327554

    Hi,

    Thank you for the update.

    The post navigation is not displaying in some of your posts because there are fullwidth elements within the page. The post navigation is set to hide by default on pages with fullwidth elements including sliders, grid row or color sections. To enable it back, you have to adjust the settings using the avia_post_nav_settings filter.

    Please add the code in the functions.php file.

    /*
    * Add your own functions here. You can also copy some of the theme functions into this file. 
    * WordPress will use those functions instead of the original functions then.
    */
    function avia_remove_fullwidth_slider_check($settings)
    {
       $settings['is_fullwidth'] = false;
       $settings['skip_output'] = false;
       return $settings;
    }
    add_filter('avia_post_nav_settings','avia_remove_fullwidth_slider_check', 10, 1);
    

    Best regards,
    Ismael

    in reply to: Sticky Blogposts when using a masonry gallery #1327552

    Hey emilconsor,

    Thank you for the inquiry.

    Would you mind creating a test page so that we can check the issue? Please provide the site URL and the login account in the private field.

    Best regards,
    Ismael

    in reply to: 4.8.7 Broke Site #1327551

    Hi,

    Thank you for the info.

    Would you mind updating the theme again to the latest version? After the update, try to remove the logo, update the theme options, then upload the logo again. Also, make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings afterwards.

    Best regards,
    Ismael

    in reply to: Purchase upgrade? #1327549

    Hi,

    Alright! Please feel free to open another thread if you need anything else. We will close this thread for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Where to put a code behind button #1327548

    Hey Monika,

    Thank you for the inquiry.

    How did set the content to open inside a lightbox? You may need to apply a custom css class name or ID to the button in order to trigger the lightbox popup.

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

    Best regards,
    Ismael

    in reply to: Sound button next to logo. #1327547

    Hi,

    Thank you for the inquiry.

    You can modify the enfold/includes/helper-main-menu.php file and add the text directly around line 211.

    if($icon_beside) {
          $main_nav .= $icons;
    }
    

    Try to replace the code with.

    if($icon_beside) {
          $main_nav .= "<div class='avia_connect'><span>Connect with us:</span></div>";
          $main_nav .= $icons;
    }

    It might require a few css adjustments afterward.

    Best regards,
    Ismael

    in reply to: Pop-Up Form Bitrix #1327546

    Hey Krizz1989,

    Thank you for the inquiry.

    You can use the default lightbox option in the theme to open a specific content inside a lightbox. Please check the following threads for more info.

    // https://kriesi.at/support/topic/form-in-popup-on-mobile/#post-1308520
    // https://kriesi.at/support/topic/page-scroll-up-on-accordion-click/#post-1315133

    Best regards,
    Ismael

    in reply to: Second language version anomaly #1327545

    Hi,

    Thank you for the inquiry.

    Did you adjust the EN settings in the Enfold > Footer > Default Footer & Socket Settings? Please note that each language has each own set of options, which has to be configured separately. (see private field)

    Best regards,
    Ismael

    in reply to: A question about the files #1327542

    Hey Martin,

    Thank you for the inquiry.

    That is the new post css mechanism and the number in the file name refers to the page ID. The css files contain custom styles for the elements within a specific page. It was introduced in the later versions of the theme.

    Best regards,
    Ismael

    in reply to: How to stop animations effect upon loading homepage #1327541

    Hey Antonio,

    Thank you for the inquiry.

    You can try this css code to completely disable every animations and transitions in the page, but this might cause some of the elements to not entirely show.

    body * {
        animation: none !important;
    }

    Please toggle or temporarily disable the Enfold > Performance > File Compression settings, and
    make sure to check the page for any inconsistencies after adding the css code.

    Best regards,
    Ismael

    in reply to: Responsive issue (bug?) with accordion element #1327445

    Hi,

    Thank you for the info.

    Adding this css code should help resize the input fields in the IDX contact form.

    #ihf-contact-request-form fieldset {
        width: 100%;
        max-width: 100%;
        min-width: 0 !important;
    }
    

    Please toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code.

    Best regards,
    Ismael

    in reply to: Google Maps no longer displaying #1327442

    Hi,

    Thank you for the inquiry.

    The map is displaying correctly on our end (see private field). Did you manage to find the cause of the issue?

    Screenshot: https://imgur.com/NZECwSp

    Best regards,
    Ismael

    in reply to: Anchor links goes to wrong position on mobile #1327438

    Hi,

    We cannot reproduce the issue on an iPad Pro device emulation. To deactivate the sticky header on larger tablets temporarily, try to use this css code.

    @media only screen and (min-width: 768px) and (max-width: 1366px) {
    .responsive.html_mobile_menu_tablet #top #wrap_all #header {
        position: relative;
        width: 100%;
        float: none;
        height: auto;
        margin: 0 !important;
        opacity: 1;
        min-height: 0;
    }
    }
    

    Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Leaflet map CSS styling #1327434

    Hey forevershining,

    Thank you for the inquiry.

    You can toggle the visibility of the element by adjusting the Advanced > Responsive > Element Visibility options. You can also apply a unique class name or ID to the element and use it to hide the element on certain screen sizes.

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

    Best regards,
    Ismael

    in reply to: Logo gets bigger after Enfold update #1327432

    Hi,

    Thank you for the update.

    Do you have a staging or development version of the site? Try to do the update in the staging version first so that we can check the changes and fix any issues that may occur.

    Best regards,
    Ismael

    in reply to: About table function #1327430

    Hi,

    Thank you for the update.

    We cannot find the table element in the page. Where did you add it? The Styling > Table Styling > Table Purpose should be set to the second option (tabular) first in order to make it scrollable.

    Best regards,
    Ismael

    in reply to: Problem with widgets #1327375

    Hey Bruno,

    Thank you for the inquiry.

    Did you follow the instructions in the WPML documentation? There are a few ways of translating the widgets. One method requires the String Translation module and another way is to create a widget for each language. Please check the documentation for more info.

    // https://wpml.org/documentation/getting-started-guide/translating-widgets/

    Best regards,
    Ismael

    in reply to: There Was an Error Getting Your Stats #1327374

    Hey jnightingale,

    Thank you for the inquiry.

    Did you install other plugins prior to the issue, or did you update the theme? We are getting a lot of errors in the console including an internal server error (see private field), but we are not yet sure why it is happening. You may need to contact the plugin developers for additional assistance. For the meantime, please toggle or temporarily disable the Enfold > Performance > File Compression settings, then disable third party shop extensions. One of these plugins in combination with the theme might be causing the issue.

    Best regards,
    Ismael

    in reply to: Logo gets bigger after Enfold update #1327372

    Hey sitesme,

    Thank you for the inquiry.

    There are minor changes in the logo in the latest version of the theme, which might have affected your logo. Are you trying to decrease its size on mobile view? If so, try to use this css code.

    @media only screen and (max-width: 767px) {
        .responsive .logo img {
            max-height: 60px;
        }
    }
    

    Default max-height value is 80px.

    Best regards,
    Ismael

    in reply to: Submenues in Mega Menu not showing correctly #1327371

    Hey Tarakbc,

    Thank you for the inquiry.

    You can use this css code to adjust the position of the submenu under the menu item “Om Oss”.

    #menu-item-4046 .sub-menu {
        left: -120px !important;
    }
    

    Or adjust its position and move it from the very end to the middle of the menu container.

    Best regards,
    Ismael

    in reply to: Clone single Page from one site to another #1327370

    Hi,

    Thank you for the update.

    there is no if(isset($avia_config[‘use_child_theme_functions_only’])) return; in the functions.php file.

    Looks like you are using a child theme. Just paste the debug mode snippet anywhere in the functions.php file. The debug mode field should display below the advance layout builder after adding the code. Please make sure to purge the cache or refresh the browser before editing the page.

    Best regards,
    Ismael

    in reply to: Anchor links goes to wrong position on mobile #1327369

    Hi,

    Thank you for the inquiry.

    We just noticed that you are not using color sections to divide the content and apply the anchor or ID. The offset value will only be calculated if the anchor points to a color section, which is why the adjustment with the filter is not working. We created a test page so that you can see the difference of using the color section. Just click the button in the first section to scroll to the section with the ID geschichte. (see private field)

    Best regards,
    Ismael

    in reply to: Accordion/Toggles deeplinking #1327367

    Hi,

    Try to use this code in the functions.php file to adjust the scroll offset on desktop view.

    function avf_header_setting_filter_mod($header) {
            if(!wp_is_mobile()) {
    	    $header['header_scroll_offset'] = $header['header_scroll_offset'] - 100;
            }
    	return $header;
    }
    add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1);
    

    Please make sure to purge the cache before attempting to check the page again.

    Best regards,
    Ismael

    in reply to: Exclude cookies for select content #1327366

    Hi,

    No problem! Glad it is working. Please feel free to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: issue with ordering of blog posts #1327364

    Hey bauchope,

    Thank you for the inquiry.

    The sorting option works fine when we deactivate the plugins as shown in the screenshot below. You may need to deactivate the plugins temporarily, then activate them one at a time to find the cause of the issue.

    Screenshot: https://imgur.com/ofbdYB7

    Best regards,
    Ismael

    in reply to: footer and socket is not visible anymore #1327363

    Hey knotorious,

    Thank you for the inquiry.

    We may have to inspect the site in order to check the issue properly. Please post the site URL in the private field. For the meantime, please toggle or temporarily disable the Enfold > Performance > File Compression settings, then purge the cache afterwards.

    Best regards,
    Ismael

Viewing 30 posts - 11,611 through 11,640 (of 66,166 total)