Forum Replies Created

Viewing 30 posts - 2,851 through 2,880 (of 25,536 total)
  • Author
    Posts
  • in reply to: Same Pictures in Slide #1357045

    Hi Vangone,

    The slider images of those four pages are fixed.
    I’m not really sure what causes the issue but it’s fixed by opening the slider and saving.
    Please review your site.

    Best regards,
    Nikko

    in reply to: Hide dates on elements #1357042

    Hey shortcircuitmedia,

    For removing dates on https://speakercommunity.org/aidan-crawford/ please add this CSS code in Enfold > General Styling > Quick CSS:

    #top.single-post .avia-content-slider .slide-meta {
        display: none;
    }

    As for adding a category in masonry element, please add this code in functions.php of your child theme:

    add_filter( 'avf_masonry_loop_prepare', 'avf_masonry_loop_prepare_mod_cat', 10, 2 );
    function avf_masonry_loop_prepare_mod_cat( $key, $entries )
    {
        $categories = get_the_category($key['ID']);
        $separator = ' ';
        $output = '
    <div class="masonry-cat">';
    	    if ( ! empty( $categories ) ) {
    	        foreach( $categories as $category ) {
    				$output .= '<span alt="' . esc_attr( sprintf( __( 'View all posts in %s', 'textdomain' ), $category->name ) ) . '">' . esc_html( $category->name ) . '</span>' . $separator;
    	        }
    	    }
    	 $output .= '</div>
    ';
    
        $key['text_after'] .= trim( $output, $separator );
        return $key;
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Font size difference between Page and Post #1357038

    Hi JeffTweddale,

    You are using a very old version of Enfold (4.1.2), please backup your site first and update it to the latest version of Enfold (5.0.1) and that should fix the issue you are currently experiencing.

    Best regards,
    Nikko

    in reply to: Enfold Theme – Various setup #1357037

    Hi Marcus,

    We apologize for the delayed response.

    1/ CSS
    Where can this be added at theme level?
    You can add it via Enfold > General Styling > Quick CSS

    2/ Adding code in head tag
    If I need to add any tracking code in a head tag other than Google, where can this be added
    Go to Enfold > Google Services > Google Analytics Tracking Code, and add your code
    For further information please check our documentation: https://kriesi.at/documentation/enfold/google-analytics/

    3/ Perfomance
    Do you encourage to activate the he image optimisation plugins suggested for image and cache
    Yes, however different server setup as well as site setup might cause some conflict, we suggest enabling the options one by one (or by batch) and test, if there are conflicts try disabling minifications or lazyloading

    4/ SEO
    Do you suggest any preferred SEO plugins that work well with the theme
    Yes, you can use Yoast SEO or RankMath plugin

    5/ ReCaptcha
    Is it easy to get APi keys for ReCaptcha or can you simply enable recaptcha for each form. What is best practice
    Yes, it’s easy to get recaptcha API keys, you’ll need to get it from https://www.google.com/recaptcha/admin, then enable recaptcha on the theme via Enfold > Google Services > Select if you want to use Google reCAPTCHA, you’ll need to enable recaptcha as well on the contact form.

    6/ Pop up box on entry to accept cookies
    Is there anything in the theme that sets an auto pop-up to accept cookies etc.
    Yes, go to Enfold > Privacy & Cookies, for further instructions please check: https://kriesi.at/documentation/enfold/privacy-cookies/

    Best regards,
    Nikko

    in reply to: Problem with WPML – wrong page in translation #1357035

    Hi Michael,

    We are happy to hear that :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Different header mobile #1357034

    Hi fanlokbun,

    Please try to add this CSS code in Enfold > General Styling > Quick CSS:

    .responsive #top .header_bg {
        background-size: contain;
    }
    
    @media only screen and (max-width:767px) {
      .responsive #top .header_bg {
        background-position: center;
      }
    }

    Best regards,
    Nikko

    in reply to: Portfolio Grid Question #1357033

    Hi billbasler,

    We apologize for the delayed response as well as the inconvenience.
    https://kriesi.at/themes/enfold/portfolio-item/single-portfolio-23-gallery-3/ uses the Gallery element which has a Gallery Style of Big image with thumbnails below.
    I have created a portfolio item on your site which is similar to the link you gave, here’s the page: https://phelansinteriors.com/portfolio-item/demo-portfolio-item/
    I hope this helps.

    Best regards,
    Nikko

    Hi whdsolutions,

    Please try the custom code suggested by @Guenni007 (it does work properly), you’ll just need to add some custom post types that you want to include in the search.


    @Guenni007
    thanks for helping out.

    Best regards,
    Nikko

    in reply to: Modification slider de produit #1357029

    Hi sebzh22,

    We apologize for the delayed response.
    It is possible for the product name to be positioned at the top left and the price at the bottom left, however the whole product item is linked to specific product page and there’s no option to show the button. Please try to add this CSS code in Enfold > General Styling > Quick CSS:

    #top .avia-product-slider-container .woocommerce-loop-product__link {
        position: relative;
    }
    
    #top .avia-product-slider-container .woocommerce-loop-product__link .inner_product_header {
        position: static;
        text-align: left;
    }
    
    #top .avia-product-slider-container .woocommerce-loop-product__link .inner_product_header .woocommerce-loop-product__title {
        position: absolute;
        top: 4px;
        left: 12px;
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Support #1357028

    Hi Thilo,

    Thanks for providing us with a staging site.
    The reason it was not showing on mobile is that the column titles are empty, I apologize I did not recognize it right away.
    The only way to show it on mobile is to use a different menu on mobile, this can be set in Enfold > Main Menu > Alternate Menu For Mobile and select a different menu.
    The mobile menu needs to be a duplicate of the main menu and change those empty column titles from – to any title of your choice, on your site I just set the title to Column 1, Column 2, etc.
    You can check the german version of your site, and I was able to duplicate the main menu using this plugin: Duplicate Menu (by Jonathan Christopher)
    You will need to set a different mobile menu for different languages.
    I hope this helps.

    Best regards,
    Nikko

    in reply to: Masonry Posts – Hide Date #1356879

    Hi Martin,

    We’re happy that Yigit could help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: avia layout gone! #1356878

    Hi Lefteris,

    Please try to add this CSS code in Enfold > General Styling > QUick CSS:

    @media only screen and (max-width:767px) {
      #top #wrap_all #full_slider_1 .av-q3q9qn-53925e4809ef013df04d16b8e3d727c0 .slideshow_caption {
        padding-top: 28px;
      }
    
      #top #wrap_all #full_slider_1 .av-q3q9qn-53925e4809ef013df04d16b8e3d727c0 .slideshow_caption .avia-caption-title {
        line-height: 1em;
      }
    
      #top #wrap_all #full_slider_1 .av-q3q9qn-53925e4809ef013df04d16b8e3d727c0 .slideshow_caption .avia-slideshow-button {
        margin: 12px 0 0;
      }
    
      #top #wrap_all #av_section_1.av-mhok2n-638bda690f6640ff90af9e62788881c3 .content {
        padding-top: 40px;
      }
    
      #top #wrap_all #av_section_1 .flex_column_table.av-kf05nz-46eaca2763ddd7be847a91efb3dfdb63 {
        margin-top: 0!important;
      }
    }

    It’s specific to the page you posted.
    Hope it helps.

    Best regards,
    Nikko

    in reply to: Support #1356872

    Hi Thilo,

    Thanks for giving us admin access.
    I tried to use Health Check & Troubleshooting plugin however it seems to deactivate as soon as I try to switch themes.
    I don’t want to try to disable plugins and switch plugins on a live site that might have some visitors on it.
    Can you setup a staging site for us instead?

    Best regards,
    Nikko

    in reply to: Masonry Backround Image settings not working #1356866

    Hi frankeee,

    You’re welcome :)
    We’re glad that we could help you.
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Page stuck in loading screen #1356845

    Hi scitation,

    I tried to check on the issue as well and I could see this issue: (I replaced the URL)
    https://website.com/?avia_forced_reroute=1 404 (Not Found)
    I have changed Custom Error 404 Page (in Theme Options) from Redirect to selected page to No 404 custom page selected (the only change made on your site)
    However after checking further, I get this error:
    This site can’t be reached
    and can’t seem to access your site again, please check.

    Best regards,
    Nikko

    in reply to: Theme Update #1356842

    Hi Marcus,

    Yes, it’s worth getting the Envato Private Token as it is more convenient and it’s only a single click.

    The advice we give when updating the theme and WordPress updates are:
    1. Setup a staging site first and test the updates there first and see if it breaks anything.
    2. If all is good on the staging site, make a full backup of your site.
    3. Update the theme via:
    3a. Theme Updates (Theme Options)
    3b. Use Envato Market plugin if theme updates do not work for some reason
    3c. Replace the theme via Appearance > Themes
    3d. Update the theme manually (via cPanel, FTP, etc)

    Best regards,
    Nikko

    in reply to: Support #1356840

    Hi Thilo,

    I tried to login and it seems to work but then this appears in wp-admin page:
    Sie sind leider nicht berechtigt, auf diese Seite zuzugreifen.
    translation in english:
    Unfortunately, you do not have permission to access this page.
    Please check.

    Best regards,
    Nikko

    in reply to: Space under a code block #1356836

    Hi T,

    We’re glad that we could help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Floating Button on each page #1356834

    Hi CC,

    We’re glad that we could help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Masonry Backround Image settings not working #1356832

    Hi frankeee,

    Thanks for providing us with admin access.
    I tried to regenerate the thumbnails using a plugin Simple Image Sizes (have removed it) and it was able regenerate medium sizes (300x300px), there were two images in the masonry that weren’t regenerated so I re-uploaded the image so WordPress can recreate the medium size of those images and it seems to be working properly.
    By default when chosen size is not available the full version of that image is used instead.

    Best regards,
    Nikko

    in reply to: Support #1356818

    Hi Thilo,

    Thanks for pointing it out however I can’t seem to replicate the issue on my end, our demo which uses a mega-menu does not show the same issue as well: https://kriesi.at/themes/enfold-2017/
    Can you try to create a staging site? so we can try to check further on the issue.
    Also, please create a separate thread and give us temporary admin login (for the staging site) and post it privately.
    You’ll need to create a separate thread since the thread creator will see the posts written in private content.

    Best regards,
    Nikko

    in reply to: Space under a code block #1356814

    Hi cktanju,

    The iframe code has an inline script that sets height to 400px.
    To fix this issue on desktop, please add this CSS code in Enfold > General Styling > Quick CSS:

    @media only screen and (min-width:768px) {
      #top #gastronaviReservationWidget-0 {
        height: 230px !important;
      }
    }

    Best regards,
    Nikko

    Hi HulaSlim,

    I’m glad that you were able to solve the problem by adjusting the padding in the Sections.
    Although I’m not really sure what you meant by “The settings are each time different in every title, which is something I don’t understand though. I have the impression I cannot control things with a simple setting everytime equal to the preceeding” are you referring to the Color Section and Grid Row settings in changing the padding?

    Best regards,
    Nikko

    in reply to: Support #1356803

    Hi Thilo,

    Thanks for providing the link to your site.
    The mega-menu only shows up on desktop however it will be changed to burger menu on mobile.
    I do see the burger menu on your site and it’s working properly, is there any issue when viewed on your end?

    Best regards,
    Nikko

    in reply to: ajouter un bouton "lire plus" #1356799

    Hi sebzh22,

    Please try the Accordion element (under Content Elements).
    Hope this helps.

    Best regards,
    Nikko

    in reply to: Testimonials navigation arrows #1356797

    Hi Lyse,

    We’re glad to hear that :)
    Just let us know if you still need further assistance.

    Best regards,
    Nikko

    in reply to: Floating Button on each page #1356796

    Hi CC2022,

    Please try adding this CSS code:

    #top #sec_30 .av-content-full {
        z-index: 50 !important;
    }

    Best regards,
    Nikko

    in reply to: Fatal error #1356795

    Hi midiata_digital,

    Thanks providing us with cPanel access.
    The error is now fixed, please review your site.
    Also, since you posted the credentials publicly (we have removed it), please change your passwords.

    Best regards,
    Nikko

    Hi awening,

    Please create a separate thread and give us temporary admin login (as Rikard mentioned) and post it privately.
    You’ll need to create a separate thread since the thread creator will see the posts written in private content.

    Best regards,
    Nikko

    in reply to: Page stuck in loading screen #1356667

    Hi scitation,

    Yes, can you give us temporary admin and FTP access of your site?
    Just post the credentials privately.

    Best regards,
    Nikko

Viewing 30 posts - 2,851 through 2,880 (of 25,536 total)