Forum Replies Created

Viewing 30 posts - 11,251 through 11,280 (of 34,910 total)
  • Author
    Posts
  • in reply to: Issues with WYSIWYG-Editor #1357889

    Hi,
    Thanks for the screenshots your “weird” editor looks like it was added from a plugin, perhaps TinyMCE Advance, notice the “powered by Tiny” text.
    2022-07-10_013.jpg
    Try finding the plugin and disabling it, this doesn’t occur in the theme with a new install so it is either a plugin or a customization.

    Best regards,
    Mike

    in reply to: Filtering pages or posts like with portfolio #1357888

    Hey InSilentio,
    Thank you for your question, but I don’t think I fully understand because I don’t understand why you would want to create a new CPT that works exactly like the portfolio post type, when you could just use the portfolio post type.
    You can use it for your sound instruments and classes and still use the portfolio and masonry element sorting by assigning categories to them, for example if you only want to show the “classes” and “design” categories in a portfolio element, you can just choose those:
    2022-07-10_0111caedc24db428736.jpg
    then the frontend sort will only show these:
    2022-07-10_012.jpg
    creating a new CPT that works exactly like the portfolio post type and have it recognized in all of the elements and options in the theme just seems like trying to re-invent the wheel.

    Best regards,
    Mike

    Hi,
    Thank you for the login to your site I believe the issue was that your child theme functions.php was missing the top <?php
    I added it back and the script and the css to your child theme stylesheet.
    I also adjusted the offset to 10% so the header hides just before the table gets to it.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: hamburger disappearing #1357886

    Hi,
    Naturally 😃, thank you Shari for figuring this out 🙌 Well Done 🎉
    If you have any further questions please create a new thread and we will gladly try to help you, before you can figure it out yourself 😃. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: the width on mobile version #1357885

    Hi,
    Thanks for the feedback, so when I looked at your homepage on mobile the very first image is 100% width, I thought this was desired, then after it are some posts that your screenshot indicated to have the 6% padding, so far good right?
    Now below when I see the other two full-width image sections, I assume they are like the top one and should remain full width, correct?
    ▸ Sind Gesichtssprays wirklich hilfreich?
    ▸ Sind Neujahrsvorsaetze gemacht um zu scheitern?
    plus:
    ▸ Hier entsteht in Kürze ein Newsletter
    Now originally I thought the posts after “Sind Gesichtssprays wirklich hilfreich?” were 6% also, but I see they are not, my mistake.
    So for those grid rows I added a custom class paddingsix
    2022-07-10_112511.jpg
    and below the grid rows you have color sections with columns, so to include these I added the custom class fakepaddingsix
    2022-07-10_114752.jpg
    then I updated the css to this:

    @media only screen and (max-width: 767px) { 
    .responsive #top #wrap_all #main .av-flex-cells .no_margin:not(.av-zero-column-padding),
    .responsive #top #wrap_all #main .av-flex-cells .paddingsix .no_margin {
    padding-left:6% !important;
    padding-right:6% !important;
    }
    .responsive #top #wrap_all #main .av-flex-cells .no_margin.av-zero-padding{
    padding-left:0 !important;
    padding-right:0 !important;
    }
    #top .fakepaddingsix {
      width: calc(100vw - 14%)!important; 
      position: relative !important; 
      left: calc(-44vw + 50%) !important; 
    }
    }

    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Consent Tool (DSGVO, GDPR) #1357880

    Hey Ralph,
    Thanks for the link to your site, but it doesn’t look like you have enabled the cookie consent message bar or modal window, so the first step to becoming compliant is to do this, once you enable it you can make the adjustments above in the options, please review our documentation.
    Also see our blog post: ENFOLD and the GDPR

    Best regards,
    Mike

    in reply to: avia-rtl and avia-ltr transition #1357878

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hey qhsedirectory,
    Thanks for the link to your page, currently you have an error showing at the top of your page above your menu:

    /** Add your own functions here. You can also copy some of the theme functions into this file. * WordPress will use those functions instead of the original functions then.*/
    

    this is the text in your child theme functions.php, please try removing any changes that you have made to correct.

    As for hiding and showing the header when a specific place on the page is in view, I tested on an example page containing many columns with text blocks, and for one text block I added a custom class waypoint-trigger:
    2022-07-10_004.jpg
    this “trigger” element is down a ways on the page so it is not in view on the page load:
    2022-07-10_005.jpg
    then I added this css in the Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .waypoint-hide {
      position: fixed !important;
      top: -100px;
      width: 100%;
      z-index: 999;
      opacity: 0;
      background: #fff;
      transition: 0.3s all;
      box-shadow: 0 2px 3px rgba(0,0,0,0.15);
    }
    
    .waypoint-show {
      top: 0;
      opacity: 1;
      transition: 0.3s all;
    }

    and this code in the child theme functions.php file in WordPress ▸ Appearance ▸ Editor:

    function custom_waypoint_trigger_script() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($){
      var $header = $('#header_main');
      var $things = $('.waypoint-trigger');
      $things.waypoint(function(direction) {
        if (direction === 'down') {
           $header.addClass('waypoint-hide');
           $header.removeClass('waypoint-show');
        }
        if (direction === 'up') {
           $header.addClass('waypoint-show');
           $header.removeClass('waypoint-hide');
        }
      }, {
        offset: '95%'
      });
    })(jQuery);
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_waypoint_trigger_script');

    Note in the script the “offset” is 95%, this will trigger when the element is just in view, you can adjust to suit, such as 50% for when the element is in the middle of the page.
    Please give this a try, I linked to my example page below.

    Best regards,
    Mike

    in reply to: WPLM Language switch im Headerbereich sichtbar #1357874

    Hi,
    Thank you for the link to your site, I added the css to your Quick CSS for both your EN & DE theme options, and it is now working, please clear your browser cache and check.
    Please note that WPML creates a theme panel for each language, so often you need to make the changes in both.

    Best regards,
    Mike

    in reply to: Notice: Undefined index: path in #1357873

    Hi,
    Thanks for the login, it looks like your web host is deferring your jQuery, note that the options are not available in your theme options at Enfold Theme Options ▸ Performance ▸ Change WordPress Defaults
    2022-07-10_002.jpg
    these are the options that you should see
    2022-07-10_001.jpg
    You will need to ask your web host to restore the WordPress defaults as they have modified the default install.
    Also note that your WordPress ▸ Tools ▸ Site Health says that your Debug mode is enabled, displaying errors on your site which is a critical security issue and recommends that you disable this.
    2022-07-10_003.jpg

    Best regards,
    Mike

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Background Image Scaling Issues On Mobile #1357861

    Hi,
    Thank you, but unfortunately, I don’t have an iPhone or iPad to test with and I do not see this on a Galaxy Android, with Firefox, Chrome, or Brave.
    But I’m sure we will be able to sort this out, thank you for your patience.

    Best regards,
    Mike

    Hey Eric,
    Merci pour le lien vers votre site, les grandes couleurs violettes du titre du méga menu sont définies dans vos options de thème, si vous regardez dans votre Enfold Theme Options ▸ General Styling vous trouvez-en un qui soit violet. Les titres du méga menu sont traités comme des en-têtes plutôt que comme des liens simples, mais si vous voulez qu’ils ressemblent à des liens simples, essayez ce code dans le champ Style général ▸ CSS rapide ou dans le champ WordPress ▸ Personnaliser ▸ CSS supplémentaire :

    #top #header #header_main .mega_menu_title a {
        color: #c6d6be;
        font-size: 12px;
        font-weight: 400;
    }
    #top #header #header_main .mega_menu_title a:hover {
    	color: #1078ff;
    }

    Après avoir appliqué le CSS, veuillez vider le cache de votre navigateur et vérifier.

    — Translated with Google —

    Thanks for the link to your site, the large purple mega menu title colors are set in your theme options, if you look in your Enfold Theme Options ▸ General Styling you will find one that purple. The mega menu titles are treated like headings rather than simple links, but if you want them to look like simple links please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #top #header #header_main .mega_menu_title a {
        color: #c6d6be;
        font-size: 12px;
        font-weight: 400;
    }
    #top #header #header_main .mega_menu_title a:hover {
    	color: #1078ff;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Background Image Scaling Issues On Mobile #1357857

    Hi,
    Thanks for the screenshots, unfortunately, I don’t see this on Android, I have asked the rest of the team to check with an iPhone, please include what version of iPhone you are using and what version of Safari you see this in. Have you also checked with Chrome and Firefox on your iPhone?

    Best regards,
    Mike

    in reply to: Megamenu, menu description is not visible on mobile #1357856

    Hey bonsaimedia,
    Thank you for the link to your site, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #av-burger-menu-ul .avia_mega_text_block.menu-item-2701 {
    	 padding: 10px 30px;
    }
    #av-burger-menu-ul .avia_mega_text_block.menu-item-2701:before {
    	content: "\ Diverse praktische informatie over roosterzaken, ICT, Ziek, te laat, verlof, etc. vindt u op ons communicatienet.";
    }

    After applying the css, please clear your browser cache and check.
    Please see the screenshot in the Private Content area or the expected results.

    Best regards,
    Mike

    in reply to: enfold 3.0.4 issue #1357853

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: And where do you want to display the Blog? #1357852

    Hi,
    It should link to the specific category archive page, not back to the blog page showing those category items.

    Best regards,
    Mike

    Hey aestheticare,
    Thank you for the link to your site, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    .avia_mobile #top .avia-slider-testimonials {
        pointer-events: all;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: And where do you want to display the Blog? #1357847

    Hey rogerdavis,
    Correct :)

    Best regards,
    Mike

    in reply to: Fullscreen Slider Caption/Text/Button Margins #1357845

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Background Image Scaling Issues On Mobile #1357843

    Hey Sozo,
    Thanks for the login and link to your site, but I don’t see that your background image is “zoomed in” on mobile.
    I noted that you said that it only shows on an actual device so I checked on my Android, since I don’t see anything I assume you are using an iPhone?
    Please include a screenshot of what you are seeing on your device so we can understand better.
    To add a screenshot please try using an Screenshot service and pasting the image URL in your post.

    Best regards,
    Mike

    in reply to: enfold 3.0.4 issue #1357841

    Hi,
    Thank you for the link to your site, your SSL is working and I see that you have updated to v5.0.1 and you have no errors, glad to see that you and Nikko were able to sort this out, shall we close this then?

    Best regards,
    Mike

    in reply to: Button – XXL smaller than large #1357840

    Hey InSilentio,
    Seems like a conflict, please create a test page with both buttons side-by-side so we can examine.
    I can’t reproduce this on a clean install.

    Best regards,
    Mike

    in reply to: the width on mobile version #1357839

    Hey Veronika,
    Try this instead:

    @media only screen and (max-width: 767px) { 
    .responsive #top #wrap_all #main .av-flex-cells .no_margin:not(.av-zero-column-padding){
    padding-left:6% !important;
    padding-right:6% !important;
    }
    .responsive #top #wrap_all #main .av-flex-cells .no_margin.av-zero-padding{
    padding-left:0 !important;
    padding-right:0 !important;
    }
    }

    Best regards,
    Mike

    Hey Veronika,
    Since this has just occurred, could it be a result of some other changes? Can you retrace your last changes?

    Best regards,
    Mike

    in reply to: fixed back round image on mobile version #1357837

    Hi,
    Thanks for the feedback I see from your screenshot you are using an iPhone, I only have an Android to test with and it is working correctly with it and in the Chrome Dev Tools, as you pointed out.
    I tried adjusting the css by adding !important; to position: fixed !important;
    2022-07-09_010.jpg
    see if this helps, Please note that testing with iPads & iPhones can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.
    Perhaps @Guenni007 has an idea to address this for iPhones.

    Best regards,
    Mike

    Hi,
    Thanks for the feedback and the login, I duplicated your slider and on one I set the Element Visibility to only show on desktop:
    2022-07-09_009.jpg
    and I removed the fallback image, on the other slider I set the Element Visibility to not show on desktop and left the fallback image so it will show on mobile devices.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: image size magazine #1357830

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: blog posts #1357826

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Special alignment #1357824

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 30 posts - 11,251 through 11,280 (of 34,910 total)