Forum Replies Created

Viewing 30 posts - 13,711 through 13,740 (of 67,386 total)
  • Author
    Posts
  • in reply to: Accordion on single product code issue #1316558

    Hey Hejanni,

    Thank you for the inquiry.

    Where can we see the issue? Please post the site URL in the private field so that we could inspect the elements. Did you set the posts to display all content instead of the excerpt?

    Best regards,
    Ismael

    in reply to: Main Menu background styling #1316555

    Hi,

    Thank you for the screenshot.

    You can use this css code to decrease the height of the main menu container.

    #top #header_main > .container .main_menu .av-main-nav > li > a {
    	height: 60px;
    	line-height: 60px;
    }
    

    And add this one to apply a background and border radius to the menu container.

    #top #header_main > .container .main_menu .av-main-nav-wrap {
    	background-color: #959d84;
    	border-radius: 8px;
    }
    

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code.

    Best regards,
    Ismael

    in reply to: Yoast SEO Title Tag – Open Back #1316554

    Hi,

    Thank you for the info.

    The following warning is shown in the SEO analysis tool. You may need to shorten the title length a bit.

    SEO title width: The SEO title is wider than the viewable limit. Try to make it shorter.

    Best regards,
    Ismael

    in reply to: How to make 2 images side by side fullwidth #1316553

    Hi,

    The image (1000x400px) in the left side is set as the background image of the first cell, and the second cell to the right contains a special heading, separator/whitespace, a text block and and icon element.

    If the debug mode is enabled for the builder, you can actually paste the following shortcodes and update the page to get the same layout. You will just have to update the images and other content.

    
    [av_layout_row border='' min_height_percent='' min_height='400px' color='main_color' mobile='av-flex-cells' id='' av_element_hidden_in_editor='0' av_uid='av-2kgi44']
    [av_cell_one_half vertical_align='middle' padding='130px' padding_sync='true' background_color='' src='http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/business-support-1.jpg' attachment='582' attachment_size='full' background_attachment='scroll' background_position='top center' background_repeat='stretch' mobile_display='' av_uid='av-2gn4wc']
    
    [/av_cell_one_half][av_cell_one_half vertical_align='middle' padding='30px' padding_sync='true' background_color='#f8f8f8' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' mobile_display='' av_uid='av-28u4dw']
    
    [av_heading tag='h2' padding='0' heading='Our Support Team' color='' style='blockquote modern-quote modern-centered' custom_font='' size='30' subheading_active='subheading_below' subheading_size='15' custom_class='' admin_preview_bg='' av_uid='av-24odyc']
    Customer Satisfaction
    [/av_heading]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='15px' custom_margin_bottom='15px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='' av_uid='av-1vleck']
    
    [av_textblock size='' font_color='' color='' admin_preview_bg='' av_uid='av-1o6scs']
    <p style="text-align: center;">Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.</p>
    
    [/av_textblock]
    
    [av_font_icon icon='ue8f1' font='entypo-fontello' style='' caption='' link='manually,http://twitter.com' linktarget='_blank' size='20px' position='center' color='' admin_preview_bg='' av_uid='av-1n2g70'][/av_font_icon]
    
    [/av_cell_one_half]
    [/av_layout_row]
    

    Here is how you can set the ALB to debug mode.

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

    Best regards,
    Ismael

    in reply to: centered Logo and transparent Background. #1316552

    Hi,

    Thank you for the update.

    We managed to login to the site using the account above, but it does not have administration rights, so we cannot access the theme options. Please adjust the user role and make sure that the Appearance > Editor panel is accessible.

    Best regards,
    Ismael

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

    Hi,

    Sorry about that. We forgot to remove variable dump. It should be located in the avf_masonry_entry_content filter. Just remove any line of code that resembles the following.

    echo '<pre>' . var_export(, true) . '</pre>';
    

    Best regards,
    Ismael

    in reply to: cookie consent lightbox not working #1316550

    Hi,

    The header.php and the footer.php file have been modified in the child theme directory, but the current files are outdated. We disabled those files temporarily to fix the issue with the lightbox, so any modifications in those files will be temporarily lost or removed. You have to update the files using the latest version.

    Thank you for your patience.

    Best regards,
    Ismael

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

    Hi,

    Thank you for the info.

    It might not be working because of the load function, which is no longer valid. Please try to replace the code with the following snippet.

    
    function ava_custom_script_pagination_anchor(){
    ?>
    <script>
    	(function($) {
    		$(document).ready(function(){
    			$("nav.pagination a").each(function(){
    				var theLink = $(this).attr("href");
    				$(this).attr("href", theLink + "#home-blog");
    			});
    		});
    	})(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'ava_custom_script_pagination_anchor', 9999);
    

    Best regards,
    Ismael

    Hi,

    We do not really understand how the plugin creates the PDF file during the init hook or how it retrieves the content during that time. The global $post variable will still be null by then or will not be available, so you cannot use default function like get_the_content to retrieve the content of a post.

    The Advance Layout Builder saves the shortcodes or content in the post_content, same as when you edit a page or post in the default editor, so the plugin should be able to use the get_the_content function to retrieve the shortcodes. It also saves the shortcodes in the _aviaLayoutBuilderCleanData custom field or meta info — the get_post_meta function might be useful as well. They are then processed in the themes\enfold\template-builder.php template file for rendering.

    Best regards,
    Ismael

    in reply to: critical error on this website wiht PORTFOLIO #1316546

    Hi,

    Thank you for the update.

    There should be a functions.php file in the parent theme directory. Please check it in the Appearance > Editor panel. It should be at the very top of the list. You can also use any of the following plugins to add custom PHP snippets.

    // https://wordpress.org/plugins/insert-php-code-snippet/
    // https://wordpress.org/plugins/my-custom-functions/
    // https://wordpress.org/plugins/code-snippets/

    Best regards,
    Ismael

    in reply to: No pagination on tag pages #1316544

    Hi,

    Alright. Let us know in another thread if you need anything else. We will close this one for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Conflict issues with 3rd party plugin's calendar #1316543

    Hi,

    The warning message does not display because the page is created using the Advance Layout Builder, so it uses a different template without the woocommerce-notices-wrapper container. You may need to manually add the container using a text or code block.

    
    <div class="woocommerce-notices-wrapper"></div>
    

    Regarding the styling, you can ask the plugin author to adjust the priority of their scripts and stylesheets so that the resources load after the theme files.

    Best regards,
    Ismael

    in reply to: Image resizes automatically on portfolio grid #1316540

    Hi,

    No problem. Glad we could help. Please feel free to open another should you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: I want to solve the problem. #1316539

    Hi,

    Thank you for the info.

    The login URL redirects to a 404 error page. Did you change the login URL? Please include it in the private field so that we could check the settings.

    Best regards,
    Ismael

    in reply to: Videos are not loaded anymore #1316536

    Hi,


    @HuxburyQuinn
    : Thank you for the info. Please try to open a new thread and post the site details in the private field so that we could check the issue further. For the meantime, try to disable the file compression settings and use another plugin such as Autoptimize or BWP. We will close this thread for now.

    Best regards,
    Ismael

    in reply to: Main Menu background styling #1316393

    Hi,

    Thank you for the update.

    Would you mind providing a screenshot of the layout that you are after? Please use image hosting like imgur or dropbox for the screenshot.

    Best regards,
    Ismael

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

    Hi,

    Unfortunately, we are not yet sure why that particular theme settings file is not working. It works fine when we tried to upload our own, which means that there is something wrong with the file. You might have to update the theme first to the latest version before importing the theme settings again.

    Best regards,
    Ismael

    in reply to: Enfold and polyang #1316391

    Hey Konstantin,

    Thank you for the inquiry.

    Did you change the default login URL? We cannot access the dashboard using the default login or admin URLs. The following documentation might help.

    // https://polylang.pro/doc/define-your-home-page-as-a-static-page/
    // https://polylang.wordpress.com/documentation/setting-up-a-wordpress-multilingual-site-with-polylang/settings/

    Best regards,
    Ismael

    in reply to: about your theme #1316387

    Hey brayan,

    Thank you for your interest in the theme.

    The search and booking feature is from a third party plugin or script. It is not available in the theme out of the box, but Woocommerce and other plugins with booking functionality should work properly with the theme.

    Best regards,
    Ismael

    in reply to: I need twice the amount of letters from the text excerpt #1316386

    Hey LukasEEE,

    Thank you for the inquiry.

    You can use this filter in the functions.php file to adjust the length of the masonry excerpt.

    
    function avia_change_masonry_excerpt_length($length)
    {
       $length = 200;
       return $length;
    }
    add_filter('avf_masonry_excerpt_length','avia_change_masonry_excerpt_length', 10, 1);
    

    Default length value is 60.

    Best regards,
    Ismael

    in reply to: New Logo Not Appearing Publically *Please Help** #1316384

    Hey ABTRSthemes,

    Thank you for the inquiry.

    You might have to toggle or temporarily disable the Enfold > Performance > File Compression settings in order to see the changes. Make sure to purge the cache before viewing the site again.

    Best regards,
    Ismael

    in reply to: Blog Posts and Header Problem from 4.8.4 onwards #1316383

    Hey AktivApo,

    Thank you for the inquiry.

    It seems to be displaying the custom style of the columns instead of the post excerpt. Where can we the issue? Please post the site details in the private field including an admin account. We would like to check the page and the theme options.

    Best regards,
    Ismael

    in reply to: Problem with share box after template update #1316382

    Hi,

    You are very welcome! Please feel free to open another thread if you require more assistance. We will close this one for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Font is different from one box to the other #1316380

    Hi,

    No problem. Glad we could be of help. Please let us know if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Dual pricing table (monthly/yearly pricing) #1316379

    Hi,

    Thank you for the clarification.

    That option is not available, unfortunately. You might have to use a plugin or create a custom toggle that hides/shows a different set of table when clicked.

    Example:

    // https://codepen.io/kijanmaharjan/pen/dMmdej
    // https://fatcatapps.com/knowledge-base/pricing-table-toggle/

    Best regards,
    Ismael

    in reply to: Advanced Layout Editor #1316378

    Hi,

    Thank you for the inquiry.

    The button displays back when we disable the mtn_setup_theme function in the child theme’s functions.php file. The function limits the ALE to the mtn-faq post type. You may need to use the avf_alb_supported_post_types filter instead.

    Examples:

    // https://kriesi.at/support/topic/custom-post-type-not-displaying-correctly/#post-1299723
    // https://kriesi.at/support/topic/pods-enfold-advanced-layout-editor/#post-1281976

    Best regards,
    Ismael

    in reply to: Border and background on gallery #1316375

    Hi,

    Great! Glad that you managed to come up with a working solution. Let us know in another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Masonry shortcode issue back again! #1316373

    Hi,

    Good to know. Please feel free to open another thread if you encounter any issues, or if you require a bit of assistance with the theme. We will close this for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: CSS in widget #1316371

    Hi,

    Thank you for the info.

    The look of the button looks different because the lightbox container is rendered outside the main container, so the default css selectors and styles that the theme is using is not applying to the contact form. You will have to adjust the style of the element (buttons, fields etc) manually.

    Best regards,
    Ismael

    in reply to: Video in Color Section- Add a preview picture? #1316369

    Hi,

    We are not really sure if it is possible to set thumbnails for Vimeo videos and show it before the player starts, but we have found the following articles, which might help.

    // https://vimeo.com/blog/post/video-thumbnail-ultimate-guide/
    // https://vimeo.com/blog/post/turn-any-video-frame-into-a-thumbnail/

    Best regards,
    Ismael

Viewing 30 posts - 13,711 through 13,740 (of 67,386 total)