Forum Replies Created

Viewing 30 posts - 4,951 through 4,980 (of 67,477 total)
  • Author
    Posts
  • in reply to: responsive mode non working on mobile #1448760

    Hi,

    Thank you for the inquiry.

    The wp-login or wp-admin page is not loading when we checked. Did you change the login URL? The Responsive Site option should be enabled by default, but you can toggle it in the Enfold > General Layout > Dimensions tab.

    Best regards,
    Ismael

    in reply to: Remove header from iframe #1448759

    Hi,

    Great! Glad to know that you managed to figure this out. 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: Woocommerce Shipping Methods not showing up in cart #1448758

    Hey jnightingale,

    Thank you for the inquiry.

    You need to add Shipping Methods to your Shipping Zones. Currently, there is only one option available. Please check the link below for more info:

    // https://woocommerce.com/document/setting-up-shipping-zones/#adding-shipping-methods-to-zones

    Best regards,
    Ismael

    in reply to: Video player – different views #1448592

    Hi,

    1.) In the screenshot, the link is set to “Open in the same window”. Try setting it to “Open in a new window”.

    2.) Use a link shortener such as bit.ly or tinyurl.com, and then use the resulting URL in the Video element instead of the default video URL. For example, we shortened the YouTube video URL using tinyurl.com:

    https://tinyurl.com/ymws9n3b
    

    Use this shortened URL to replace the current YouTube URL.

    Best regards,
    Ismael

    in reply to: Enfold and plugin Open User Map performance problems #1448591

    Hey annevoelkel,

    Thank you for the inquiry.

    The map on your site navigates a bit slower compared to other, but it still renders quickly on our end. Unfortunately, we are not sure which part of the map is causing this issue. Did you use a custom skin or theme on the other map? Please contact the plugin developers for additional assistance.

    Best regards,
    Ismael

    in reply to: Making the breadcrumb bar sticky #1448590

    Hey Stefan,

    Thank you for the inquiry.

    You can try this css code:

    .responsive #main .container_wrap:first-child {
        position: fixed;
        top: 88px;
        z-index: 999;
        width: 100%;
    }

    It might require a few adjustments on mobile view.

    Best regards,
    Ismael

    in reply to: Change font on home page buttons #1448589

    Hey amyncuih,

    Thank you for the inquiry.

    You can define a different font for the Button element in the Enfold > Advanced Styling panel. The Button element can be found under the Misc section. Please note that this will affect all buttons across the site. Unfortunately, you cannot assign a different font to a specific block in the builder.

    Best regards,
    Ismael

    in reply to: Mobile View: Top bar on menu needs to be transparent #1448588

    Hi,

    Thank you for the update.

    1. The Cart and Search buttons a little larger

    You can add this css code to make the cart and search icons larger:

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      #menu-item-shop .cart_dropdown_link {
        font-size: 24px;
      }
    
      #top #menu-item-search a:before {
        font-size: 30px !important;
      }
    }

    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: logo mobile too wide #1448587

    Hey schweg33,

    Thank you for the inquiry.

    Have you tried adding another slider specifically created for mobile view? Try creating a taller slider and aligning the button at the bottom instead of the middle. You should be able to toggle the visibility of the sliders on different screen sizes in the settings panel.

    Best regards,
    Ismael

    in reply to: Post list other way around #1448586

    Hey rixi,

    Thank you for the inquiry.

    You can try this filter in the functions.php file:

    add_filter('avf_magazine_entries_query', 'avf_magazine_entries_custom_query');
    function avf_magazine_entries_custom_query ( $query ) {
        $query['orderby'] = 'date';
        $query['order'] = 'DESC';
        return $query;
    }

    If the result is not what you’ve expected, try to replace “DESC” with “ASC”.

    Best regards,
    Ismael

    Hey Shane,

    Thank you for the inquiry.

    What errors do you encounter after updating PHP to 8.1? Please provide a screenshot using platforms like Savvyify, Imgur, or Dropbox.

    Best regards,
    Ismael

    Hey cheffe,

    Thank you for the inquiry.

    You can use this css code to adjust the size and aspect ratio of the lightbox container.

    .page-id-2447 .mfp-wrap {
        height: 90% !important;
        top: 20px !important;
    }
    
    .page-id-2447 .mfp-iframe-holder .mfp-content {
        width: 100%;
        max-width: 692px;
    }
    
    .page-id-2447 .mfp-iframe-scaler {
        width: 100%;
        height: 0;
        overflow: hidden;
        padding-top: 100%;
    }

    You can further adjust the values as necessary.

    Best regards,
    Ismael

    in reply to: Video player – different views #1448522

    Hi,

    Thank you for the update.

    Have you tried setting it to open in a new tab? You can also hide the YouTube video URL using a link shortener such as bit.ly. This should prevent the theme from initializing the link as a lightbox.

    Best regards,
    Ismael

    in reply to: Can’t import demo file #1448521

    Hi,

    Glad to know that initial issues have been fixed. 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.

    Thank you for your understanding.

    Best regards,
    Ismael

    in reply to: Mobile View: Top bar on menu needs to be transparent #1448520

    Hey bemodesign,

    Thank you for the inquiry.

    You can add this css code to set the header to transparent on mobile view:

    @media only screen and (max-width: 989px) {
      #top #wrap_all .av_header_transparency {
        background: transparent !important;
        position: absolute !important;
      }
    }

    Best regards,
    Ismael

    in reply to: Display author contact information on author page #1448518

    Hey Boyan,

    Thank you for the inquiry.

    You can add more info about the author by editing the includes > loop-about-author.php file. To display the website URL for example, you can add this code after line 86:

    $website = get_the_author_meta('user_url', $author_id);
    
        if ($website) {
            echo '<div class="author_website_url"><a href="' . esc_url($website) . '">' . esc_html($website) . '</a></div>';
        } 
    

    Best regards,
    Ismael

    in reply to: Change display order blog posts grid #1448517

    Hi,

    Thank you for the update.

    By default, the posts should be sorted by date. If you want to adjust the order for the grid layout, try to replace avia_blog_post_query with the avia_post_slide_query filter.

    add_filter('avia_post_slide_query', 'avia_post_slide_query_mod');
    
    function avia_post_slide_query_mod($query)
    {
        $query['orderby'] = 'date';
        $query['order'] = 'DESC';
    
        return $query;
    }
    

    Best regards,
    Ismael

    in reply to: Select A Predefined Color Scheme is missing #1448516

    Hey dianeparmas,

    Thank you for the inquiry.

    What is the current version of the theme? Please make sure to update it to version 5.7.1. Let us know if the update helps.

    Best regards,
    Ismael

    Hey rruss61,

    Thank you for the inquiry.

    You may need to update the theme manually via S/FTP. Please check the link below for more info:

    // https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    Best regards,
    Ismael

    in reply to: lightbox before link #1448514

    Hi,

    UPDATE: The Advanced > Link Settings > Afbeeldingslink is not set accordingly. We set it to the second option as mentioned above.

    Best regards,
    Ismael

    in reply to: lightbox before link #1448513

    Hi,

    Did you select the option shown in @Guenni007’s screenshot above?

    Best regards,
    Ismael

    in reply to: Image Caption / Overlay as Button #1448454

    Hi,

    Great! Good to know. Going forward, you can add a Custom CSS Class Name to the element and use it to adjust the style of the element specifically.

    // https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support

    Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    You can add this css code to adjust the size of the logo on scroll:

    #header.header-scrolled .avia-standard-logo img {
        padding-top: 10px;
        height: 32px;
    }

    Best regards,
    Ismael

    in reply to: Image Caption / Overlay as Button #1448446

    Hi,

    Thank you for the update.

    Try to replace the selector “.home” with “.page-id-362”.

    .page-id-362 .av-image-caption-overlay-center p {
        border-radius: 3px;
        padding: 10px;
        font-size: 12px;
        text-decoration: none;
        display: inline-block;
        border-bottom-style: solid;
        border-bottom-width: 1px;
        margin: 3px 0;
        line-height: 1.2em;
        position: relative;
        font-weight: normal;
        text-align: center;
        max-width: 100%;
        color: var(--enfold-main-color-button-font);
        background: var(--enfold-main-color-button-border);
        transition: all 0.4s ease-in-out;
        box-shadow: none;
        border: 0;
        padding: 25px 50px 23px;
        font-size: 28px;
        min-width: 200px;
    }
    

    Please make sure to purge the cache before checking the page.

    Best regards,
    Ismael

    in reply to: lightbox before link #1448445

    Hi,

    Thank you for the update.

    Have you tried adjusting the Gallery element’s Advanced > Link Settings > Image Link settings to the second option (Use custom link) as @Guennie007 suggested above? We tried to edit the page, but the site is loading quite slowly on our end. Please review the settings and check the custom links of the images in the Media > Library panel.

    Best regards,
    Ismael

    in reply to: Missing Rumble Icon – Header #1448408

    Hey So Evolve,

    Thank you for the inquiry.

    The screenshot above is private. Please make it public or upload the screenshot to platforms like Savvyify or Imgur. We may need to inspect the site to properly check the issue. Please provide the site URL in the private field.

    Best regards,
    Ismael

    in reply to: Different header on mobile #1448400

    Hi,

    Thank you for the update.

    but I don’t know how to add two widgets in the header.

    You can simply add another widget in the header widget area. Please provide the login details in the private field so that we can check the dashboard and implement the changes.

    Best regards,
    Ismael

    in reply to: Change display order blog posts grid #1448396

    Hey finchkelsey,

    Thank you for the inquiry.

    I have changed the publish dates and the order they are listed in wp-admin.

    That is one way to do it. Another option is to use a plugin. Please check the link below:

    // https://wordpress.org/plugins/post-types-order/

    However, please note that the plugin could conflict with the breadcrumb and post navigation.

    Best regards,
    Ismael

    in reply to: Spacing of Text and Links in Socket #1448394

    Hi,

    Thank you for the update.

    Please include this css code to align the copyright info with the menu:

    #socket .copyright {
        float: left;
        display: flex;
    }
    
    #socket .copyright .center-text {
        margin: 0;
        margin-left: 30px;
    }

    Best regards,
    Ismael

    Hi,

    Thank you for the screenshots.

    Where can we see this section? Please provide the site URL in the private field. Have you tried adjusting the Alternate Content Background Color value in the Enfold > General Styling > Alternate Content tab?

    Best regards,
    Ismael

Viewing 30 posts - 4,951 through 4,980 (of 67,477 total)