Forum Replies Created

Viewing 30 posts - 6,151 through 6,180 (of 67,463 total)
  • Author
    Posts
  • in reply to: The flag of languages not appear in phone burger menu. #1432571

    Hi,

    Thank you for the screenshots.

    The language flags are visible on desktop view but the value of src attribute gets replaced on mobile view for some reason. Please provide the login details in the private field so that we can check the issue further. You can also use this code in the functions.php file to append the default language switcher beside the burger menu.

    add_action( 'ava_after_main_menu', 'wpml_switch_to_header' );
    function wpml_switch_to_header() {
            if(!wp_is_mobile()) return
    	echo do_action('wpml_add_language_selector');
    }

    Best regards,
    Ismael

    Hi,

    Yes, you should be able to use the plugin with the theme, but it will require a few adjustments, such as template and styling modifications. If you’re not familiar with the plugin or WordPress in general, you might have to seek the help of a freelance developer to ensure compatibility.

    Best regards,
    Ismael

    in reply to: Event Dates #1432569

    Hey rixi,

    Thank you for the inquiry.

    There is no default option for this, but you can create a custom field with the event or post date as the value. Then, add the following filter in the functions.php file to sort the items based on the value of the custom field.

    add_filter('avia_post_slide_query', 'avia_post_slide_query_mod');
    function avia_post_slide_query_mod( $query ) {
    	if( is_page(123) )
    	{
    		$query['meta_key'] = 'event_date';	
    		$query['orderby'] = 'meta_value_num';
    		$query['order'] = 'ASC';
    	}
    
    	return $query;
    }
    

    Another solution is to install an events plugins such as Events Calendar or Events Manager.

    // https://wordpress.org/plugins/the-events-calendar/
    // https://wordpress.org/plugins/events-manager/

    Best regards,
    Ismael

    in reply to: font icons missing suddenly #1432568

    Hi,

    Thank you for the inquiry.

    Our font icon libraries, although in the media library

    The font sets in the Iconfont Manager should not be removed during an update. Have you tried selecting the font set again from Media > Library? Please make sure to create a site backup or restore point before doing so.

    Best regards,
    Ismael

    in reply to: tables column widths #1432566

    Hi,

    Your new code has removed the double dates but the other issues are still the same.

    The following css code should address the requests mentioned above.

    /* remove the border from around the table */
    #top .av-82qhko-49fd44439e70710ba9259a5b8656603c .avia-data-table {
        border: 0;
    }
    /* set the years in one line, the color of the year to blue */
    #top .av-82qhko-49fd44439e70710ba9259a5b8656603c .avia-data-table .avia-desc-col {
        width: 100% !important;
        color: blue !important;
    }
    /* decrease padding cell padding */
    #top .av-82qhko-49fd44439e70710ba9259a5b8656603c .avia-data-table tr, #top .av-82qhko-49fd44439e70710ba9259a5b8656603c .avia-data-table th, #top .av-82qhko-49fd44439e70710ba9259a5b8656603c .avia-data-table td {
        padding: 0;
    }

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Looks like you’ve managed to add more content to the page. To test the issue, we saved the content of the home page as a template and applied it to a newly created private page. We then added a few text blocks with long paragraphs, and we’re not able to reproduce the issue. Please check the link in the private field.

    Best regards,
    Ismael

    in reply to: two Burger Menus #1432563

    Hi,

    please send the css handler so I can adjust the color of the burger menu. thanks

    Please add this css code to adjust the color of the burger menu icon.

    .header_color .av-hamburger-inner, .header_color .av-hamburger-inner::before, .header_color .av-hamburger-inner::after {
        background-color: red;
    }
    

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

    Best regards,
    Ismael

    in reply to: Mobile menu main font smaller #1432562

    Hi,

    The mobile menu is missing when we checked the site. Please add the following css code to fix the mobile menu issue and to adjust the size of the submenu items.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      #top #header .av-logo-container .av-main-nav>li.av-burger-menu-main {
        display: block !important;
      }
    
      .html_av-overlay-full #top #wrap_all #av-burger-menu-ul li li {
        font-size: 1em;
        line-height: 1.4em;
       }
    }
    

    Adjust the font-size value as required.

    Best regards,
    Ismael

    in reply to: scroll-margin-top & scroll-padding-top css properties #1432561

    Hi,

    Thank you for the info.

    It might not be working because of the AviaScrollSpy script which handles scrolling for anchor links and overrides the default scrolling behavior. Instead of using the scroll-margin-top, try to add the following filter in the functions.php file.

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

    This will add a 100px offset from the original scroll position.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    We are still not able to access the site, details below. Do you have a staging version of the site? Please provide access to the staging site or disable the security plugin temporarily.

    Best regards,
    Ismael

    in reply to: URGENT: homepage reverting to blog after theme update #1432559

    Hi,

    How do you update without messing up different settings? Is this the norm when updating the theme?

    The theme settings or the database should be retained as is and should not be affected after updating the theme. It’s possible that there are plugin conflicts that caused the layout issues, or cached resources that were not removed after the update. In the future, you should update the stating site first, fix any issues that may occur, before pushing it to the live site.

    Best regards,
    Ismael

    in reply to: Metadata element – possible to add default settings? #1432558

    Hi Rob,

    Thank you for the continued support! If you have more questions, please feel free to open another thread.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    Did you remove the text below the first section? We edited the page, added a few text blocks, and the page seems to be updating correctly. Please make sure that there are no invalid tags in your content to avoid the issue.

    Best regards,
    Ismael

    in reply to: Tables behaviour on mobile #1432468

    Hey!

    Thanks for the update.

    The site is still on maintenance mode. Can we have access to the dashboard? Please provide the login details in the private field.

    Best regards,
    Ismael

    in reply to: Small bar above Main Menu – font and icon size #1432467

    Hi,

    Thank you for the screenshots.

    Please keep border color set to white, then add this css code to remove the lines between the social icons.

    #top .social_bookmarks li {
        border-color: transparent;
        border: none;
    }

    Best regards,
    Ismael

    in reply to: tables column widths #1432459

    Hi,

    Thank you for the update.

    You can add this css code to adjust the width of the date container, and remove the duplicate date above the description.

    #top.page-id-472 .av-hriqo-df64f73a2229a5a484cc56fae9caca2e .avia-data-table * {
        width: 100%;
    }
    
    #top.page-id-472 .av-hriqo-df64f73a2229a5a484cc56fae9caca2e .avia-data-table td:before {
        display: none;
    }

    Best regards,
    Ismael

    in reply to: URGENT: homepage reverting to blog after theme update #1432458

    Hi,

    Thank you for the inquiry.


    @sophiasbiti
    : It’s possible that the site or your browser is still delivering the cached version of the stylesheets and scripts, which caused the layout issues. Did you try to toggle or temporarily disable the Enfold > Performance > File Compression settings after updating the theme?


    @Keasyconciergerie
    : You have to set the front and blog page in the Enfold > Theme Options panel, and reset the options in the Settings > Reading panel to default.

    Best regards,
    Ismael

    in reply to: Image resizing for mobile #1432457

    Hi,

    Thank you for the update.

    The srcset attribute is present on one of the images in the page above. Did you figure out the issue?

    <img src="https://www.dr-site.de/wp-content/uploads/2023/12/katrin-und-daniel-holzinger-stuttgart.webp" srcset="https://www.dr-holzinger-institut.de/wp-content/uploads/2023/12/katrin-und-daniel-holzinger-stuttgart.webp 705w, https://www.dr-holzinger-institut.de/wp-content/uploads/2023/12/katrin-und-daniel-holzinger-stuttgart-300x153.webp 300w, https://www.dr-holzinger-institut.de/wp-content/uploads/2023/12/katrin-und-daniel-holzinger-stuttgart-450x230.webp 450w, https://www.dr-holzinger-institut.de/wp-content/uploads/2023/12/katrin-und-daniel-holzinger-stuttgart-600x306.webp 600w" sizes="(max-width: 705px) 100vw, 705px">
    

    Best regards,
    Ismael

    in reply to: I can’t see the log #1432455

    Hey NanoMoller,

    Thank you for the inquiry.

    Did you install a template builder plugins? Looks like the default header is being replaced with a different header called “pagelayer-header”. Please try to deactivate the plugins temporarily and check if the default header displays.

    Best regards,
    Ismael

    in reply to: Center Icon Box #1432451

    Hey ballindigital,

    Thank you for the inquiry.

    You can add this css code to align the content of the icon boxes to the center.

    .av-lgmpw4id-df67b23b192e50caf808cf12e16beaf6 .iconbox_content .entry-content-header {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .av-lgmpw4id-df67b23b192e50caf808cf12e16beaf6 .iconbox_content .iconbox_content_container {
        text-align: center;
    }
    

    Best regards,
    Ismael

    in reply to: Tab sections on mobile #1432449

    Hey frb1,

    Thank you for the inquiry.

    The site is on maintenance mode and is not accessible. Please provide the login details in the private field. Could you also provide screenshots of the changes that you’d like to implement?

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    Access Denied – Sucuri Website Firewall

    Unfortunately, we got locked out by Sucuri. You may need to temporarily disable geolocation blocking. You can find the team members’ locations in the link below.

    // https://kriesi.at/about

    Best regards,
    Ismael

    in reply to: Tables behaviour on mobile #1432447

    Hey frb1,

    Thank you for the inquiry.

    The site is in maintenance mode, so we were not able to check it. Please provide the login details in the private field. There is no option for this out of the box, but the theme should automatically adjust the layout of the table element on mobile view. Would you mind providing a screenshot of the issue?

    Best regards,
    Ismael

    in reply to: Metadata element – possible to add default settings? #1432446

    Hi,

    Thank you for the update.

    The Separator/Whitespace element is spelled correctly on our end. Please check the screenshot in the private field. Would you mind providing a screenshot of the text or element?

    Best regards,
    Ismael

    in reply to: Slider volle Breite wie kann ich Text formatieren #1432444

    Hey Highlander-2013,

    Thank you for the inquiry.

    You can find more styling options by editing one of the slides, go to the Styling tab, and you should find more settings in the Colors and Font Sizes toggle. If you want to add your own css modifications, please use the Enfold > General Styling > Quick CSS field.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    We could adjust the css a bit to make the mega menu container fullwidth.

    #header .twelve.units {
        width: 100vw !important;
        right: calc(-24vw - 10px) !important;
    }

    You may need add a few css media queries to adjust the values on different screen sizes.

    Best regards,
    Ismael

    in reply to: Entry-Slider height #1432442

    Hi,

    Thank you for the update.

    There is no option for this by default but you can add the following css code to apply a minimum height to the sliders.

    .avia-content-slider-element-container.av-lr0sh4rf-253b4eed3b657e2271d5ec08f704cca5 .slide-entry {
        min-height: 230px;
    }

    Best regards,
    Ismael

    in reply to: image gallery – different sizes in thumbnail overview #1432367

    Hi,

    No problem! You can adjust the Masonry element’s Styling > Masonry Settings > Size Settings to Flexible Masonry or Perfect Automatic Masonry to display the images in their original height and aspect ratio. Let us know if you need more help.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Formularfelder im Kontaktformular individuell gestalten #1432365

    Hi,

    Did you hide the field labels? If you want to change the color of the placeholder, you can add this css code.

    ::-webkit-input-placeholder {
      /* Chrome/Opera/Safari */
      color: blue !important;
    }
    
    ::-moz-placeholder {
      /* Firefox 19+ */
      color: blue;
    }
    
    :-ms-input-placeholder {
      /* IE 10+ */
      color: blue;
    }
    
    :-moz-placeholder {
      /* Firefox 18- */
      color: blue;
    }
    

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    What do you mean by “next section”? Please provide the login credentials in the private field so that we can check the content of the builder.

    Best regards,
    Ismael

Viewing 30 posts - 6,151 through 6,180 (of 67,463 total)