Forum Replies Created

Viewing 30 posts - 12,391 through 12,420 (of 34,910 total)
  • Author
    Posts
  • in reply to: How to use transparent header on posts and archives #1345193

    Hey WebDevDept,
    Thank you for your patience and for the screenshots, it looks like your new header is created with css and a background image to create the blue wave, is this correct?
    If that is true then you should be able to target the archive pages by changing the classes.
    To force a transparent header for author & archive pages add this function to your child theme functions.php

    add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 50, 1);
    function avf_header_setting_filter_mod($header_settings) {
    	if ( is_author() || is_archive()) {
    		
    		$header_settings['header_transparency'] .= " header_transparency";
    		$header_settings['header_class'] .= " av_header_top av_logo_left av_main_nav_header av_menu_right av_custom av_header_shrinking_disabled av_header_stretch_disabled av_mobile_menu_phone av_header_transparency av_header_searchicon av_header_unstick_top_disabled av_minimal_header av_bottom_nav_disabled  av_alternate_logo_active av_header_border_disabled";
    	}
    	return $header_settings;
    }

    please note that with a transparent header the #main loses it’s 88px top padding so all of the content shifts up.

    Best regards,
    Mike

    in reply to: Completely remove entypo-fontello #1345192

    Hi,
    The Dev Team has replied with this function and I tested it on PHP v8 and it is working.

    add_filter('avf_default_iconfont', function($icon_font) { return array(); }, 10, 1);  

    Thank you for your patience

    Best regards,
    Mike

    Hi,
    Thanks for your feedback, as I understand your plan from your first post, the burger icon in the layerslider is going to be for your mobile view and doesn’t need to work on desktop, so I changed the link in the layerslider burger icon to #custom-menu-toggle and changed the function to this:

    
    
    function custom_script() { ?>
        <script>
    (function($){
      $('a[href*="#custom-menu-toggle"]').on('click', function() {
        $('.av-hamburger').trigger('click');
      });
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_script');

    now the layerslider burger icon opens the theme burger menu on click on devices below 990px.

    Best regards,
    Mike

    in reply to: Favicon not showing up #1345185

    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: Hide empty white boxes in Microsoft Edge #1345141

    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: Dropdown menu #1345138

    Hi,
    Thanks for your patience and for the login, the issue was that a select option doesn’t trigger a click and the plugin doesn’t include the custom classes for the popup maker plugin triggers. I was able to add a script that gets the option values and adds them as a class and triggers a click when each one is selected.
    I added this to your child theme functions.php:

    function custom_dropdown_popmake_trigger() { ?>
        <script>
    (function($){
       $('#select_jp_dropdown_menu_widget-2 option').addClass(function() {
        return this.value.replace("#", "");
    });
    	$('#select_jp_dropdown_menu_widget-2').change(function(){
    	$(this).find(':selected').click()
    });
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_dropdown_popmake_trigger');

    please clear your browser cache and check the test page linked below.

    Best regards,
    Mike

    in reply to: Horizontal gallery image caption #1345106

    Hi,

    Thanks for the screenshots, but I’m not experiencing this with Android, please see the screenshots in the Private Content area. If you are using an iPhone it 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.

    Best regards,
    Mike

    in reply to: Hide empty white boxes in Microsoft Edge #1345103

    Hi,
    I believe you can’t see the Simple Translate boxes now because I removed them for you, above I explained how to check for them and removed them should this happen again, but if you disable the Simple Translate extension then you probably won’t see these anymore, so this should be solved.
    I recommend saving a link to this topic for future reference, and shall we close this thread then?

    Best regards,
    Mike

    in reply to: Completely remove entypo-fontello #1345096

    Hi,
    Thanks for the feedback, I tested with PHP v8 and also received the error, I submitted this to the Dev Team and will reply here when I hear back.
    Thank you for your patience

    Best regards,
    Mike

    in reply to: Hide empty white boxes in Microsoft Edge #1345067

    Hi,
    Thanks for the feedback, I believe this might be coming from a Firefox extension Simple Translate adding to the text blocks when you copy & paste in your browser, are you using this extension? You may want to disable it when you work on your site. I looked through some of your pages and removed this code adding the un-wanted blocks

    <div id="simple-translate">
    <div>
    <div class="simple-translate-button isShow" style="background-image: url('moz-extension://2568a979-4678-4b1e-bd5a-8d670de04d36/icons/512.png'); height: 22px; width: 22px; top: 83px; left: -22px;"></div>
    <div class="simple-translate-panel " style="width: 300px; height: 200px; top: 0px; left: 0px; font-size: 13px; background-color: #ffffff;">
    <div class="simple-translate-result-wrapper" style="overflow: hidden;">
    <div class="simple-translate-move" draggable="true"></div>
    <div class="simple-translate-result-contents">
    <p class="simple-translate-result" dir="auto" style="color: #000000;"></p>
    <p class="simple-translate-candidate" dir="auto" style="color: #737373;"></p>
    
    </div>
    </div>
    </div>
    </div>
    </div>

    If you are working in a text block element and see a white box in the preview area switch to the “text” tab and remove the code, like this:
    2022-03-18_072546.jpg
    you can also use the css above as it won’t cause any issues even if you remove all of the code from your site, it could help in the future if you miss one.

    Best regards,
    Mike

    in reply to: Line of the main menù #1344892

    Hey ictsystem,
    Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #avia-menu .avia-menu-fx {
        height: 4px;
    }

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

    Best regards,
    Mike

    in reply to: Hide empty white boxes in Microsoft Edge #1344883

    Hey UFreeman,
    I tested your pages on Windows in Chrome, Firefox, & Edge and these simple-translate boxes are showing in all browsers.
    They don’t seem to do anything so perhaps your best option would be to remove them, but if you want to just hide them add this css in the WordPress ▸ Customize ▸ Additional CSS field:

    #simple-translate {
    	display: none;
    }

    Please see the screenshot in the Private Content area.

    Best regards,
    Mike

    in reply to: section full width #1344865

    Hi,
    I’m not sure what was changed but I adjusted the css to this:

    #top.page-id-13305 #full_width_tab_section .av-layout-tab > .av-layout-tab-inner > .container {
        max-width: 2500px;
        padding: 0;
    }

    and now the full width images are full width again, but you will still need to change the image columns and shortcode to a code block to set the “boxed” width as we talked about earlier.

    Best regards,
    Mike

    in reply to: Dropdown menu #1344859

    Hi,
    Sorry I see now that it displays as a list and not a dropdown, please try the plugin: Navigation menu as dropdown Widget

    Best regards,
    Mike

    in reply to: Completely remove entypo-fontello #1344811

    Hi,
    I tested with the function above and installed a new font with the Custom Font Manager with no issues. Try extracting your custom font zip file and rezip only the font file with no inner directories and extra files. For example, some custom fonts place the file in a zip inside the zip.

    Best regards,
    Mike

    in reply to: Favicon not showing up #1344809

    Hi,
    In this case your page is loading as https but the favicon is loading as http so the browser is blocking it as insecure (not https)
    if your whole site was loading as http it would be fine, so the solution was to place an “s” in your url
    2022-03-16_001.jpg
    I did this for you, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: header on the mobile horizontally #1344730

    Hi,
    Glad we were able to help with your issue in this thread. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Completely remove entypo-fontello #1344728

    Hi,
    I tested this filter at the top of my child theme functions.php and it worked correctly with no error in v4.9 in a new install

    // disable entypo-fontello 
    add_filter('avf_default_iconfont', function($icon_font) {
        return null;
    }, 10, 1);

    perhaps you have another customization causing a conflict.
    Please note that if you use this function you will not be able to use the Iconfont Manager in the theme options.

    Best regards,
    Mike

    in reply to: Horizontal gallery image caption #1344666

    Hi,
    It looks like someone enabled the Enlarge Active Image option that you didn’t want to use, so I disabled it and I added this css:

    @media only screen and (max-width: 767px){
    .responsive .av-horizontal-gallery-inner {
        position: static;
        min-height: 300px;
    }
    }

    please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    I didn’t check if you can create the forms in other languages, but if you are not able to use it in your language I would recommend asking Mailchimp about this.
    I will put in a feature request to the Dev Team for adding a Tag integration, and reply here when I hear back from them.

    Best regards,
    Mike

    in reply to: Add Buttons to Top Bar #1344565

    Hi,
    Thanks for the login, I added a span around your phone number and this css:

    #header_meta .phone-info .phone {
    	line-height: 3em;
    }
    #top #wrap_all #header_meta .phone-info .top-right .avia-button {
    	margin-bottom: 0;
    }

    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: custom icons #1344561

    Hi,
    It depends on where you want to use them, for these buttons it was 30px, but the 1/3 column icons on your frontpage are 90px, you can make them larger and scale them down by setting the height & width in the css.

    Best regards,
    Mike

    Hi,
    Thanks for the link to the StackOverflow solution, but I don’t see a way to integrate this into our MailChimp element.
    I recommend creating a form on the MailChimp site using the Embedded form option from the dashboard and placing it in a code block element.
    To start click the Create icon at the top of the menu
    2022-03-15_001.jpg
    then the Embedded form option
    2022-03-15_002.jpg
    in the wizard you will see the Tags option
    2022-03-15_070815.jpg
    then complete your form and copy the code
    2022-03-15_005.jpg
    and add it to a code block element
    2022-03-15_006.jpg
    and when it is used the contact will be added to your list with the Tag
    2022-03-15_007.jpg
    Please give this a try.

    Best regards,
    Mike

    in reply to: Enfold portfolio question #1344548

    Hi,
    Please login to the support forum and open a new thread for help with these questions, you are using the Pre Sale Questions which is not the correct place for support questions.
    Please see our documentation about the Copyrights field

    Best regards,
    Mike

    in reply to: spacing between the texts in the list of icons #1344534

    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: Menu desktop problem with too many items. #1344391

    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: custom icons #1344390

    Hey sitibus,
    I assume that you have read our documentation about Adding your own Fontello or Flaticon Icons, you can create your own icons in SVG format single color only (black) and upload them to fontello which will convert them to a icon font which then can be imported to the Iconfont Manager.
    Your other option would be to create an image icon and use css to replace the current icon font in the button, like this:

    #top.page-id-1152 .avia_button_icon_left:before {
      content: url(https://img.icons8.com/fluency/30/000000/idea.png)!important;
    }
    #top.page-id-1152 .avia_iconbox_title {
    	top: -8px;
    }

    2022-03-14_001.jpg

    Best regards,
    Mike

    in reply to: spacing between the texts in the list of icons #1344388

    Hey sitibus,
    Thanks for the link to your site, for the icon list under VANTAGGI DELL’UTILIZZO DEL SISTEMA this css will give enough space for the icon animation, but you can adjust to suit.
    Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #top.page-id-1141 .avia-icon-list-container.avia-builder-el-18 .av-iconlist-small li {
    	    min-height: 62px;
    }

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

    Best regards,
    Mike

    in reply to: Menu desktop problem with too many items. #1344387

    Hey orianos,
    Thanks for the link to your site, to force the mobile menu below 1300px, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    @media only screen and (max-width: 1300px) {
      #top #header .av-main-nav > li.menu-item  {
          display: none!important;
      }
      #top #header .av-burger-menu-main {
          cursor: pointer;
          display: block!important;
      }
    }

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

    Best regards,
    Mike

    in reply to: Different navigation on special page #1344382

    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

Viewing 30 posts - 12,391 through 12,420 (of 34,910 total)