Forum Replies Created

Viewing 30 posts - 13,891 through 13,920 (of 66,017 total)
  • Author
    Posts
  • in reply to: Future/coming events not working properly #1293853

    Hi,

    That is odd. It should be working properly now with the latest version. Would you mind providing the WP and FTP login details in the private field? We would like to check the issue further. The site is also asking for an htaccess authentication. You may need to include that info as well.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Issue with Slider #1293852

    Hi,

    Did you actually create those layers? You might want to hide them temporarily, or remove them completely if they are not necessary. You could also try to adjust the slide timing duration as explained above.

    Did you create the slider using a template? If you did, then it is possible that the template was created using an older version of the layer slider and it is possible that the layers are no longer compatible with the latest version of the plugin due to certain script or database entry changes.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Board Outlook – strong and links #1293850

    Hi Guenter!

    Thank you for noticing. We will forward your request to Guenter or Kriesi.

    Regards,
    Ismael

    Hi,

    We are not yet sure what is causing the issue, unfortunately. And the same issue does not occur on our installation. Did you modify any of the templates, or add any custom template modification in the functions.php file?

    Thank you for your patience.

    Best regards,
    Ismael

    Hi,

    Did you modify the blog posts template or shortcode? Looks like the content of the portfolio entries have been created using the advance layout builder, and the blog posts element have been configured to show these content as summary or excerpt. Content that were created using the advance layout builder should NOT be showing in the blog overview page by default, so this means that the blog template has been modified.

    Best regards,
    Ismael1

    in reply to: Anchor link to Tab Section problem #1293846

    Hey johnjosephjohansson,

    Thank you for the inquiry.

    The script is not yet working because it is currently listening for any click events done on the default menu items, but it looks like you are using the button element. To fix that, you have to look for this line..

    scrollToTab( ‘.menu-item a’, ‘click’ );
    

    .. and replace it with this.

    scrollToTab( ‘.avia-button’, ‘click’ );
    

    Make sure that the button link corresponds to the tab section title or ID. So with that in mind, the button link should be set to “#coffee–pastries” when you want that button to open the Coffee & Pastries tab. And if you are wondering about the double hyphen between coffee and pastries, that is because the theme automatically replaces spaces with hyphen and removes special characters, which in this case the character “&”.

    Best regards,
    Ismael

    Hey CharlieTh,

    Thank you for the inquiry.

    You have to replace the hook woocommerce_before_shop_loop_item_title with woocommerce_after_shop_loop_item_title to render the rating AFTER the product title. Right now, the star-rating container is being rendered BEFORE the title.

    Best regards,
    Ismael

    in reply to: Enfold child theme appearance not showing well #1293841

    Hi,

    As we mentioned above, the font Finger Paint is not selected for the heading elements. You have to set it again in the Enfold > General Styling > Fonts panel.

    Best regards,
    Ismael

    in reply to: transparant background caption accordion slider #1293840

    Hey JantienM,

    Thank you for the inquiry.

    But the alignment is not nice

    Which alignment? We may need to inspect the actual element in order to provide an appropriate solution. Please post a direct link to the page in the private field, and provide a screenshot if possible.

    Best regards,
    Ismael

    in reply to: Layer Slider loop function #1293838

    Hey Kraig,

    Thank you for the inquiry.

    Try to set the Cycles from 0 to 1. That should limit the slideshow to a single loop or prevent it from repeating.

    Best regards,
    Ismael

    in reply to: Lightbox not using srcset? #1293836

    Hi,

    Thank you for following up.

    The lightbox still works even when we are logged out, or when checking it on incognito mode. You might be looking on a cached version of the page with the scripts still minified or compressed. Please make sure to do a hard refresh or go on incognito mode, or better yet, try to check the page using another computer.

    Best regards,
    Ismael

    Hi,

    Thank you for the inquiry.

    The transform property is manually added to enable hardware acceleration, or to enable the use of the graphics card to help render the page or the slider for a smoother transition. But most devices now can handle site rendering without it, which is why you are not seeing any changes.

    Best regards,
    Ismael

    in reply to: ALB does not work with User Role Editor #1293830

    Hey digitalprint2222,

    Thank you for the inquiry.

    You can use this snippet in the functions.php file to unlock the advance layout builder for different user roles other than the administrator.

    function ava_enable_alb_for_editor() {
    	remove_filter('avf_allow_drag_drop', 'avia_disable_alb_drag_drop', 30, 1);
    	add_filter('avf_allow_drag_drop', 'avia_disable_alb_drag_drop_mod', 40, 1);
    }
    add_action('init', 'ava_enable_alb_for_editor');
    
    function avia_disable_alb_drag_drop_mod( $disable )
    {
        $user = wp_get_current_user();
        $allowed_roles = array('editor', 'administrator', 'author');
    	$check = array_intersect( $allowed_roles, $user->roles );
    
    	if( ! empty( $check ) )
    	{
    		$disable = avia_get_option('lock_alb', 'disabled') != "lock_alb" ? true : false;
    	}
    
    	return $disable;
    }
    

    You can add more user roles in this array.

    $allowed_roles = array('editor', 'administrator', 'author');
    

    Best regards,
    Ismael

    in reply to: product category schema #1293829

    Hi,

    Thank you for the inquiry.

    Please note that the old structured-data testing tool has been replaced with the rich-results test, and according to the new tool, the page should show rich results in the search results page if configured properly.

    // https://search.google.com/test/rich-results?utm_campaign=sdtt&utm_medium=message&id=UH7GsQ83JeFajnwDESkF7w

    Now regarding the error, you may have to disable the theme’s basic schema markup and install a plugin that creates a JSON-LD schema markup, which is much more extensive and accurate.

    // https://wordpress.org/plugins/wpsso-schema-json-ld/

    Best regards,
    Ismael

    in reply to: launch lightbox gallery from a button #1293828

    Hey backfolder,

    Thank you for the inquiry.

    You could try either one of the following solutions to open a custom gallery when clicking a link.

    // https://kriesi.at/support/topic/lightbox-show-everything-and-more/#post-1288918
    // https://kriesi.at/support/topic/link-to-album-lightbox/#post-1281752

    Best regards,
    Ismael

    Hi,

    No worries. The changes seems to be showing properly on our end, as shown in the screenshot below.

    // https://imgur.com/9ERTOCH

    Please make sure to purge the cache or do a hard refresh of the browser before checking the page.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Featured image size on single post #1293826

    Hi,

    Thank you for the inquiry.

    using the Simple Image Sizes plugin

    If the plugin is still enabled, you should be able to adjust the default size of the “entry_with_sidebar” thumbnail in the Settings > Media panel. Make sure that the adjusted dimension have the same aspect ratio as the uploaded image, and make sure to regenerate the images after the adjustment, or upload the image again.

    Best regards,
    Ismael

    in reply to: LayersliderWP Local Font #1293825

    Hi,

    Thank you for the update.

    Did you select the local fonts in the Enfold > General Styling > Fonts panel? If yes, then you can use the font-family property or the following code to apply the font to a specific element in the layer slider.

    font-family: 'Dela Gothic One', sans-serif;
    

    Just use the actual name of the font.

    // https://www.w3schools.com/css/css_font_google.asp

    Best regards,
    Ismael

    Hey WellStrategic,

    Thank you for the inquiry.

    You can disallow crawlers or bots from indexing pages with the avia-element-paging query by adding this rule in the robot.txt file.

    Disallow: /*?avia-element-paging=*
    

    To make sure that the rule is actually working, try to use this robot.txt tester from Google.

    // https://support.google.com/webmasters/answer/6062598

    Best regards,
    Ismael

    Hi,

    Thank you for the inquiry.

    Set the default logo to the default option, that is logo to the left and menu to the right, then use this css code in the Quick CSS field to move the logo in the center of the header container.

    .av-logo-container .logo {
        left: 50%;
        transform: translateX(-50%);
    }
    

    Best regards,
    Ismael

    in reply to: Errors in Template Google Search Console AMP #1293822

    Hey neotel2k,

    Thank you for the inquiry.

    The theme does not contain any AMP templates or markup, so it will never pass the AMP compatibility test if that is what you are expecting. You might be able to adjust the default markup using an AMP plugin, but most of the available plugins only work partially, or is not fully compatible with the theme. There is no plan on integrating AMP with the theme, yet.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    @guenni007: Yes, that should work. Make sure that social icons are actually enabled.

    @hacart: It is probably not working because the social icons are not enabled, or they do not actually exist in the page. You have to enable the social icons in the Enfold > Header > Extra Elements panel, look for the Header Social Icons settings. If you want to hide the icons on desktop view or on larger screens, try to create a css media query.

    Best regards,
    Ismael

    in reply to: Cookies Button Google Analytics #1293455

    Hi,

    Thank you for the update.

    We tried to login to the site using the default login and dashboard URL, but they redirect to a 404 page (not_found). Did you change the login URL? Please include the link in the private field.

    Best regards,
    Ismael

    in reply to: Hoe to make one single page narrower #1293453

    Hi,

    Thank you for the update.

    If you want to change the maximum width of a single page, try to use this css code.

    .page-id-24740 #narrow-page .container {
        max-width: 50%;
        width: 50%;
    }

    24740 in the selector above is the page ID of the lista-lavori-disponibili page.

    Best regards,
    Ismael

    in reply to: Plugin conflict removes kitchen sink from wysiwyg #1293452

    Hi,

    Thanks for coming back.

    You may need to ask the “Memberships” author if the plugin is using the mce_buttons or the mce_buttons_2 filters to adjust the items in the tinymce toolbar.

    Or try to temporarily edit the enfold/config-templatebuilder/avia-template-builder/php/template-builder.class.php, and comment out line 1610..

    new avia_tinyMCE_button( $tiny_lb );
    

    .. and line 1629.

    new avia_tinyMCE_button( $tiny );
    

    See if it changes anything or it makes the kitchen sink icon display back again. Please note that this will remove the insert shortcode button in the text editor.

    Best regards,
    Ismael

    in reply to: AMP for WP not working properly with Enfold #1293446

    Hi,

    @thinkjarvis: Thank you for your insights.


    @RubenHD
    : Sure thing. Please do not hesitate to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Hello, in the main.template-shop as a paragraph is possible?

    What do you mean by “main.template-shop as a paragraph”? Please explain it further or provide a screenshot.

    The shop title is actually there but it is hidden using css. To display it back use this css code.

    .template-shop .page-title {
        display: block;
        position: absolute;
        top: 50px;
    }
    
    header.woocommerce-products-header + .template-shop {
        margin-top: 50px;
    }
    

    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: Change headline space and color of blogpost headlines #1293443

    Hi,

    Thank you for the info.

    The post titles are center aligned when we checked (screenshot below). You may need to purge the cache before checking the page again, or try to view it on incognito mode.

    Screenshot: https://imgur.com/0cJd4Ht

    If you need to center align the widget title as well, please add this.

    .widget_recent_entries .widgettitle {
        text-align: center;
    }

    Best regards,
    Ismael

    in reply to: Crop thumbnails plugin for featured images #1293440

    Hi,

    Thank you for the update.

    It is possible that the plugin crops the original feature image and not the thumbnail. Is it possible to select the actual thumbnail when cropping using the plugin? Now, if you would like to adjust the default thumbnail sizes, try to use the following plugin.

    // https://wordpress.org/plugins/simple-image-sizes/

    It is an old plugin, but it works fine. Do not forget to regenerate the images, or make sure to upload the them again after the adjustments.

    Best regards,
    Ismael

    in reply to: Issue with Slider #1293435

    Hi,

    If yes…where do i find the settings for “length” ?

    You might be referring to the Slide Options > Slide Timing > Duration settings. But the next slide should only start after the previous one has finished transitioning or when after the specified slide duration as described below.

    Here you can set the time interval between slide changes, this slide will stay visible for the time specified here. This value is in millisecs, so the value 1000 means 1 second. Please don’t use 0 or very low values.

    Did you check the screenshot above, and do you see the same layers on your end?

    Best regards,
    Ismael

Viewing 30 posts - 13,891 through 13,920 (of 66,017 total)