Forum Replies Created

Viewing 30 posts - 19,861 through 19,890 (of 66,645 total)
  • Author
    Posts
  • in reply to: Category Grid #1152016

    Hi,

    Thank you for the update.

    You should probably specify the max-height attribute as well to constrain the images to a certain height. And again, the best solution is to upload images with the same size.

    Best regards,
    Ismael

    in reply to: Remove completely "Permanent link" titlle #1152015

    Hi,

    Thank you for the update.

    You may need to override the default avia_default_title_filter function, and remove the markup directly from within it. Please add this snippet in the functions.php file.

    	function avia_default_title_filter($current_post)
    	{
    		if(!empty($current_post['title']))
    		{
    			$default_heading = is_singular() ? 'h1' : 'h2';
    			$args = array(
    						'heading'		=> $default_heading,
    						'extra_class'	=> ''
    					);
    
    			/**
    			 * @since 4.5.5
    			 * @return array
    			 */
    			$args = apply_filters( 'avf_customize_heading_settings', $args, 'avia_default_title_filter', array( $current_post ) );
    
    			$heading = ! empty( $args['heading'] ) ? $args['heading'] : $default_heading;
    			$css = ! empty( $args['extra_class'] ) ? $args['extra_class'] : '';
    
    			$output  = "";
    			//$output .= "<{$heading} class='post-title entry-title ". avia_offset_class('meta', false). "'>";
    			$output .= "<{$heading} class='post-title entry-title {$css}' ".avia_markup_helper(array('context' => 'entry_title','echo'=>false)).">";
    			$output .= "	<a href='".get_permalink()."' rel='bookmark'>".$current_post['title'];
    			$output .= "			<span class='post-format-icon minor-meta'></span>";
    			$output .= "	</a>";
    			$output .= "</{$heading}>";
    
    			$current_post['title'] = $output;
    		}
    
    		return $current_post;
    	}
    

    Best regards,
    Ismael

    in reply to: Lightbox pop up funktioniert nicht #1152006

    Hey Grobi,

    Thank you for the inquiry.

    You have to apply a unique ID to the color section and use it as the value of the href attribute in the link or button. You will then use the script above to initialize the lightbox for the popup link. A more detailed explanation on how to enable an inline popup can be found in its documentation. Please check the link below.

    // https://dimsemenov.com/plugins/magnific-popup/documentation.html#inline-type

    Best regards,
    Ismael

    in reply to: Same Line-height of Pictures in different columns #1152002

    Hey Videmi,

    Thank you for the inquiry.

    Yes, this is possible. First, you have to add a custom css class name to the Image elements so that you can style them differently. If you haven’t enabled the custom css class field yet, go to the Enfold > Layout Builder panel and toggle the “Custom CSS classes input field” settings. You can then use the following css code in the Quick CSS field or the child theme’s style.css file.

    .custom-css-class .avia-image-overlay-wrap a.avia_image {
        min-height: 140px;
    }
    
    .custom-css-class .avia-image-overlay-wrap a.avia_image img {
        object-fit: cover;
    }

    Make sure to replace the “custom-css-class” name with the actual class name of the Image elements. You will probably have to apply same steps for the special heading elements.

    Best regards,
    Ismael

    in reply to: Horizontal Gallery loop #1151997

    Hey bobfurgo,

    Thank you for the inquiry.

    Try to modify the config-templatebuilder > aviashortcodes > gallery_horizontal > gallery_horizontal.js file, look for the prev and next on click event listeners around line 134 and replace it with the following snippet.

    prev.on('click', function(e)
    			{
    				if(currentIndex === false) currentIndex = 1;
    				var index = currentIndex - 1;
    				if(index < 0) index = slide_content.length - 1;
    
    				change_active(index);
    			});
    
    			next.on('click', function(e)
    			{
    				if(currentIndex === false) currentIndex = -1;
    				var index = currentIndex + 1;
    				if(index > slide_content.length - 1) index = slide_content.length - 1;
    				if(currentIndex + 1 == slide_content.length) index = 0;
    
    				change_active(index);
    			});
    

    Best regards,
    Ismael

    Hi,

    You should probably toggle the Performance > File Compression settings to regenerate the scripts and stylesheets. Have you tried that? And make sure that the cache is removed.

    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: Main Menu Flush Right Under Logo #1151993

    Hi,

    Thank you for the update.

    The menu is now positioned right under the logo. We checked it using Firefox on Windows 10. Can you give us a screenshot of site from your end? You can use imgur or dropbox for the screenshot.

    Best regards,
    Ismael

    in reply to: Create a Blog for the first time! Some questions… #1151992

    Hi,

    Thank you for the update.

    There is no option for that in the theme by default, but there are available plugins that you can use as an alternative.

    // https://wordpress.org/plugins/simple-yearly-archive/
    // https://wordpress.org/plugins/anual-archive/

    We actually encourage users to open a new thread for additional inquiries and ask them to avoid extending existing ones when the original issue have already been solved. Please kindly open a new thread for the additional inquiry so that we can close the thread.

    Thank you for understanding.

    Best regards,
    Ismael

    in reply to: Dopo aggiornamento #1151991

    Hey Manuel,

    Thank you for the inquiry.

    Did you change anything in the page prior to the issue? The “t-arredo-cucina-classica” page looks fine on our end — all elements are present in the frontend. Can you give us a screenshot of the issue? You can imgur or dropbox for the screen capture, then share the link here.

    Best regards,
    Ismael

    in reply to: Advanced Layer Slider Not visible on Mobile #1151988

    Hi,


    @LearnSAP
    @splashmediagroup: Please open your own threads/tickets including the login details in the private field so that we can check the issue. And make sure that the theme is upgraded to version 4.6.3.1. We’ll close this thread for now.

    Best regards,
    Ismael

    Hey Flow9999,

    Thank you for the inquiry.

    The sub menus are currently set to display on load, so we can’t really see the issue. Please set it to the appropriate settings so that we can check the problem on IE. Or post the login details in the private field so that we can toggle the settings when necessary.

    Best regards,
    Ismael

    in reply to: Missing orders in Woocommerce backend #1151986

    Hey fmottaz,

    Thank you for the update.

    It seems to be an issue within the “avia_woocommerce_cart_pos” filter — specifically the get_cart function inside of it. Can you reproduce the issue when the filter is disabled?

    remove_filter('avf_header_classes', 'avia_woocommerce_cart_pos' , 10 , 3);
    

    Best regards,
    Ismael

    in reply to: Can't add an anchor text to Main Menu #1151984

    Hey vntr,

    Thank you for the inquiry.

    Are you trying to add a custom link in your menu? Have you tried adjusting the Settings > Permalink option from default to “Post name”? You should be able to set an anchor link after changing the option.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Could you provide an actual link to the page with the elements? We would like to check the issue.

    Best regards,
    Ismael

    in reply to: Button formatting not displaying properly with PDF link #1151981

    Hey CampCarysbrook,

    Thank you for the inquiry.

    We can’t see the page because it is password protected and the login account above doesn’t have an admin role. Please set the account user role to admin so that we can check the page.

    Best regards,
    Ismael

    in reply to: Menu side bar menu image vs background #1151831

    Hi,

    Thank you for the update.

    Do you have an existing installation of the site? We might be able to provide css code to adjust the style of the sidebar navigation, but we need to inspect the site and see the current setup. Please post the URL of the site. Would you like the image to be seen under the transparent half part of the sidebar navigation?

    Best regards,
    Ismael

    Hi,

    Sorry for the delay. You should use the slug instead of the custom post type (CPT) name, so this would be the final code.

    /**
     * Advanced Layout Builder Custom Post Types
     */
    add_filter('avf_alb_supported_post_types', function ($array) {
        $array[] = 'salsa-lessons';
        return $array;
    }, 10, 1);

    And if you want to enable the builder for another CPT, copy the part where we add the CPT slug, paste it underneath it, then once again use the slug of the other post type.

    Best regards,
    Ismael

    in reply to: Animations on mobile devices #1151816

    Hey Sompote,

    Thank you for the inquiry.

    You can enable the animation on mobile devices, but it will slow down the site and degrade its performance on mobile devices. If you want to continue, modify the js > shortcodes.js file, look for avia_waypoints function around line 675 and the following line on 681.

    isMobile = $.avia_utilities.isMobile;
    

    Replace it with:

    isMobile = false;
    

    Please don’t forget to toggle the Performance > File Compression settings after adding the code.

    Best regards,
    Ismael

    Hey tekniskakari,

    Thank you for the update.

    We don’t really see the unintended margin around or in the load more button. Could you provide a screenshot of the issue? You can upload the screen capture to imgur or dropbox, then post the link here.

    Best regards,
    Ismael

    in reply to: Questions about the new Privacy and Cookies settings #1151800

    Hi,

    Thank you for the inquiry.

    Where can we see the issue? Services such as the Google map and fonts should work immediately on page load when the cookies are set to be silently accepted on load, even when the user hasn’t consented to the cookies yet. Did you install the most recent version of the theme v4.6.3.1? If the site is already using the latest version of the theme, please try to toggle the Performance > File Compression settings to regenerate the scripts and stylesheets.

    Best regards,
    Ismael

    in reply to: Issue with Google Analytics tracking after 4.6 #1151796

    Hey shelteredinsound,

    Thank you for the inquiry.

    The analytics script is loaded even when the user haven’t explicitly consented to the cookies yet, so it is working properly. Please check the screenshot below.

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

    As you may have noticed, we haven’t consented to the cookies yet, but the analytics.js file is still loaded in the site along with the facebook pixel code.

    Best regards,
    Ismael

    in reply to: Custom Privacy Cookie switch not working #1151786

    Hey uhub_io,

    Sorry for the delay. Where can we see the issue? The custom cookie option works well on our own installation as seen in the screenshot below. The cookie aviaPrivacyCustomCookiePHPSESSIDDisabled is being set properly when we toggle the respective button.

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

    Please provide the link to the site so that we can see what’s wrong.

    Best regards,
    Ismael

    in reply to: Contact Form not notifying me of submissions #1151782

    Hi,

    Thank you for the update.

    Where are you testing the form? We submitted the form using Firefox on Windows 10, but we were not able to reproduce the issue. It didn’t scroll to the bottom. It actually slided up along with the “message-sent” container.

    Best regards,
    Ismael

    in reply to: PHP Fatal error in class-avia-relevanssi.php #1151779

    Hi,

    Thank you for the inquiry.

    This issue has been fixed in the latest version of the theme, v4.6.3.1. Please try to upgrade the theme to the most recent version, and toggle the Performance > File Compression settings afterwards. Or edit the related files as instructed in this thread.

    // https://kriesi.at/support/topic/ajax-search-dont-find-keywords-after-relevansi-update/#post-1146993

    It is the same exact solution added in the latest version.

    Best regards,
    Ismael

    in reply to: "Serve scaled images" bug #1151777

    Hi,

    Sorry about that. We can’t really tell you anything aside from the fact that the feature is currently under development. Unfortunately, we don’t know the exact date when it will be available, or if it’s going to be added at all. Having an srcset attribute or multiple thumbnails to select from is really advantageous, but it doesn’t mean that you will no longer be able to optimize the images without the attribute as seen in one of the articles above. The demo site achieved perfect score in Google PageSpeed Insights without the feature or attribute.

    What you can do for now is to concentrate on other areas of the site, and optimize those instead. Start by reading the articles above. You can also look for plugins that enable responsive images as @Victoria suggested above if you really need to enable the srcset attribute.

    Thank you for understanding.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Are you expecting the post navigation to display only the items that are visible in the portfolio overview page when they are filtered using the sort buttons? You seem to be expecting the navigation to correlate with how the items are ordered in the portfolio overview page. That is not how it works, unfortunately. The post navigation has nothing to do with the category sort — they are not connected at all. If you want the post navigation to contain the posts in the order they are sorted in the portfolio overview page when “ALLE WERKE” is active, then you can either remove the filter that we previously suggested above or make sure that the items are in the same category, and leave the filter.

    Unfortunately, we can’t do anything to change that limitation without major modification in the theme. You can either hire a freelance developer to change how the post navigation works and make it respond to the category sort button in the portfolio overview page, or follow the suggestions above and accept the limitations.

    Best regards,
    Ismael

    in reply to: URGENT – New Cookie Verdict- technical solutions needed #1151767

    Hi,

    The short instructions above should enable the cookie consent message in the site and set the cookies to be silently accepted by default. However, if you want to configure more options and learn about the privacy settings and shortcodes, please visit the documentation.

    // https://kriesi.at/documentation/enfold/privacy-cookies/

    Best regards,
    Ismael

    Hey!

    So why dont you tell me what you have done so that i can repeat it??

    We have been telling you what to do repeatedly but you seem to be not interested on applying it. Please review our replies here.

    // https://kriesi.at/support/topic/40-pages-crashed-compatibility-issues-with-cpt-plugin-alb/#post-1150395
    // https://kriesi.at/support/topic/40-pages-crashed-compatibility-issues-with-cpt-plugin-alb/#post-1149214

    For the remaining posts with the issue, you need to modify the second “Preise” tab, remove the opening tab shortcode and leave the table shortcode.

    ==================

    The initial problem was that the price tab was above and the other tabs have been below l

    Fixing the shortcode as we suggested above should also repair that issue. Please check the test page where we removed the opening tab shortcode inside the tab. (see private field)

    Regards,
    Ismael

    in reply to: Category Grid #1151760

    Hi,

    Thank you for the update.

    Where did you add the css code? The Quick CSS field is blank when we check. Please try to set the object-fit property from “cover” to “contain”. However, it would still be better if the images are of the same size.

    Best regards,
    Ismael

    in reply to: wrong tooltip position in firefox #1151753

    Hi,

    We tried to adjust the position of the hotspot but the result is still the same. It works properly when the tooltip position is set to “Right Below” — but not when it’s above or centered. We are not really sure why the initial calculation is off.

    Best regards,
    Ismael

Viewing 30 posts - 19,861 through 19,890 (of 66,645 total)