Forum Replies Created

Viewing 30 posts - 13,531 through 13,560 (of 67,079 total)
  • Author
    Posts
  • in reply to: centered Logo and transparent Background. #1314246

    Hi,

    Thank you for the update.

    You can use the following css code to make the header fully transparent even on scroll. The css code will also remove the bottom border.

    .header_color .header_bg, .header_color .main_menu ul ul, .header_color .main_menu .menu ul li a, .header_color .pointer_arrow_wrap .pointer_arrow, .header_color .avia_mega_div, .header_color .av-subnav-menu > li ul, .header_color .av-subnav-menu a {
        background-color: transparent;
    }
    
    #header_main {
        border: 0;
    }

    Best regards,
    Ismael

    in reply to: Partner/Logo Element – too big on mobile #1314245

    Hey ChichesterDesign,

    Thank you for the inquiry.

    You can use the following css code to adjust the width of the slider entries on smaller screens.

    @media only screen and (max-width: 479px) {
        .responsive #top #wrap_all .avia-content-slider-odd .slide-entry {
            width: 50% !important;
            clear: none !important;
        }
    }

    If you want to apply the changes on tablet views, just increase the max-width value from 479px to 767px.

    Best regards,
    Ismael

    in reply to: Blog Post Pagination and Image Display #1314243

    Hi,

    Thank you for the inquiry.

    Did you apply the ID “home-blog” to the color section containing the blog? What the script does is append the anchor #home-blog to the pagination links, so whenever you click a pagination, it will go straight to the destination anchor or the color section with the ID “home-blog”.

    Best regards,
    Ismael

    in reply to: Category Names in Sortable Portfolio Grid #1314241

    Hey manurimini,

    Thank you for the inquiry.

    This is possible but you will have to modify the enfold/config-templatebuilder/avia-shortcodes/portfolio/portfolio.php directly. Around line 1219, you could add a switch statement, check for the $category->cat_name and replace it with something else.

    $output .= 	"<span class='text-sep " . $category->category_nicename . "_sort_sep'>/</span>";
    					$output .= 		'<a href="#" data-filter="' . $category->category_nicename . '_sort" class="' . $category->category_nicename . '_sort_button" ><span class="inner_sort_button">';
    					$output .= 			"<span>" . esc_html( trim( $category->cat_name ) ) . "</span>";
    					$output .= 			"<small class='av-cat-count'> " . $cat_count[ $category->term_id ] . " </small></span>";
    					$output .= 		'</a>';
    

    // https://www.w3schools.com/php/php_switch.asp

    This is where the category name is rendered.

    $output .= "<span>" . esc_html( trim( $category->cat_name ) ) . "</span>";
    

    It is also possible with Javascript.

    // https://www.w3schools.com/jsref/jsref_replace.asp

    Best regards,
    Ismael

    Hey 4dino,

    Thank you for the inquiry.

    We could prevent the lightbox script from grouping all lightbox links inside the #main container but you have to modify all buttons and add a custom css class to them. In the buttons’ Advanced > Developer Settings > Custom CSS Class, place the name “non-grouped-lightbox”. Then add this code or script in the functions.php file.

    function ava_open_image_in_popup_group() {
    	?>
    	<script type="text/javascript">
    	(function($){
    		$(document).ready( function(){
    			$('.non-grouped-lightbox a').magnificPopup({
    			  type: 'image',
    			  mainClass: 'avia-popup mfp-zoom-in mfp-image-loaded',
    			  closeBtnInside: true,
    			  closeOnContentClick:false,
    			  midClick: true,
    			  gallery: { enabled:false }
    			});
    		});	
    	})(jQuery);
    	</script>
    	<?php
    }
    add_action('wp_footer', 'ava_open_image_in_popup_group', 9999);
    

    All items with the class name “non-grouped-lightbox” will not be included in the gallery.

    Best regards,
    Ismael

    in reply to: Unique title and description on pagination pages! #1314078

    Hey Konstantin,

    Thank you for the inquiry.

    Did you set the SEO title field of the blog page again? Please post the login details in the private field so that we could check it.

    // https://kriesi.at/support/topic/unique-title-and-description-on-pagination-pages/#post-1308722

    Best regards,
    Ismael

    in reply to: Image should stick on the very left side of the browser #1314077

    Hey Monika,

    Thank you for the inquiry.

    Which particular image are you trying to keep sticking to the left? Have you tried using the Grid Row element? You can insert an image within the grid row cells and adjust its position accordingly.

    Best regards,
    Ismael

    Hey wzshop,

    Thank you for the inquiry.

    This is not possible without significant modification in the slider script. The script is currently set to display a single active slide. Showing more than one item may require combining of testimonial items in a single slide entry or adjusting the slider script. You may need to hire a freelance developer to modify the testimonial slider.

    Best regards,
    Ismael

    Hey jifei,

    Thank you for the inquiry.

    If you are using the Blog Posts element, then we could use the “avia_blog_post_query” to adjust the posts query in a specific page. You may need to use the post__not_in parameter to exclude specific posts.

    // https://developer.wordpress.org/reference/classes/wp_query/#post-page-parameters

    Related threads:

    // https://kriesi.at/support/topic/hide-categories-from-you-might-also-like-section-on-blog-posts/#post-1192667
    // https://kriesi.at/support/topic/do-not-allow-duplicate-posts-on-the-entire-page-not-working/#post-1291806
    // https://kriesi.at/support/topic/hide-current-blog-post-from-a-random-blog-post-slider-grid-element/

    Best regards,
    Ismael

    in reply to: SearchWP integrate with Enfold #1313898

    Hey Telmore,

    Thank you for the inquiry.

    I have checked the boxes “Remove minimum word length” and “Highlight terms in results”,

    These options will only work in the default search form, but not in the AJAX search. Is that what you are expecting?

    I changed the value, but still doesn’t seem to work. See screenshot: https://test.telman.dk/wp-content/uploads/2021/07/screenshot.png

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after editing the file. And please make sure to purge the cache before testing the search again.

    Best regards,
    Ismael

    in reply to: masonry grid sort problem #1313897

    Hey Stanko,

    Thank you for the inquiry.

    Which categories are you trying to select? We may need to access the dashboard and edit the page in order to check the issue properly. Please post the login details in the private field.

    Best regards,
    Ismael

    in reply to: Sort Blog Post Element by "ACF" Advanced Custom Field #1313896

    Hey spooniverse,

    Thank you for the inquiry.

    We are not sure if this is going to work with ACF but you can sort entries based on their custom fields using the meta_key or meta_query parameter.

    // https://make.wordpress.org/core/2015/03/30/query-improvements-in-wp-4-2-orderby-and-meta_query/

    You will have to add the parameter and create logic for it within the avia_custom_query_extension function.

    Best regards,
    Ismael

    in reply to: Partner/Logo Element in 2 columns on mobile #1313810

    Hey jaroljmek,

    Thank you for the inquiry.

    It should be possible but you have to make sure that the number of items in each row are even. If the items are not even and we set them to display in two columns on mobile view, there will be a gap or a white space after the very last item in each row.

    Use this css code to set the width of the slide entries on smaller screens.

    @media only screen and (max-width: 479px) {
    .responsive #top #wrap_all .avia-content-slider-odd .slide-entry {
        margin-left: 0;
        width: 50% !important;
        float: left;
        clear: none !important;
    }
    }
    

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

    Best regards,
    Ismael

    in reply to: Smaller version of header for one page #1313807

    Hey KatrienW,

    Thank you for the inquiry.

    Try to disable the shrinking header option completely, then use this filter in the functions.php file to enable it back on the contact page.

    
    function avf_header_setting_filter_mod($header_settings) {
    	if ( is_page(21) ) {
    		$header_settings['header_sticky'] = 'disabled';
    		$header_settings['header_shrinking'] = "disabled";
                    $header_settings['header_size'] = "slim";
    	}
    
    	return $header_settings;
    }
    add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 50, 1);
    

    Let us know how it goes.

    Best regards,
    Ismael

    in reply to: .svg background , image , slider #1313806

    Hey beatazalewa,

    Thank you for the inquiry.

    You can only use raster images (png, jpg, gif) as background of column and slider elements. Unfortunately, you cannot use svg images. If you want to display an svg image, you may need to use a code or a text block element.

    Best regards,
    Ismael

    in reply to: Contact Form 7 #1313802

    Hey Dom,

    Thank you for the inquiry.

    What did change after the update? Please provide a link to the page containing the contact form and a screenshot of the issue. You can use imgur, dropbox or any third party image hosting for the screenshot.

    Best regards,
    Ismael

    in reply to: Next porfolio item link – wrong sorting #1313801

    Hey Michael,

    Thank you for the inquiry.

    The post navigation displays or returns the adjacent posts, based on the date that they were published. It is not based on the order of the posts in the portfolio grid. We could set it so that it displays the posts based on their title or sort them alphabetically, but we cannot guarantee that it will return posts based on where they are positioned in the grid.

    You can add this filter in the functions.php file.

    function avf_get_prev_post_sort_mod( $sort ) {
    	return "ORDER BY p.post_title DESC LIMIT 1";
    }
    add_filter( 'get_previous_post_sort', 'avf_get_prev_post_sort_mod' );
    
    function avf_get_next_post_sort_mod( $sort ) {
    	return "ORDER BY p.post_title ASC LIMIT 1";
    }
    add_filter( 'get_next_post_sort', 'avf_get_next_post_sort_mod' );
    

    Unfortunately, we cannot set the navigation to display posts based on grid order or sorting.

    Best regards,
    Ismael

    in reply to: Advanced Custom Fields Shortcode in excerpt blog post #1313796

    Hey soltner,

    Thank you for the inquiry.

    Have you tried manually adding it in the posts’ Excerpt box? If you cannot find the excerpt box, make sure to enable it from the Screen Options, or from the block editor’s Options > Preferences > Panels > Document Settings.

    Best regards,
    Ismael

    Hi,

    Thank you for the inquiry.

    To enable the arrows, you have to set the tab section’s Layout > Tab Buttons Out Of Screen Behaviour settings to the first option. Please note that the arrows will only display on mobile view or on smaller screens. You may need to upgrade the theme to the latest version (4.8.5) first.

    Best regards,
    Ismael

    in reply to: scr-set Attribut for full width Slider #1313789

    Hi,

    Thank you for the update.

    Would you mind posting the login details in the private field? We would like to check the plugins and the theme settings. Please make sure to upgrade the theme to the latest version, 4.8.5.

    Best regards,
    Ismael

    in reply to: post slider show full content #1313783

    Hi,

    Yes, the shortcode in the content slider is quite limited and adding shortcodes manually may not be what your client wanted. We could use the avf_post_slider_entry_excerpt filter to return the actual content of the post entry instead of the excerpt.

    function avf_post_slider_entry_excerpt_custom($excerpt, $prepare_excerpt, $permalink, $entry ) {
    	$excerpt = $entry->post_content;
    	return $excerpt;
    }
    add_filter('avf_post_slider_entry_excerpt', 'avf_post_slider_entry_excerpt_custom', 10, 4);
    

    This should display the full content of the posts in the post slider element, but it may require some css or style adjustments.

    Best regards,
    Ismael

    in reply to: Painfully slow blog #1313778

    Hi,

    We have found suppressed errors in the site coming from the wp-admin/css/colors/coffee/vl2eb.php:1 file. This file is not included in WordPress by default, so it must have been added by a plugin. Please locate the file and disable it temporarily. You could also download the latest version of WordPress and override your installation.

    Deprecated	Directive 'allow_url_include' is deprecated	1	
    wp-admin/css/colors/coffee/vl2eb.php:1
    Core
    Notice (Suppressed)	Undefined index: nsetts	1	
    wp-admin/css/colors/coffee/vl2eb.php:1
    

    We also disabled the Performance > File Compressions settings and it seems to have helped a bit. You should try to optimize the database to improve the site speed further.

    // https://kinsta.com/blog/wordpress-database-plugin/
    // https://www.wpbeginner.com/plugins/optimize-your-wordpress-database-with-one-click/

    Best regards,
    Ismael

    Hi,

    You can try this script in the functions.php file to remove the loading attribute from the product image.

    
    function ava_custom_script_remove_lazy(){
      ?>
      <script>
            (function($) {
                $(document).ready(function($) {
      		$('.size-shop_single').removeAttr('loading');
      	    });
            })(jQuery);
      </script>
      <?php
    }
    add_action('wp_footer', 'ava_custom_script_remove_lazy');
    

    Best regards,
    Ismael

    in reply to: FAQ Accordion keeps randomly jumping on page #1313767

    Hi,

    You may need to do the changes that we suggested above to prevent the accordeon element from scrolling.

    // https://kriesi.at/support/topic/faq-accordion-keeps-randomly-jumping-on-page/#post-1302789

    If you need more assistance, please feel free to open another thread.

    Best regards,
    Ismael

    in reply to: ENFOLD 4.8.3 + WP5.8: Import theme settings not working #1313766

    Hi,

    Thank you for the info.

    We exported the theme settings from on our own installation (see private field) and successfully uploaded it to the staging site, so this seems to be an issue with the exported theme settings file.

    Best regards,
    Ismael

    in reply to: missing translation #1313762

    Hi,

    Alright. Glad to know that it is working. Please feel free to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    You might be looking on a cached version of the page. Please add the css code again and make sure to purge the cache or check the site on incognito mode. Adjust the top margin as necessary.

    Best regards,
    Ismael

    in reply to: Youtube video is unavailable #1313759

    Hi,


    @madmanbean
    : Yes, the changes have been included in the latest version of the theme.


    @manchust
    : Thank you for the confirmation.

    Best regards,
    Ismael

    Hi,

    Looks like all of the plugins have been disabled or removed. Did you remove them all, or did you rename the plugins folder? Can we access the file server? Please include the FTP details in the private field.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Column box-shadow styling #1313756

    Hi,

    Alright. Please do not hesitate to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

Viewing 30 posts - 13,531 through 13,560 (of 67,079 total)