Forum Replies Created

Viewing 30 posts - 8,011 through 8,040 (of 67,457 total)
  • Author
    Posts
  • in reply to: Powered by WordPress #1410664

    Hi,

    You can put additional content beside the [nolink] placeholder, including html tags.

    Example:

    [nolink] designed by <a href="#">Banana Tree News</a>
    

    Best regards,
    Ismael

    in reply to: code help! #1410566

    Hey daves1997,

    Thank you for the inquiry.

    We added the following code to limit the height of the column cells in the Quick CSS field, but it is not taking effect. This might be because the CSS files are bundled or compressed into a single file. We have tried disabling the CSS minification in the WP Rocket plugin, but it didn’t resolve the issue. It seems that there might be another plugin responsible for bundling the CSS files. Could you please check if you have any other plugins installed that might be performing this function?

    .ihf-grid-result.col-xs-6 {
        height: 30px !important;
        padding-top: 10px;
    }

    Best regards,
    Ismael

    in reply to: Avia Layout Editor on Posttype – Events Manager Pro #1410565

    Hey flogee,

    Thank you for the inquiry.

    The filter above should have worked. Please provide the login details in the private field so that we can check the issue further. Have you tried purging the cache?

    Best regards,
    Ismael

    in reply to: My contact form is not sending emails #1410563

    Hey ijnavas,

    Thank you for the inquiry.

    Did you change the email address in the filter? Please try to remove the previous filter and use this one instead.

    function avf_change_cf_from() {
        return " (Email address hidden if logged out) ";
    }
    add_filter('avf_form_from', 'avf_change_cf_from', 10);
    

    Make sure to copy this code directly from the forum.

    Best regards,
    Ismael

    in reply to: Avia editor stuck on preload #1410562

    Hey gandreatta91,

    Thank you for the inquiry.

    Have you tried updating the theme to version 5.6.2? After the update, please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings. This will regenerate the scripts and stylesheets. Additionally, don’t forget to purge the cache to ensure that the changes take effect.

    Best regards,
    Ismael

    in reply to: custom icons #1410561

    Hey Gianluca,

    Thank you for the inquiry.

    Do you have the images in SVG format? If so, you can use a tool like https://fontello.com/ to generate custom font icons from the SVG files. Once you have generated the font icons, you can upload them to the theme using the Iconfont Manager. For detailed instructions on how to add your own fontello or flaticon icons, please refer to the documentation provided below:

    // https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-

    Best regards,
    Ismael

    in reply to: How to display a preview of an particular post? #1410559

    Hey annevoelkel,

    Thank you for the inquiry.

    Have you tried assigning a unique category to the post you want to display? Once you have done that, you can add another Blog Posts element that specifically filters and displays only the item from that particular category. This way, you can ensure that the post you want to showcase is isolated and displayed separately. Let us know if this helps.

    Best regards,
    Ismael

    in reply to: miss [role] in burger menu #1410557

    Hey edolmen,

    Thank you for the inquiry.

    The screenshot above is not accessible. Would you mind providing another screenshot? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot. Here are the steps to follow:

    1.) Visit the website of your chosen platform, such as Savvyify, Imgur or Dropbox.
    2.) Locate the option to upload a file or an image.
    3.) Select the screenshot file from your computer or device and upload it to the platform.
    4.) After the upload is complete, you will be provided with a shareable link or an embed code.
    5.) Copy the link or code and include it in your message or response to provide us with the screenshot.

    If you want to modify the markup of the burger menu, try to add this code in the functions.php file.

    
    if( ! function_exists( 'avia_append_burger_menu_mod' ) )
    {
    	//first append search item to main menu
    	remove_filter( 'wp_nav_menu_items', 'avia_append_burger_menu', 9998, 2 );
    	remove_filter( 'avf_fallback_menu_items', 'avia_append_burger_menu', 9998, 2 );
    
        add_filter( 'wp_nav_menu_items', 'avia_append_burger_menu_mod', 9998, 2 );
    	add_filter( 'avf_fallback_menu_items', 'avia_append_burger_menu_mod', 9998, 2 );
    
    	/**
    	 * Append the burger menu
    	 *
    	 * @param string $items
    	 * @param array $args
    	 * @return string
    	 */
    	function avia_append_burger_menu_mod ( $items , $args )
    	{
    		global $avia_config;
    
    		$location = ( is_object( $args ) && isset( $args->theme_location ) ) ? $args->theme_location : '';
    		$original_location = isset( $avia_config['current_menu_location_output'] ) ? $avia_config['current_menu_location_output'] : '';
    
    		/**
    		 * Allow compatibility with plugins that change menu or third party plugins to manpulate the location
    		 *
    		 * @used_by Enfold config-menu-exchange\config.php			10
    		 * @since 4.1.3
    		 */
    		$location = apply_filters( 'avf_append_burger_menu_location', $location, $original_location, $items , $args );
    
    	    if( ( is_object( $args ) && ( $location == 'avia' ) ) || ( is_string( $args ) && ( $args == 'fallback_menu' ) ) )
    	    {
    	        $class = avia_get_option('burger_size');
    
    	        $items .= '
     	<li class="av-burger-menu-main menu-item-avia-special ' . $class . '">
    	        			<a href="#" aria-label="' . esc_attr( __( 'Menu', 'avia_framework' ) ) . '" aria-hidden="false">
    							<span class="av-hamburger av-hamburger--spin av-js-hamburger">
    								<span class="av-hamburger-box">
    						          <span class="av-hamburger-inner"></span>
    						          <strong>' . __( 'Menu', 'avia_framework' ) . '</strong>
    								</span>
    							</span>
    							<span class="avia_hidden_link_text">' . esc_html( __( 'Menu', 'avia_framework' ) ) . '</span>
    						</a></li>
    ';
    	    }
    
    	    return $items;
    	}
    }
    

    You may need to add role attribute somewhere in this code.

    $items .= '
     	<li class="av-burger-menu-main menu-item-avia-special ' . $class . '">
    	        			<a href="#" aria-label="' . esc_attr( __( 'Menu', 'avia_framework' ) ) . '" aria-hidden="false">
    							<span class="av-hamburger av-hamburger--spin av-js-hamburger">
    								<span class="av-hamburger-box">
    						          <span class="av-hamburger-inner"></span>
    						          <strong>' . __( 'Menu', 'avia_framework' ) . '</strong>
    								</span>
    							</span>
    							<span class="avia_hidden_link_text">' . esc_html( __( 'Menu', 'avia_framework' ) ) . '</span>
    						</a></li>
    ';
    

    Best regards,
    Ismael

    Hi,

    After adding the CSS code that we suggested above, try disabling the CSS compression in the Enfold > Performance > File Compression section. Have you tried reselecting the categories?

    Best regards,
    Ismael

    in reply to: Blog Layout Settings #1410554

    Hey atixservices,

    Thank you for the inquiry.

    Have you tried temporarily disabling the Enfold > Performance > File Compression settings? This should regenerate the scripts and stylesheets. Additionally, make sure to purge the cache or disable the cache plugin while editing the site. Let us know if this helps.

    Best regards,
    Ismael

    in reply to: Big Code Block above the Avia Builder Elements #1410552

    Hey Monika,

    Thank you for the inquiry.

    We may need to access the site in order to check the issue further. Please provide the admin account info in the private field. In the meantime, you can try setting the builder to debug mode, which will allow us to access the shortcodes in the page.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Have you tried adjusting the value of the min-height property? On screens smaller than 767px, the height of the line graph hovers around 200px. Adjusting the min-height value closer to the default height should help.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .avia-chart-container.av-2vujhrt-0855884933b1b8267e5416ea7624b97a canvas.avia-chart {
        height: 250px !important;
      }
    }
    

    Best regards,
    Ismael

    in reply to: mobile menu not showing up #1410413

    Hey jenny,

    Thank you for the inquiry.

    You may need to temporarily disable the “Enfold > Performance > File Compression” settings in order to regenerate the scripts and stylesheets. After disabling, make sure to purge the cache. If the issue persists, please try adding the following code to the Quick CSS field:

    @media only screen and (max-width: 767px) { 
        #top .header_color .av-hamburger-inner, #top .header_color .av-hamburger-inner::before, #top .header_color .av-hamburger-inner::after {
            background-color: #808080;
        }
    }
    

    Best regards,
    Ismael

    Hey Tanja,

    Thank you for the inquiry.

    What needs to happen for only the clicked on instance’s pagination to change when it is clicked on, without affecting the other instances on the page?

    Unfortunately, individual pagination for each instance of the blog posts element is not possible due to the way pagination works in WordPress. The pagination is determined by the value of the “page” query parameter, which changes whenever a different page is accessed. As a result, all instances of the blog posts element on the same page respond to this change and display the corresponding posts.

    As an alternative, you can replace the Blog Posts element with the Masonry element and enable the “load more” button.

    Best regards,
    Ismael

    in reply to: Force Download #1410411

    Hey Snerp,

    Thank you for the inquiry.

    You may need to manually create a download link using the “a” tag and add the “download” attribute to it.

    // https://www.w3schools.com/tags/att_a_download.asp

    Best regards,
    Ismael

    in reply to: Randomly disappearing lightbox title #1410410

    Hey Videmi,

    Thank you for the inquiry.

    The reason the lightbox title is not displaying could be due to the removal of the title attribute of the gallery items. Please check if you have added any custom scripts or modifications that may be responsible for removing the title attribute.

    In our own installation, we created a similar image gallery, and the titles of the images displayed correctly in the lightbox container. Therefore, it’s possible that a customization or modification specific to your installation is causing this issue.

    I recommend reviewing any custom code or modifications you have made that could affect the gallery functionality. Look for any code that modifies the image gallery or removes the title attribute.

    Best regards,
    Ismael

    in reply to: How can I add WPML #1410409

    Hey Anna_Tewes,

    Thank you for the inquiry.

    You can use template hooks to insert the language switcher beside the burger menu or anywhere on the page. To achieve this, please add the following code to the functions.php file of your theme:

    function ava_icl_language_selector(){
    	do_action('wpml_add_language_selector');
    }
    add_action('ava_after_main_menu', 'ava_icl_language_selector');
    

    This may require a few css adjustments.

    Best regards,
    Ismael

    in reply to: Cookie Consent Bar #1410408

    Hey landhausaustria,

    Thank you for the inquiry.

    You may have forgotten to include the site URL in the private field. Please add the link so that we can check the issue properly.

    Have you tried adjusting the options in the “Enfold > Privacy & Cookies > Cookie Handling” panel? You may need to check the site in incognito mode or make sure to remove the cookies beforehand.

    If you’re still experiencing issues after adjusting the options, please provide us with the site URL so that we can further investigate and assist you in resolving the problem.

    Best regards,
    Ismael

    in reply to: CSS Classes (optional) #1410407

    Hey Illingco,

    Thank you for the inquiry.

    You may need to enable the CSS Classes field from the Screen Options > Show advanced menu properties panel. Please check the documentation below.

    // https://wordpress.org/documentation/article/appearance-menus-screen/#screen-options

    Best regards,
    Ismael

    Hi,

    Thank you for the inquiry.

    Have you tried reselecting the categories in the masonry element? If the issue persists, you can temporarily hide the variable items by adding the following CSS code:

    .av-masonry-entry.type-product_variation {
        display: none !important;
    }
    

    Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings in order to ensure that the changes take effect.

    Best regards,
    Ismael

    in reply to: Contact Form Notification Email Larger Text #1410405

    Hey idelaydis,

    Thank you for the inquiry.

    There is no option for adjusting font size and color by default, but many email browsers, such as Gmail, provide options to customize font settings. You can use these options to adjust the font size and color according to your preferences.

    In Gmail, for example, you can modify the font settings by following these steps:

    1. Open Gmail and click on the gear icon in the top-right corner.
    2. Select “Settings” from the dropdown menu.
    3. In the “General” tab, scroll down to the “Default text style” section.
    4. Here, you can adjust the font size, font family, and font color to your liking.
    5. Once you have made the desired changes, scroll to the bottom and click on “Save Changes” to apply the modifications.

    Please note that the availability and exact location of font customization options may vary across different email clients and browsers. It’s recommended to explore the settings of the specific email client you are using to find the font adjustment options.

    Best regards,
    Ismael

    Hey tonyiatridis,

    Thank you for the inquiry.

    To disable the lightbox or pointer events for the masonry item on mobile devices, you can use the following CSS code:

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .av-masonry-entry.av-masonry-item-loaded {
        pointer-events: none;
      }
    }
    

    By setting pointer-events to none, the masonry item will no longer respond to user interactions, effectively disabling the lightbox or any other pointer events associated with it.

    Best regards,
    Ismael

    in reply to: Button -> Bookingportal -> iframe #1410044

    Hi,

    Thank you for the update.

    The first screenshot is not accessible and when we visited the above page, there is no button that opens a lightbox. Would you mind providing the first screenshot again? You can also use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot.

    Best regards,
    Ismael

    Hey browlist,

    Thank you for the inquiry.

    To add the product title and product image, you can utilize either the Image or Text elements from the Advance Layout Builder (ALB). Simply select the appropriate element based on your preference and insert the necessary information accordingly. Unfortunately, there are no specific builder elements dedicated to product titles and product images.

    Best regards,
    Ismael

    in reply to: Portfolio Grid Doesn’t Open to New Page #1410039

    Hi,

    Thank you for the clarification.

    By default, there isn’t an option available for achieving this specific functionality. However, you can still achieve it by utilizing one of the scripts provided in the following threads:

    // https://kriesi.at/support/topic/load-more-option-for-portfolio-grid/#post-1306984
    // https://kriesi.at/support/topic/let-portfolio-item-link-open-in-a-new-tab/
    // https://kriesi.at/support/topic/portfolio-item-links-need-to-open-in-new-browser-window/#post-1295194
    // https://kriesi.at/support/topic/masonry-gallery-38/

    These threads contain discussions and solutions related to your requirement. You can visit each thread and choose a script that best suits your needs. Make sure to follow the instructions provided in the threads to implement the script successfully.

    Best regards,
    Ismael

    in reply to: Table, cells not aligned #1410038

    Hey oxyde31,

    Thank you for the inquiry.

    The misalignment is likely caused by the content in the second column breaking into a second line, which affects the overall alignment. To resolve this, you need to ensure that the content in both columns has the same number of lines. By adjusting the text or layout in the second column, you can ensure that the content aligns properly.

    Best regards,
    Ismael

    Hey marc_david,

    Thank you for the inquiry.

    Are you trying to open a shortcode as content using the Button element? Please try to check the thread below for a possible solution.

    // https://kriesi.at/support/topic/popup-window-3/#post-1337540
    // https://kriesi.at/support/topic/code-snippet-inline-post-content-popup-magnific-popup-shortcode/
    // https://kriesi.at/support/topic/pop-up-feature/#post-1395322
    // https://kriesi.at/support/topic/team-member-element-open-team-member-description-in-lightbox/#post-1354989

    Best regards,
    Ismael

    in reply to: change hotspot symbol #1410034

    Hi,

    Thank you for the update.

    The image is not displaying correctly because it a little bit larger than the hotspot container. To fix the issue, you may need to specify the background-size property.

    .av-hotspot-container-inner-wrap .av-image-hotspot:nth-child(1) .av-image-hotspot_inner {
        background-image: url("https://test.s-design.tirol/Salzraum/wp-content/uploads/fahne.png");
        background-size: contain;
    }

    Best regards,
    Ismael

    in reply to: Logo in Header #1410032

    Hey aeffe68,

    Thank you for the inquiry.

    What do you mean by “blank menu”? If you need to change the logo on a specific page, please check the documentation below.

    // https://kriesi.at/documentation/enfold/logo/#change-the-logo-image-on-some-pages

    Best regards,
    Ismael

    in reply to: noindex when enfold is enabled #1410030

    Hi,

    I changed the Meta Tag “robots” section to ‘Let SEO plugin set this tag” and the noindex code disappears from the head code.

    Do you need any further assistance with the issue? If not, we can go ahead and close the thread. Please let us know if there is anything else we can help you with.

    Best regards,
    Ismael

Viewing 30 posts - 8,011 through 8,040 (of 67,457 total)