Forum Replies Created

Viewing 30 posts - 23,161 through 23,190 (of 67,145 total)
  • Author
    Posts
  • in reply to: Mobile Menu to right side #1095542

    Hey webguy007,

    Thank you for using Enfold.

    Did you add the following css code?

    .responsive #top #header #header_main .inner-container .main_menu {
        order: 3;
        flex-basis: auto;
        align-items: center;
        align-self: center;
        height: inherit !important;
    }
    

    That code alters the default position of the mobile menu and social icons. If you want to keep that code, try to add the following.

    @media only screen and (max-width: 767px) {
    .responsive #top #header #header_main .inner-container .main_menu {
        position: absolute;
        top: 45px;
    }
    
    .responsive #top #header #header_main .inner-container .logo img, .responsive #top #header #header_main .inner-container .logo, .responsive #top #header #header_main .inner-container .logo a {
        min-width: 0 !important;
        height: 60px !important;
    }
    
    .responsive #top #header #header_main .inner-container .logo {
        top: 15px;
    }
    }

    It should look like this afterwards.

    Screenshot: https://imgur.com/a/dExGfbR

    Best regards,
    Ismael

    in reply to: Mobile Photo Centered and text flow corrected #1095541

    Hey webguy007,

    Thanks for the update.

    Make sure that the text clear both sides or prevent other elements from floating beside it. Something like this should work.

    p.nofloat { clear: both; }
    

    You have to insert that inside a css media query.

    Best regards,
    Ismael

    in reply to: Mobile Submenus arrow and darker #1095540

    Hey webguy007,

    Thank you for using Enfold.

    Use this css code to adjust the color of the submenu indicator and increase its size.

    #top #wrap_all #av-burger-menu-ul li a .av-submenu-indicator {
        color: #000000;
        font-size: 20px;
    }

    And add this one to change the symbol.

    .html_av-submenu-hidden .av-submenu-indicator:before {
      content: "\E816";
      font-family: 'entypo-fontello';
    }

    Best regards,
    Ismael

    in reply to: Enfold theme dashboard not correct #1095538

    Hey alex2545,

    Thank you for using Enfold.

    The Layout box is available in the page editor when we checked. Make sure that the metabox is enabled in the Screen Options.

    Best regards,
    Ismael

    in reply to: Parallax scroll mobile view #1095537

    Hi,

    Thank you for using Enfold.

    As @michaelH suggested, it’s possible to toggle the elements’ device visibility using the their Screen Options. This feature is available in the later versions of the theme, so you have to do the upgrade. The idea is to insert another element of the same type in addition to the existing one, toggle its Screen Options so it only displays on the specified devices and upload an image that is actually intended for mobile view.

    @michaelH: Thanks for helping!

    Best regards,
    Ismael

    in reply to: Fehler:: Enfold 4.5.6 und FacetWP 3.3.6 #1095536

    Hey Qeibu,

    Thanks for the update.

    We are not that familiar with the plugin, so additional help from the plugin authors will help. Do you see any errors in the backend when the plugin is activated? Please post the login details in the private field so that we can inspect the dashboard.

    Best regards,
    Ismael

    in reply to: Problem with tablet portrait view #1095535

    Hi,

    Thanks for the update.

    Are you referring to the grid row cells? Please edit the element, set the “Mobile Behaviour” to the first option and then go to the Screen Options. In that panel, set the “Fullwidth Break Point” to the second option (On tablets (at a screen width of 989px or lower), so the cells become full width on tablet view.

    Best regards,
    Ismael

    in reply to: Extra Elements #1095533

    Hi,

    Thanks for the update.

    You can actually download the svg or eps format of the vero logo from this page.

    // https://www.vero.co/press-kit

    You can then convert it to an icon font using the fontello.com’s svg to icon generator.

    // https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-

    And then use this filter to change the default font icon used by the existing social icons in the theme.

    // https://kriesi.at/documentation/enfold/icon/#change-icon-used-for-standard-theme-elements-

    Best regards,
    Ismael

    in reply to: Blank product page after update #1095531

    Hey MedienhausKnoerzer,

    Thanks for the update.

    The product pages display properly when we check. Is this fixed? The version prior to the update is bit old, so you have to configure some of the options again, specially the Performance > File Compression settings. Please update the theme regularly in order to prevent this issue from happening again.

    Best regards,
    Ismael

    Hey!

    Thanks for the update.

    Is this the same issue as posted in the following thread?

    // https://kriesi.at/support/topic/receiving-the-following-error-when-attempting-to-apply-recaptcha/

    Please refrain from creating duplicate threads as much as possible. Thank you.

    Best regards,
    Ismael

    in reply to: image outside the grid row box #1095526

    Hi,

    Thanks for the update.

    This css code should pull the “rolling pin” image upwards.

    .avia-image-container.av-styling-.avia-builder-el-9.avia-builder-el-no-sibling.avia-align-center {
        margin-top: -150px;
    }
    

    That css code contains a generic selector in it. You have to turn on the custom css class field so that you can apply a more specific class attribute or selector.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#turn-on-custom-css-class-field-for-all-alb-elements

    Best regards,
    Ismael

    in reply to: Icon not showing up correctly #1095524

    Hi,

    Thanks for the update.

    The character code of the clock icon is “ue666” and it belongs to a set called “fontello”. We edited the shortcode based on that.

    
    [av_font_icon icon='ue666' font='fontello' style='' caption='' link='' linktarget='' size='17px' position='left' animation='deactivated' color='' av_uid='' admin_preview_bg=''][/av_font_icon] Mon - Thu: 10am-7pm[av_font_icon icon='ue666' font='fontello' style='' caption='' link='' linktarget='' size='17px' position='left' animation='deactivated' color='' av_uid='' admin_preview_bg=''][/av_font_icon] Fri: 10am-5pm[av_font_icon icon='ue666' font='fontello' style='' caption='' link='' linktarget='' size='17px' position='left' animation='deactivated' color='' av_uid='' admin_preview_bg=''][/av_font_icon] Sat: 11am-3pm[av_font_icon icon='ue666' font='fontello' style='' caption='' link='' linktarget='' size='17px' position='left' animation='deactivated' color='' av_uid='' admin_preview_bg=''][/av_font_icon] Sun: Closed
    

    Best regards,
    Ismael

    in reply to: Gutenberg Mode #1095523

    Hi,

    Thank you for using Enfold.

    You should be able to change the default editor in the Enfold > Theme Options, but it doesn’t work in your installation. Did you toggle that option before? It’s currently set to the classic editor. For some reason, we can’t change it back to the block editor.

    Best regards,
    Ismael

    in reply to: How to add a custom field to a portfolio with ACF? " #1095522

    Hi,

    Thanks for the update.

    We can’t check the site directly due to personal reasons but we’ll try to help as much as we can.Are you using the blog grid element? If so, please try to edit the config-templatebuilder > aviashortcodes > postslider > postslider.php file. Look for the html function and the post loop around line 484. Inside that loop, you should be able to add the ACF fields. If you want to add it before the read more link for example, edit line 511:

    $permalink = '
    <div class="read-more-link"><a href="'.get_permalink($the_id).'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow"></span></a></div>
    ';
    
    

    The code might look something like this:

    $acf_field = get_field('field_name');
    $permalink = $acf_field . '
    <div class="read-more-link"><a href="'.get_permalink($the_id).'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow"></span></a></div>
    ';
    

    Best regards,
    Ismael

    in reply to: Prev and Next on Postnav change #1095510

    Hi,

    Thanks for the update. We’ll close this thread now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: av_toggle_container in the Ajax portfolio preview #1095507

    Hi,

    Thanks for the update.

    It’s a floating or clearfix issue. Add this code in the Quick CSS field.

    .avia-section .template-page .portfolio-preview-content .entry-content-wrapper * {
        float: none;
    }

    That should remove the default “float” property of the toggle container. You can also add a clearfix to the parent container if you’re planning to add columned elements.

    // https://css-tricks.com/snippets/css/clear-fix/

    Best regards,
    Ismael

    in reply to: Show quantity selectors to cart in mobile view #1095506

    Hi,

    Thanks for the update.

    That is possible. Try this script in the functions.php file.

    dd_action('wp_footer', 'ava_custom_add_subtotal_text');
    function ava_custom_add_subtotal_text(){
    	?>
    	<script type="text/javascript">
            (function($) {
                $('<span class="label">Subtotal</span>').prependTo('.product-subtotal');
            })(jQuery);
    	</script>
    	<?php
    }
    

    The code above is going to add a “Subtotal” text right before the subtotal value.

    Best regards,
    Ismael

    in reply to: Blog Post Display Issues 4.5.6 #1095260

    Hey aribann,

    Thanks for the update.

    We checked one of your post and found out that it was created using the Advance Layout Builder (ALB). All default elements of the post such as the featured image, author, social share etc will not display automatically when ALB is active. You have to add them manually using the available elements in the builder. Now, we’re not entirely sure what you meant by “sidebar elements”. Did you select a different sidebar or widget area?

    Best regards,
    Ismael

    in reply to: Header Widget Area – Need to Center #1095259

    Hi,

    Thanks for the update.

    This css code should help.

    #header .widget {
        top: -50px;
    }

    Just add it in the child theme’s style.css file or the Quick CSS field.

    Best regards,
    Ismael

    in reply to: Warning: file_get_contents / on line 328 / ReCaptcha #1095255

    Hi,

    Thanks for the update.

    We can’t find the error though. Please provide the actual url of the page where we can see the issue.

    Best regards,
    Ismael

    in reply to: Masonary grid looks odd #1095254

    Hi,

    Thanks for the update.

    You should replace the previous css modification with the following code.

    .av-masonry-entry.post {
        width: 33.3%;
        height: 400px;
    }

    Best regards,
    Ismael

    in reply to: Ressoucres, that block rendering #1095252

    Hi,

    Thanks for the update.

    You should leave the cache and compression plugin disabled until you’re actually done with the site. We haven’t really tested the “fast velocity minify” plugin, but most minification plugins offer the same functionality, so they should work fine. Only way to know for sure is to test it.

    Best regards,
    Ismael

    in reply to: Audio-Player issue #1095249

    Hi,

    Thanks for the update.

    It still looks broken. Please post the login details in the private field so that we can check the markup closely.

    Best regards,
    Ismael

    in reply to: Pagination #1095248

    Hi,

    Thanks for the update.

    That modification should not have affected the sidebar. Could you post the actual code on pastebin.com? Or generate a new login token so that we can test it.

    Best regards,
    Ismael

    in reply to: Blog page not showing full text #1095245

    Hi,

    I’m not sure what’s odd about that. We just told you that the excerpt or the full content will display automatically when ALB is disabled. It doesn’t matter if it’s the block or the classic one. And please note that the elements in the builder are actually shortcodes, so they will still display when you switch to a default editor.

    Best regards,
    Ismael

    in reply to: Layer Slider Small on Mobile #1095243

    Hi,

    Thanks for the update.

    We’re trying to edit the slider, but the changes aren’t taking effect. Is there a server cache? We actually removed the layer slider in the “test” page, but it’s still displaying in the frontend.

    The current slider layout is not that complex, so you’re probably better off using the Full Screen Slider instead of the Layer Slider. That slider will automatically inherit the size of the browser window.

    Best regards,
    Ismael

    in reply to: Help: Event Countdown completely missing! #1095238

    Hi,


    @garyvot
    : We will need both so that we can access the dashboard, toggle the settings and edit the files when necessary. Please add it in the private field.


    @technetkenya
    : Please create a new thread or ticket. Put the site url and the login credentials in the private field.

    Best regards,
    Ismael

    in reply to: Unable to update to latest version #1095237

    Hi,

    Thanks for the update.

    This shortcode issue is already fixed on version 4.5.6. Please upgrade the theme to that version.

    Best regards,
    Ismael

    in reply to: Icon box not showing / CSS and merging #1095235

    Hi,

    Thanks for the update.

    We just noticed that the site is using an older version of the theme, 4.5.3. Please upgrade to version 4.5.6, then update the asset-manager.php file as suggested on the previous thread.

    // https://kriesi.at/support/topic/again-one-problem-with-merged-css/#post-1082689

    Unfortunately, that patch was not merged on the latest version of the theme.

    Best regards,
    Ismael

    in reply to: Blurry Images on Shop page #1095234

    Hi,

    Thanks for the update.

    The size of the product thumbnail is only 100x75px. Did you try the suggestion above? You have to adjust the default product thumbnail size in the Customizer.

    Best regards,
    Ismael

Viewing 30 posts - 23,161 through 23,190 (of 67,145 total)