Forum Replies Created

Viewing 30 posts - 15,001 through 15,030 (of 34,666 total)
  • Author
    Posts
  • Hey webWahine,
    Sorry for the very late reply and thanks for the login, the class header-scrolled is only added with some header setups, in your case the class av_header_transparency is removed on scroll, so I changed your css to this:

    .page-id-11 #header.av_header_transparency .logo,
    .page-id-44 #header.av_header_transparency .logo {
        display: none!important;
    }
    
    .page-id-11 #header:not(.av_header_transparency) .logo,
    .page-id-44 #header:not(.av_header_transparency) .logo {
        display: block!important;
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Edit tab links to avoid accent issue #1273163

    Hey albertgarduno,
    Sorry for the very late reply, try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script() { ?>
        <script>
    (function($){
      $(document).ready(function(){
      $('html[lang="fr-FR"] #av-tab-section-1 > div > div.av-tab-section-tab-title-container a:first').each(function(){
        var tabtitle = 'preparation';
        $(this).attr('href', '#' + tabtitle);
    
    });
    });
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_script');

    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Custom Shop Page – Slide Show and White Space #1273158

    Hi,
    Glad to hear this helped, for your white space try this css:

    #top.archive #after_full_slider_1 > div > div {
    	padding-bottom: 0 !important;
    }

    For adding your widget section above your product grid on archive pages, we could try to inject the element shortcode in the functions.php like this example:

      add_action('ava_after_main_container', 'ava_after_main_title_mod');
    function ava_after_main_title_mod() {
    	if(is_woocommerce()) {
    		echo do_shortcode("[av_sidebar widget_area='Shop Overview Page']");
    	}
    }

    If you include your admin login in the Private Content area we could try to customize this for you.

    Best regards,
    Mike

    in reply to: Hotel demo #1272987

    Hey jakobl1976,
    Sorry for the very late reply, the Hotel demo demonstrates the WooCommerce Bookings plugin, which needs to be active to allow date based bookings.
    2021-01-16_183226.jpg

    Best regards,
    Mike

    Hey webWahine,
    Sorry for the very late reply, thanks for sharing your css but a link can not be added through css, I believe the link you are referring to is the burger menu hash link to open the menu, and not an additional link next to the menu.
    This script is an example that would create a link next to the burger menu

    function custom_script() { ?>
        <script>
        (function($){
      $(document).ready(function(){
    $('.av-burger-menu-main').append('<a href="/register/" class="register-link">Register</a>');
    $('a.register-link').css({ 'padding-left': '10px','font-size':'16px','display':'inline'})
    $('.av-burger-menu-main a').css({'display':'inline'})
    });
    })(jQuery);
    
        </script>
        <?php
    }
    add_action('wp_footer', 'custom_script');

    Try adding this code to the end of your functions.php file in Appearance > Editor and adjust the link to suit.

    Best regards,
    Mike

    in reply to: Mailchimp stuck at sending #1272979

    Hi,

    @mvanbokkel
    sorry for the very late reply and thanks for the login, I’m seeing some errors in the browser console when testing your Mailchimp widget. I disabled your custom 404 page in the theme settings as part of my test, along with disabling your “Disable jQuery Migrate” & “Load jQuery in your footer”. I created a blank test page but noted your wp booklist plugin seems to be loading its content and echoing it in the browser console, I was hoping to test the form without the booklist plugin loaded to see if there is a conflict, did you try disabling your plugins and check for a conflict? Can I try this?
    Can you clone this site to a staging site so we can test without affecting the live site?

    Best regards,
    Mike

    Hi,
    Sorry for the very late reply and thanks for the links, video, and login.
    I was able to copy the test page shortcode to my localhost and I found that your shortcode is missing the image attachment ID:
    2021-01-16_153349.jpg
    This information is required, it looks like your WP All Import is missing it somehow. In my tests I found that the color section retained the URL to the image in the shortcode, but there is no attachment ID for the image, and this is what WordPress is looking for. Yet because this image doesn’t exist on my server, there is no correct attachment ID to use, thus the image won’t show.
    If I then open the color section and click on the image thumbnail and upload that image to my localhost the shortcode is updated with the correct attachment ID and the image shows.

    So I don’t know if your WP All Import is missing the attachment ID, or if during the import the actual attachment ID for the newly imported image is different and the error results in the ID being removed, or if your not importing the images and are relying on the URL to include the image, which would not work because you will also need the correct attachment ID.

    Best regards,
    Mike

    in reply to: Shortcode in Porfolio Excerpts #1272962

    Hey teamvelocitymarketing,
    Sorry for the very late reply and thanks for the links, I tested the Sassy Social Share shortcode in my portfolio items excerpts after editing my portfolio.php following the steps posted here and it worked.
    If this is the same solution you already tried this please disable your plugins and check again, if this doesn’t help, please include an admin login and ftp access in the private content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: Sidebar will not be shown #1272957

    Hey rixi,
    Sorry for the very late reply and thanks for the links. It seems that your sidebar is showing now, have you already sorted this out?

    Best regards,
    Mike

    in reply to: Read more button after excerpts in Masonry Blog #1272955

    Hi,

    @pixopolis2222
    , sorry for the very late reply and thank you for your point, unfortunately, Victoria is not available at this time so I assume that she used the code from this thread that she linked to above, please note the reply post that included a modification.
    Victoria also linked to this post, but I don’t believe it’s the one she used, but feel free to try both.
    If this doesn’t help please open a new thread so we can assist, and include your admin login in the Private Content area, but as this is not your thread your login info will not be private if posted here.

    Best regards,
    Mike

    in reply to: Display Categories on Blog Post Overview Page #1272954

    Hey bewelltended,
    Sorry for the very late reply and thanks for the links, please add the following filter in your child theme functions.php to display the categories on a grid layout:

      add_filter('avf_postslider_show_catergories', 'avf_postslider_show_catergories_mod', 10, 1);
      function avf_postslider_show_catergories_mod($category) {
    	   $category = 'show_business'; // or show_elegant
    	  return $category;
      }

    Best regards,
    Mike

    in reply to: Custom Shop Page – Slide Show and White Space #1272949

    Hey Nik,
    Sorry for the very late reply and thanks for the links.
    1 + 3) To stretch the slideshow full-width on the shop page that you linked to, and remove the grid container top padding, please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.archive #main > .template-shop > div {
    	width: 100% !important;
    	max-width: 2500px !important;
    	padding: 0 !important;
    }
    #top.archive #main > .template-shop > div > main {
    	max-width: 1310px !important;
    	padding-top: 0 !important;
    	padding-left: 7%;
    }
    

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

    2) The category (archive) pages are created automatically and are not editable with the Advanced Layout Builder, so to add widgets to the category pages please use the widget areas at WordPress > Appearance > Widgets

    Best regards,
    Mike

    in reply to: Plugin Group #1272942

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Plugin Group #1272921

    Hi,
    Glad to hear that you found a solution for this. Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Post format – Link url is cut #1272919

    Hi,
    Glad to hear that the dev team patch is working, I will let them know. Thanks again for your patience.
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Different font – full-width slider element #1272918

    Hi,
    Thank you for the feedback, I’m glad you have this sandbox site set up and I don’t need to login, I only need to see your mega menu in action, but currently on your sandbox the mega menu is not active:
    2021-01-16_044746.jpg
    could you activate the mega menu on your sandbox so it is somewhat similar to your screenshot:
    2021-01-16_045612.jpg
    I just need to examine (see) why the “woodworking” & “metalworking” headings are still black and write some css to override it 🙂

    Best regards,
    Mike

    in reply to: Gradient Overlay on Background Image #1272916

    Hi,
    Thank you, currently you still have this css activated:

    .av-overlay-hover-deactivate .avia-image-overlay-wrap:hover .av-caption-image-overlay-bg {
        opacity: 0 !important;
    }

    this is what is removing the background color from the element on hover, with opacity. As I understand your goal, you would like a different overlay on hover, so please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #leistungen .av-overlay-hover-deactivate.bild-buttons .avia-image-overlay-wrap:hover a:after {
    	position: absolute;
        content:"";
        height:100%;
        width:100%;
        top:0;
        left:0;
        background: linear-gradient(-145deg, rgba(114, 181, 46, 0.45) 0%,rgba(33, 150, 235, 0.45) 100%);
    }

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

    Best regards,
    Mike

    in reply to: Plugin Group #1272746

    Hey Mohamad,
    Sorry for the late reply, I have not seen any similar plugins. I tested the Plugin Groups plugin and while you still need to go to the plugin page, you can then click on a “filter” link to select your “group”, this is handy because you can then use the “bulk actions” to adjust the plugins shown.
    2021-01-15_075326.jpg
    When you say it’s not working, do you mean it’s totally not working, or just not the way you were hoping?
    If it’s totally not working try disabling your other plugins and cache to see if there is a conflict from another plugin.

    Best regards,
    Mike

    in reply to: Vimeo video links don't work any more (black screen) #1272725

    Hi,
    Glad to hear that this workaround will suit your needs for now so that you can move forward on your project, I understand that it may be annoying, but unfortunately, we were not able to reproduce this so it is hard to say what is causing this.
    We are expecting a theme update around the end of January, perhaps this will help solve or point to the error. We will leave this open for your feedback after the update.

    Best regards,
    Mike

    in reply to: embed som js conde #1272717

    Hi,
    Glad to hear that you have sorted this out, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Different font – full-width slider element #1272715

    Hi,
    I checked your sandbox site again but the mega menu is not enabled so we can examine. I was expecting to see this: https://snipboard.io/3Ho8Os.jpg
    so we can change the color of the “woodworking” & “metalworking” headings, correct?

    Best regards,
    Mike

    in reply to: Demo template on mobil #1272712

    Hi,
    Glad to hear the previous solution helped, what do you want to do to the product title?
    This example will change the color to red:

    #top.single-product #main h1.product_title.entry-title {
    	color: red !important;
    }

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

    Best regards,
    Mike

    in reply to: Gradient Overlay on Background Image #1272705

    Hi,
    Thank you for the feedback and for the test page, please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #leistungen .av-overlay-hover-deactivate.bild-buttons .avia-image-overlay-wrap:hover .av-image-caption-overlay-center {
        background: unset !important;
        opacity: 1 !important;
    }
    #leistungen .av-overlay-hover-deactivate.bild-buttons .avia-image-overlay-wrap:hover:after {
    	position: absolute;
        content:"";
        height:100%;
        width:100%;
        top:0;
        left:0;
        background: linear-gradient(to bottom, rgba(114, 181, 46, 0.65) 0%,rgba(114, 181, 46, 0.65) 100%);
    }

    After applying the css, please clear your browser cache and check.
    If this doesn’t help please remove your current custom css for this element so I can try something different.

    Best regards,
    Mike

    in reply to: Post format – Link url is cut #1272655

    Hi,
    The dev team has released a patch for your issue, in the Private Content area you will find a link to the patch that belongs at /enfold/config-templatebuilder/avia-shortcodes/av-helper-masonry.php please keep a copy of your current file for fallback, after replacing the file please ensure to clear your cache, server & browser, and check.

    Best regards,
    Mike

    Hi,
    Glad to hear this helped and you are happy, your css is sound, but you could use (orientation: landscape) or (orientation: portrait) like this:

    @media only screen and (max-width: 767px) and (orientation: landscape) {
    .responsive #top #wrap_all #projekte .grid-entry.flex_column {
    width: 103% !important;
    }
    }

    this would allow you to be more specific.

    Best regards,
    Mike

    in reply to: embed som js conde #1272408

    Hi,
    Are you sure this script is complete? It seems like “requestFrame” should be declared?
    A script in the code block element should work correctly when it is within “script” tags as you have above, we often use this method. While you will see the “character” warning, the tags do work correctly in the element. For example you can try this script in a code block element and an alert will show on page load:

    <script type="text/javascript">
    document.onreadystatechange = function(){
        if(document.readyState=='loaded' || document.readyState=='complete')
            alert('Page Loaded');
    }
    </script>

    I’m not sure why your script is not working, but I suspect that it is the script and not the element, since it is not working in your functions.php either, but I’m not sure as I use jQuery more than Javascript.
    You may need to enlist the help of a freelancer to debug your script as this is outside the scope of our support.
    I would also ensure that you are not using any caching, minifying, or compression with plugins and theme options, sometimes a plugin will minify minified files, and it is this second minification that breaks some scripts.

    Best regards,
    Mike

    in reply to: Different font – full-width slider element #1272392

    Hi,
    Please try setting the color at: Enfold Theme Options > Advanced Styling > Main Menu Links, while it is not specific to the Mega Menu, it may help. If not then please set the menu on your live or sandbox site to match your Mega Menu screenshot so we can examine it.

    Best regards,
    Mike

    Hey spidercreations,
    Sorry for the very late reply, this should be achievable with the css “overflow” property, this seems to be a good article with a couple of methods, and another article.
    Adding the small arrows should also be achievable with the css and “:before” or “:after” and “content:” here is an example.
    Please give this a try, do you have a test page with this element set up the way you would want to use it?
    Another option that has been reported to work is to use the WPtouch plugin, although I have not tested this.

    Best regards,
    Mike

    in reply to: Different font – full-width slider element #1272159

    Hi,
    Sorry for the very late reply and thanks for the links. The first step is to download the font from Google Fonts and upload to your Enfold Theme Options > Import/Export > Custom Font Manager option.
    2021-01-13_063350.jpg
    2021-01-13_063622.jpg
    Then go to Enfold Theme Options > Advanced Styling and choose Slideshow titles and choose your font:
    2021-01-13_064939.jpg
    Then clear your browser cache and check, the font should be applied:
    2021-01-13_065317.jpg

    Best regards,
    Mike

    in reply to: Change "Menu" title text in Full Width Sub Menu, on mobile #1272137

    Hi,
    Sorry for the very late reply and thanks for the screenshot and link. 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: 766px) { 
    #sub_menu1 > div > a > span.av-current-placeholder:before {
    	 content: "Shop" !important;
    	 font-size: 14px;
    	 position: absolute !important;
    }
    #sub_menu1 > div > a > span.av-current-placeholder {
    	 font-size: 0 !important;
    	 margin-left: 10px !important;
    }
    }

    After applying the css, please clear your browser cache and check.
    2021-01-13_055647.jpg

    Best regards,
    Mike

Viewing 30 posts - 15,001 through 15,030 (of 34,666 total)