Forum Replies Created

Viewing 30 posts - 6,931 through 6,960 (of 67,463 total)
  • Author
    Posts
  • in reply to: Grid Layout for Author Archive #1423644

    Hey integritive,

    Thank you for the inquiry.

    The author template has its own layout and loop for posts, which can’t be modified through a filter and needs to be edited directly. If you want to display the posts in a grid layout, you can copy the content of the archives.php file, starting from around line 54.

    if( $avia_config['blog_style'] == 'blog-grid' )
    {
     ... more code here
    }
    

    Best regards,
    Ismael

    in reply to: New Theme Update Just Broke My Site #1423643

    Hey ramonolivencia,

    Thank you for the inquiry.

    1-2.) The product looks fine on our end and it looks different compare to the other one. Did you figure out the issue?

    3.) You can update the theme automatically from the Enfold > Theme Updates panel or in the dashboard. Please check the documentation below for more info.

    // https://kriesi.at/documentation/enfold/theme-update/#update-vianbsptheme-options

    Best regards,
    Ismael

    in reply to: Headlines too big on mobile Android smartphone #1423642

    Hey Monika,

    Thank you for the inquiry.

    What is the actual model of the device where you have taken the screenshot? You should be able adjust the size of the heading elements with custom css.

    @media only screen and (max-width: 489px) {
    
      /* Add your Mobile Styles here */
      section.av_textblock_section.av-lhystxxf-ab9a26b95349e3f8f25451c3d741af57 h3.p1 .s1 {
        font-size: 1em;
        word-break: break-word;
      }
    }

    Best regards,
    Ismael

    in reply to: Layerslider7 Not hiding on mobile #1423641

    Hi,

    Great! Glad to know that you managed to solved the issue. Please feel free to open another thread should you have further questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: blog sidebar #1423640

    Hey gfriend70,

    Thank you for the inquiry.

    You can add this code in the functions.php file to change the sidebar of the blog page.

    add_filter('avf_custom_sidebar','avf_custom_sidebar_mod');
    function avf_custom_sidebar_mod($sidebar) {
    	if ( is_archive() || is_blog() ) {
    		$sidebar = "Sidebar Pages";
    	}
    	return $sidebar; 
    }
    

    Best regards,
    Ismael

    in reply to: Cannot update Enfold #1423639

    Hi,

    Thank you for the inquiry.

    This might be related to a new rollback feature that was released very recently.

    // https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/

    Try to fix the issue by creating the /wp-content/upgrade-temp-backup folder manually, then set the permission to 775. Let us know if this helps.

    Best regards,
    Ismael

    in reply to: Find out used demo of a webpage #1423638

    Hey jimmywagner97,

    Thank you for the inquiry.

    This information is not available by default, but you can check the demo in the Enfold > Demo Import panel and look for the Delete Downloaded Files button. If this button is present below the demo image, there’s a good chance that this specific demo was imported.

    Best regards,
    Ismael

    in reply to: Text in blog posts #1423637

    Hi,

    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

    Hi,

    No problem! If you have more questions, please don’t hesitate to open a different thread.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Can I set a second transparant header look? #1423635

    Hi,

    The only thing I’m missing now is the blackening of the search icon hover state.

    The initial color of the search icon is black and turns white on hover. Would you mind providing a screenshot of the search icon? If you’d like to change the hover style of the search icon, try this code.

    #top #menu-item-search:hover>a {
        background: transparent;
        color: inherit;
    }
    

    I’m pleased that the white baby seal (not exactly a genius) could be of help! ;D

    Best regards,
    Ismael

    in reply to: Slider next to logo #1423634

    Hey Support,

    Thank you for the inquiry.

    This option is not available by default but you might be able to accomplish the same thing by inserting a widget area in the header. You can place one of the slider shortcodes or embed a script in the widget.

    // https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area

    You can also modify the header.php file or the includes > helper-main-menu.php file directly.

    Best regards,
    Ismael

    in reply to: Portfolio Grid not center aligned? #1423633

    Hi,

    No problem! Glad we could be of help. Let us know if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Prevent SPAM on Email Buttons #1423632

    Hi,

    You can enable the antispambot option using avf_obfuscate_email_link filter. This feature is disabled by default. To adjust the value of the hex_encoding parameter, you can use avf_obfuscate_email_link_hex_encoding, as detailed in the antispambot documentation.

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

    Best regards,
    Ismael

    in reply to: One news page set with Layout Editor #1423631

    Hey Sebastian,

    Thank you for the inquiry.

    Did you include a full-width element in the post, like a Color Section or Fullwidth Slider? Please keep in mind that full-width elements can displace the sidebar and push it below the content. One solution is to use Columns to separate the content from the sidebar. You can then display the sidebar using a Widget Area element.

    Best regards,
    Ismael

    in reply to: default google font list #1423568

    Hi,

    I see in your code that you declare 2 times the avf_google_font_mod function.

    Sorry about that and thank you for noticing. You can remove the duplicate function as @Guenni007 pointed out above.

    Best regards,
    Ismael

    in reply to: File URL Appearing When Hovering Over Photos #1423567

    Hi,

    Glad to know that the modification resolved the issue for you. Please feel free to open another if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    Hey ftt123,

    Thank you for the inquiry.

    This feature is not available yet, but it will be included in the next patch. If you require it immediately, please follow the instructions in the following thread.

    // https://kriesi.at/support/topic/new-icon-twitter-to-x/#post-1422330

    Best regards,
    Ismael

    Hi,

    Thank you for following up.

    Please remove the previous css code, then add the following modification instead.

    #top .av_toggle_section {
        clear:both
    }
    

    If the issue persists, try to set the Content > Behavior settings to Multiple toggles open allowed.

    Best regards,
    Ismael

    in reply to: Wrong order of upcoming events #1423563

    Hi,

    Apologies for the delay. We’ve recreated Carnaval de Romont B, and it appears to be correctly positioned in the right place. Could you please remove the older event and replace it with the one in the private field?

    Best regards,
    Ismael

    in reply to: Import #1423562

    Hi,

    Thanks for the update.

    Did you install the Layer Slider as a plugin? You may need to set the Enfold > Layout Builder > Integrated (Bundled) LayerSlider Plugin settings to the second option to disable the default layer slider.

    Best regards,
    Ismael

    in reply to: Burger menu error on Mobiles #1423559

    Hi,

    Thank you for the info.

    We were able to reproduce the issue on Firefox, but it got fixed once we disabled WP Rocket’s file optimization options. You may want to consider installing a different compression plugin or using the Enfold > Performance > File Compression settings instead.

    Best regards,
    Ismael

    in reply to: Calendar background #1423558

    Hi,

    Did you purge the cache and perform a hard refresh? Please try to re-toggle the Enfold > Performance > File Compression settings or disable it completely.

    Best regards,
    Ismael

    in reply to: Interested in buying you windaily.com domain #1423509

    Hey!

    Thank you for the inquiry.

    We don’t own the domain “windaily”, but according to the link below it is registered on eNom, LLC, a domain name reseller platform.

    // https://www.whois.com/whois/windaily.com

    Cheers!
    Ismael

    in reply to: default google font list #1423508

    Hey edolmen,

    Thank you for the inquiry.

    You can add this code in the functions.php file to register the Assistant font and include it in the font list.

    add_filter( 'avf_google_heading_font', 'avf_google_font_mod');
    add_filter( 'avf_available_google_fonts', 'avf_google_font_mod');
    function avf_google_font_mod($fonts)
    {
        $fonts['Assistant'] = 'Assistant';
        return $fonts;
    }

    Best regards,
    Ismael

    in reply to: Bug in Chrome for Accordion & Toggles #1423507

    Hi,

    Thank you for the update.

    The css code should eliminate the gap or whitespace that the toggler leaves when closed. We’re still investigating the issue, but we will include a fix in the next patch once we identify the problem.

    Best regards,
    Ismael

    in reply to: Burger menu error on Mobiles #1423506

    Hi,

    Thanks for the update.

    The mobile menu seems to be working correctly now. Did you modify anything in the site? Please check the screenshot below.

    Screenshot: https://1drv.ms/i/s!AjjTfXSRbKTvgrZz0frWLJ4QDZgelg?e=GMrvAZ

    Best regards,
    Ismael

    Hi,

    And then how what would the script look like? (If its possible)

    You can prepend the ID to the sort buttons class name or selector. If the custom ID of the Porfolio Grid element is “custom-portfolio for example, the selectors will look like the following:

    $('#custom-portfolio .accessories_sort_button').insertAfter('#custom-portfolio .pots-vases_sort_sep');
     $('#custom-portfolio .pots-vases_sort_button').insertBefore('#custom-portfolio .large-planters_sort_sep');
    

    Of course, this can be optimized further but it’s such a little script, so it should be enough.

    Best regards,
    Ismael

    in reply to: Videos don’t start playing #1423504

    Hi,

    Great! Glad to know that this has been resolved. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Text in blog posts #1423503

    Hi,

    Thanks for the screenshot.

    You have to check the Textauszug box in the Screen Options (refer to your screenshot. Once the Textauszug checkbox is ticked or enabled, find the Excerpt or Textauszug field below the text editor. You can remove the summary or excerpt from that field, or edit it if necessary.

    Best regards,
    Ismael

    in reply to: Portfolio-item excerpt on hover #1423502

    Hey frb1,

    Thank you for the inquiry.

    Have you tried using the Masonry element instead? In the Content > Captions > Element Title and Excerpt display settings, you can set the title and excerpt to display on hover. Unfortunately, this option is not available on the Portfolio Grid element.

    Best regards,
    Ismael

Viewing 30 posts - 6,931 through 6,960 (of 67,463 total)