Forum Replies Created

Viewing 30 posts - 14,011 through 14,040 (of 66,777 total)
  • Author
    Posts
  • Hi,

    We can reproduce the issue on our end, but we cannot figure out what is causing the menu to not open correctly on landscape mode. There seems to be a missing css rule but we cannot find it. It only happens when the screen width is between 1224px and 990px. Please try to play around with the css code, see if anything comes up.

    We will let you know when we found the issue.

    Best regards,
    Ismael

    Hey nestormakhno,

    Thank you for the inquiry.

    The Google ReCAPTCHA keys in the Enfold > Google Services panel are invalid, or they do not get passed the check. Did you add the site or the domain name as one of the HTTP referrers for the API key?

    Please check the documentation for more info about recaptcha.

    // https://kriesi.at/documentation/enfold/contact-form/#what-is-captcha

    Best regards,
    Ismael

    Hey psstudiosinc,

    Thank you for the inquiry.

    It’s possible that the pagination is not displaying because of these lines in the enfold/config-woocommerce/config.php file.

    line 312:

    remove_action( 'woocommerce_pagination', 'woocommerce_catalog_ordering', 20 );
    remove_action( 'woocommerce_pagination', 'woocommerce_pagination', 10 );
    

    line 330:

    remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 ); //remove rating
    remove_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 10 ); //remove woo pagination
    

    Try to remove the lines, remove the cache and see if the default pagination displays. This might duplicate the pagination on pages using the Product Grid element.

    Best regards,
    Ismael

    in reply to: search as part of fly-over menu #1302575

    Hey amyteslin,

    Thank you for the inquiry.

    This option is not available out of the box, but you may be able to utilize the same script that we use to create social icons inside the mobile menu. The script can be found here.

    // https://kriesi.at/support/topic/add-logo-to-slide-out-mobil-menu/#post-1301439

    Just replace this line with the actual markup of the search bar.

    $("
    <div class='av-mobile-logo'><img src='IMAGE URL HERE' /></div>
    ")
    

    And remove this part or change it accordingly.

    .addClass("mobile_social_bookmarks");
    

    Best regards,
    Ismael

    in reply to: Error in Sticky Header #1302549

    Hey chrischank,

    Thank you for the inquiry.

    The transparent and sticky header seems to be working as expected. We checked the site on Chrome. Would you mind providing a screenshot? You can use imgur or dropbox.

    Best regards,
    Ismael

    in reply to: portfolio grid image link doesn't work #1302547

    Hi,

    Thank you for the inquiry

    prevent the big red Link Icon on the portfolio grid?

    You might be referring to the image overlay. If you want to remove it, try to use this css code.

    .image-overlay {
        display: none !important;
    }
    

    Please note that this css code will disable all link overlays in the site. You may need to add a custom css class name or ID to the portfolio grid and adjust the selector above accordingly.

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

    Best regards,
    Ismael

    in reply to: Possible to nest columns? #1302546

    Hey Knutnik,

    Thank you for the inquiry.

    The columns break into full width when we checked the site on mobile view. Please check the screenshot below.

    Screenshot: https://imgur.com/MaxckPJ

    Would you mind providing a screenshot of the issue? If you want to adjust the break point, try to edit the first column in the row, go to the Row Settings > Row Screen Options toggle and set the Fullwidth Break Point to the second option.

    Best regards,
    Ismael

    in reply to: Change order of Elements in header #1302544

    Hey Bodyworkcenter,

    Thank you for the inquiry.

    You can try this script in the functions.php file to move the widget between the logo container and the alternate menu.

    
    // a custom script
    // move widget between logo and menu
    function ava_custom_script_mod_move_widget() {
        if ( wp_script_is( 'avia-default', 'registered' ) ) {
            wp_add_inline_script( 'avia-default', '
    		(function($) {
    			$(document).ready(function() {
    				$("#header .widget").insertAfter(".av-logo-container");
    			});
    		})(jQuery);
    	');
        }
     }
     add_action( 'wp_enqueue_scripts', 'ava_custom_script_mod_move_widget', 9999);
    

    Best regards,
    Ismael

    in reply to: custom post archive #1302542

    Hi,

    What is the actual name or slug of the taxonomy that you created? Have you tried editing the includes > loop-index.php file instead of the single.php file?

    You can also use this hook in the functions.php file to render the terms below the post content.

     add_action("ava_after_content", function() {
    	if(!is_single()) return;
    
            // Make sure that the taxonomy name is correct
    	$terms = get_the_terms( get_the_ID(), 'brands' );
    
    	if ( $terms && ! is_wp_error( $terms ) ) {
    
    		$brands = array();
    
    		foreach ( $terms as $term ) {
    			$brands[] = $term->name;
    		}
    
    		$brands_list = join( ", ", $brands );
    
    		echo '<p class="av-post-brands">';
    			printf( esc_html__( 'Brands: <span>%s</span>', 'aviaframework' ), esc_html( $brands_list ) );
    		echo '';
    	}
     }, 999);
    

    Best regards,
    Ismael

    in reply to: Images Cropped Badly in Horizontal Gallery On Mobile #1302537

    Hi,

    Thank you for the inquiry.

    You can add this css code to adjust the size of the images on mobile view.

    .responsive .av-horizontal-gallery-img {
        height: 100%;
        width: auto;
    }
    

    By default, the width the of the horizontal gallery images on mobile view is set to 100% and the height is set to auto to keep their aspect ratio.

    Best regards,
    Ismael

    in reply to: Problem with layer order #1302536

    Hey Knutnik,

    Thank you for the inquiry.

    Looks like you have already managed to adjust the stack order or the z-index property of the columns below the hero image. They now overlay the hero slider or image.

    Best regards,
    Ismael

    in reply to: Padding not displayed #1302535

    Hey Knutnik,

    Thank you for the inquiry.

    Try to use this css code to add a padding to the text block with the teasertext class name.

    #teaserbox .teasertext {
        padding: 3% 4% 7% 3%;
    }

    The second css rule above should have worked.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    The lightbox is not working correctly because the href attribute of the gallery items are missing or it is blank. Did you add a custom script in the functions.php file?

    To fix it temporarily, try to use this script in the functions.php file.

    
    // a custom script
    // fill in gallery thumbs' href attribute
    function ava_custom_script_mod() {
        if ( wp_script_is( 'avia-default', 'registered' ) ) {
            wp_add_inline_script( 'avia-default', '
    		(function($) { 
    			$(document).ready(function() {
    				$(".avia-gallery-thumb a").each(function() {
    					var image = $(this).data("prev-img");
    					$(this).attr("href", image.replace("-495x400.jpg", ".jpg")); 
    				});
    			});
    		})(jQuery);
    	');
        }
     }
     add_action( 'wp_enqueue_scripts', 'ava_custom_script_mod', 9999);
    

    Best regards,
    Ismael

    in reply to: History Slider Not Working Correctly In Chrome #1302532

    Hi,

    No problem. Unfortunately, we are not yet sure why the milestone animation is not working properly. Please keep the css code for now.

    Best regards,
    Ismael

    in reply to: Sidebar social icons not at the bottom #1302530

    Hey orchestramegastore,

    Thank you for the inquiry.

    That is the default position of the social icons inside the sidebar. If you want to adjust it, we can use this css code.

    .html_header_sidebar #header .container .inner-container {
        height: 100vh;
    }
    
    .html_header_sidebar .av-sidebar-social-container {
        position: absolute;
        overflow: hidden;
        bottom: 0;
        top: auto;
    }

    To lessen the gap between the logo and the main menu, use this css code.

    .html_header_sidebar .main_menu {
        top: -25px;
    }

    For the content layout, try to look for the Content Alignment settings inside the Enfold > General Layout > Layout panel.

    Best regards,
    Ismael

    Hi,

    We ran a test again on the page speed insights tool and found out that the stylesheets are still combined using the SG Optimizer’s option. We recommend disabling that option temporarily because it is blocking rendering by about 900ms, longer on the previous test. It also combines a lot of unused css code.

    Screenshot: https://imgur.com/HrNlD6B

    We also tested the site on gtmetrix and it returns a much more favorable result with LCP for only about 2.5s.

    // https://gtmetrix.com/reports/www.bookconfidential.blog/VbUuZrnH/

    Have you tried using the Autoptimize plugin? And as suggested above, you can enable the Load only used elements option to improve the page speed. This should also improve LCP by significant amount.

    To further optimize the site, please check the following articles.

    // https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow
    // https://gtmetrix.com/wordpress-optimization-guide.html

    Best regards,
    Ismael

    Hey neotel2k,

    Sorry for the delay.

    Have you tried using Yoast to set a canonical URL for duplicated content or pages? For more info about the plugin feature, please check the following articles.

    // https://yoast.com/features/canonical-url-tags/
    // https://yoast.com/rel-canonical/

    WordPress also set a canonical URL automatically but only for paginated pages.

    Best regards,
    Ismael

    in reply to: Enfold theme & Memberpress #1302394

    Hi,

    it does not play any role

    What do you mean? The screenshot above shows that the content of the second page after the more tag is hidden. We tried to check the page again today but there is a database error. Please let us know when the site is up again.

    Have you tried asking the plugin author about the issue? They should be able provide additional help regarding the problem.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Glad to to know that the gap has been repaired. Regarding the lightbox or popup, try to add this script in the functions.php file to re-initialized lightbox for the burger menu item CV.

    
    
    // a custom script
    // re-initialized lightbox
    function ava_custom_script_mod() {
        if ( wp_script_is( 'avia-default', 'registered' ) ) {
            wp_add_inline_script( 'avia-default', '
    		(function($) { 
    			$(document).ready(function() {
    				$("$top li.menu-item-462 a").magnificPopup({
    					type:"inline",
    					midClick: true 
    				  }); 
    			});
    		})(jQuery);
    	');
        }
     }
     add_action( 'wp_enqueue_scripts', 'ava_custom_script_mod', 9999);
    

    Best regards,
    Ismael

    in reply to: Excerpt in Masonry shows shortcode #1302372

    Hey zwachm,

    Thank you for the inquiry.

    Looks like the content of the Advance Layout Builder (ALB) is displaying as excerpt. Try to use this filter in the functions.php file to prevent the excerpt from displaying when the post is using the ALB.

    add_filter('avf_masonry_loop_entry_content', function($content, $entry) {
          $is_alb =  Avia_Builder()->get_alb_builder_status( $entry->ID ) == 'active';
          if($is_alb) $content = "";
          return $content;
    }, 10, 2);
    

    Best regards,
    Ismael

    Hi,

    Thank you for the inquiry

    We moved the code on pastebin.com. We are having difficulty reading the file because the symbols were converted. Would you mind posting another pastebin of the modified file where the characters are not converted?

    Best regards,
    Ismael

    in reply to: Problem enfold template single product. #1302366

    Hi,

    Thank you for the info.

    The variation image switch should work properly when the Enfold > Shop Options > Product gallery is set to the default Woocommerce 3.0 gallery. The default theme gallery is currently used in the site, which is why the switch is not working.

    Best regards,
    Ismael

    in reply to: Blog Excerpt Characters #1302365

    Hi,

    Thank you for the update.

    Which blog style or layout are you currently using? The filter above should work for the grid layout. If you are using a different layout, try this filter instead.

    function mytheme_custom_excerpt_length( $length ) {
        return 20;
    }
    add_filter( 'excerpt_length', 'mytheme_custom_excerpt_length', 999 )
    

    You can also try this plugin.

    // https://wordpress.org/plugins/advanced-excerpt/

    Best regards,
    Ismael

    Hey Hafeez Ullah,

    Thank you for the inquiry.

    Those container are not generated by the theme, or do not exist in any of the theme template files. Did you create a custom template file? We can remove the container with a simple script if you like.

    Something like this.

    
    var summary = document.querySelector(".page-summary");
    summary.remove();
    

    You can use the wp_footer hook to append it to the page or to the document, or use the wp_add_inline_script function.

    // https://developer.wordpress.org/reference/functions/wp_add_inline_script/

    Best regards,
    Ismael

    Hi,

    Glad it is fixed. If you have more inquiries, please feel free to open another thread. We will close this one for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: social profiles in fullwidth sub menu #1302359

    Hey schweg33,

    Thank you for the inquiry.

    Are the icons actual images? How did you add them? Looks like the icons are only visible on the first slide. If they are actual images, then you have to use the filter property to adjust their color.

    .saturate { filter: saturate(3); }
    .grayscale { filter: grayscale(100%); }
    .contrast { filter: contrast(160%); }
    .brightness { filter: brightness(0.25); }
    .blur { filter: blur(3px); }
    .invert { filter: invert(100%); }
    .sepia { filter: sepia(100%); }
    .huerotate { filter: hue-rotate(180deg); }
    .rss.opacity { filter: opacity(50%); }
    

    You can use font icons instead of actual images.

    // https://fontawesome.com/
    // https://fontello.com/

    Best regards,
    Ismael

    in reply to: How to remove product description from Product List #1302323

    Hi,

    Thank you for the update.

    It might be coming from a plugin or from a custom script. Did you check the products? Try to look for those containers in the text editor, and try to disable the plugins temporarily and see if it changes anything in the catalogue element.

    Best regards,
    Ismael

    in reply to: Portefolio items are with odd behaviour #1302316

    Hey!

    Don’t you agree with that?

    We are actually offering work arounds, or at least providing suggestions to fix the issue temporarily, while we are trying to figure out what is actually causing the issue. I thought that was how the previous responses are coming.

    The issue seems to only occur when the posts are created with the advance layout builder, so manually adding an excerpt and showing that text instead of the actual builder content should fix the issue temporarily.

    We will forward the issue to our channel.

    Cheers!
    Ismael

    in reply to: Woocommerce: Double cart content and totals #1302309

    Hi,

    Thank you for the info.

    We tried to login using the account above but it seems to be invalid. Please check the info carefully or provide another login account. For the meantime, please try to disable the plugins temporarily, see if it changes anything in the cart or checkout view.

    Best regards,
    Ismael

    in reply to: Enfold & CLS issue on main Div #1302302

    Hi,

    Thank you for the update.

    Based on our initial test, as you can see in the screenshot above, the site scored poorly on mobile, so we just thought that you should focus on optimizing the site first instead of focusing on the CLS score. We did not mean that you should ignore CLS completely. We did not check or test it on gtmetrix though. And yes, unfortunately, we are not yet sure what is causing the layout shifts in the front page aside from the image animations on every section. We will keep the thread open.

    Best regards,
    Ismael

Viewing 30 posts - 14,011 through 14,040 (of 66,777 total)