Forum Replies Created

Viewing 30 posts - 21,901 through 21,930 (of 67,485 total)
  • Author
    Posts
  • in reply to: IE issues #1129837

    Hi,

    Thank you for the update.

    Which version of IE are you using? We can’t reproduce the issue on IE 11, MS Edge, MS Edge (IE 10 emulation). Have you tried removing the cache or testing it on another computer?

    Best regards,
    Ismael

    in reply to: Change logo on specific pages #1129835

    Hi,

    Thank you for the update.

    You need to use the “is_single” conditional function instead of “is_page” for portfolio items.

    // https://developer.wordpress.org/reference/functions/is_single/

    Best regards,
    Ismael

    in reply to: Tab Section Icon below Tabs instead above Tabs #1129834

    Hi,

    Thank you for the update.

    Did you set the Settings > General > Site Language to “Deutsch (Sie)”? Please try to set it to Deutsch. Or install the following plugin, search for the “Display Tabs above content” and “Display Tabs below content” text, then apply the translation manually.

    // https://wordpress.org/plugins/loco-translate/

    Best regards,
    Ismael

    in reply to: Link is not colored in accordion #1129831

    Hi,

    Thank you for the update.

    You can adjust the offset or position where the scroll lands. Edit the config-templatebuilder > aviashortcodes > tabs > tabs.js file. Look for this code around line 112:

    scoll_target = el_offset - 50 - parseInt($('html').css('margin-top'),10);
    

    Replace it with:

    scoll_target = el_offset - parseInt($('html').css('margin-top'),10);
    

    Best regards,
    Ismael

    Hi,

    Thank you for the update. Glad that you’ve found a solution.

    Try to wrap it inside a css media query so that it doesn’t affect the mobile view.

    @media only screen and (min-width: 989px) {
      /* Add your Desktop Styles here */
      .page-id-37 #av_section_1 .flex_column.av_three_fifth {
        position: relative !important;
        top: 25% !important;
        left: 10% !important;
        transform: translate(-25%, -50%) !important;
      }
    }

    Best regards,
    Ismael

    in reply to: Code Block broke my Website #1129826

    Hi,

    Thank you for the update.

    It works fine when we remove the Blog Posts element. Did you add any custom html to the posts?

    Best regards,
    Ismael

    Hi,

    The problem occurs before any modifications, and it will work fine after modifying the link options.

    Does it only happen when you set the link the first time? If that’s the case, then you can just re-edit the link.

    Sorry. I can’t reproduce the issue on my end. I’ll ask the rest of the team to check it.

    Best regards,
    Ismael

    in reply to: footer page in other language with polylang #1129820

    Hi,

    That’s the action priority and the number of variables exposed in the callback function “ava_before_page_in_footer_compile_polylang_mod”. Check the parameters in the documentation.

    // https://developer.wordpress.org/reference/functions/add_action/

    Thanks for the update.

    Best regards,
    Ismael

    in reply to: Custom font for all articles not working #1129819

    Hi,

    In this case, is it possible (withing the same CSS code) telling that:

    Yes, you can include all of that in the style.css file. Let us know if you need further assistance.

    Best regards,
    Ismael

    in reply to: Unable to Indent Bullet Points #1129818

    Hi,

    Yes, it’s quite odd. It seems to happen whenever the text block is moved. It’s fine when the text block remains in the same position. We have reported the issue to the team.

    Thank you for the update.

    Best regards,
    Ismael

    in reply to: Play button overlay on video preview image goes tiny #1129816

    Hi,

    Thank you for the update.

    This should not have affected the font. Please make sure that you copied the css declaration correctly. Check if the closing curly brace exists.

    Best regard
    Ismael

    Hi,

    Thank you for the update.

    1.) You can use this snippet to do a redirect after the checkout. Add it in the functions.php file and replace the URL.

    add_action( 'template_redirect', 'woocommerce_redirect_after_checkout' );
    
    function woocommerce_redirect_after_checkout() {
    	global $wp;
    
    	if ( is_checkout() && ! empty( $wp->query_vars['order-received'] ) ) {
    		$redirect_url = 'https://yoursite/url-to-redirect-after-checkout';
    		wp_redirect($redirect_url );
    		exit;
    	}
    }

    2.) You have to use Google Analytics, not Adwords. First, you have to create an event goal in your Google Analytics dashboard as described in the previous article. After setting that up, you need to use the “ga” or “gtag” function to trigger the event on page load.

    // https://developers.google.com/analytics/devguides/collection/gtagjs/events

    There are a lot of tutorials out there that should help you set this up.

    // https://www.monsterinsights.com/how-to-create-a-goal-in-google-analytics-to-track-conversions/
    // https://webris.org/creating-goals-out-of-events-in-google-analytics/

    This is beyond the scope of support, unfortunately, so we won’t be able to help you any further.

    Best regards,
    Ismael

    in reply to: Sudden Layout Issues #1129814

    Hi,

    Thank you for the update.

    We totally forgot about that. Sorry. You can use this css code to shorten the background.

    .caption_framed .slideshow_caption .avia-caption-content {
        display: table-cell;
    }
    

    Best regards,
    Ismael

    in reply to: trouble with the_content(); and Advanced Layout Editor #1129813

    Hi,

    Thank you for the update.

    We set the “exec_sc_only” filter to always return true, which seems to help. However, I’m not sure if this is going to affect anything else. Just to make sure try to add a conditional function to the filter so that it is only executed on the page with the search filter.

    // https://developer.wordpress.org/reference/functions/is_page/

    Best regards,
    Ismael

    in reply to: Changing Header Color for only one Page #1129811

    Hi,

    Thank you for the update.

    The selector or class is a bit different for portfolio items.

    .responsive .single-portfolio.postid-338 #header_meta {
          background-color: rgba(0, 158, 83, 0.7) !important;
    }

    Take note of the “.postid-338” selector.

    Best regards,
    Ismael

    in reply to: Bad search results #1129453

    Hi,

    Thank you for the update.

    Did you try the snippet above? You can add it in the functions.php file. It should increase the number of items in the AJAX search or search suggestions.

    Best regards,
    Ismael

    in reply to: Header Background not shown in Mobile-Version #1129452

    Hi,

    You can include this code inside the css media query that we created recently.

    #socket .menu {
        text-align: center;
    }
    
    #socket .sub_menu_socket li {
        float: none;
        display: inline-block;
    }

    Thank you for the update.

    Best regards,
    Ismael

    in reply to: Maintenance Mode & IP Address support? #1129449

    Hi,

    thanks for replying, but, i don’t understand… where is the area to enter whitelisted IP addresses?

    That option is not available, unfortunately. We don’t really understand why you need that. You seem to be overly complicating your development process.

    Thank you for the update.

    Best regards,
    Ismael

    in reply to: Play button overlay on video preview image goes tiny #1129447

    Hi,

    Thank you for the update.

    This css code should adjust the style of the play icon.

    #top .avia-video .av-click-to-play-overlay .avia_playpause_icon {
        opacity: 1;
        color: #ffffff;
        text-align: center;
        transform: translate(-50%, -50%);
        background-color: rgba(0, 0, 0, 0.5);
        padding: 17px 27px 7px 27px;
    }

    Best regards,
    Ismael

    in reply to: lightbox popup links not working when column link #1129445

    Hi,

    This is not possible, unfortunately. What you can do is add an actual link with the iframe parameter, then set its visibility to hidden or the background to transparent.

    Thank you for the update.

    Best regards,
    Ismael

    in reply to: Diagonal section border makes button unclickable #1129444

    Hi,

    It is working properly. You don’t need to add this modification.

    .av-section-color-overlay + .container + .border-extra-diagonal {
       z-index: 0;
    }
    

    The z-index of the overlay is already set to 1. Setting the container’s z-index to 2 should be enough.

    Best regards,
    Ismael

    in reply to: ACF field group post type in Blog posts elements #1129442

    Hi,

    Thank you for the update.

    We adjusted the code a bit — replaced “avia_blog_post_query” with “avia_post_slide_query” because the layout is set to grid. It is working properly now.

    Best regards,
    Ismael

    in reply to: Certain elements not loading in Internet Explorer #1129439

    Hi!

    UPDATE: The upload is not working. Are you sure that the account has the correct permissions? We can access the folder but it fails when we upload the files.

    UPDATE: It works now. We’ll let you know once it’s done.

    UPDATE: You can now activate the beta version. Let us know if it changes anything.

    Cheers!
    Ismael

    in reply to: Custom font for all articles not working #1129437

    Hi,

    Thank you for the update.

    Instead of adding the modification in every language, you can move it in the child theme’s style.css file. This way you won’t have to maintain 3 different source code.

    Anyway, we added the following code in the Quick CSS field of each language and it didn’t disappear.

    strong, b
    {
    font-size: 18px;
    }

    You’ll find it at the very bottom right above the comment.

    /* WHAT ELSE ? */
    

    Best regards,
    Ismael

    in reply to: Certain elements not loading in Internet Explorer #1129431

    Hi,

    Thank you for the update.

    We are now uploading the beta version of the theme in your server. We’ll let you know once it’s done. The folder is named “enfold_latest”.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    This should set the logo image to cover the header container and center align the main menu.

    @media only screen and (max-width: 767px) {
      .responsive #top #wrap_all .av-logo-container {
          width: 100%;
          max-width: 100%;
      }
      
      .responsive .logo a {
          background: url(https://dev.latitude65.ca/wp-content/uploads/2019/08/Latitude65logo.svg) no-repeat;
          background-size: cover;
          background-position: center center;
      }
      
      .responsive .logo img {
          display: none !important;
      }
      
      .responsive #top #wrap_all .main_menu {
        left: auto;
        width: 100%;
        right: auto;
      }
    
      .responsive #top .av-logo-container .avia-menu {
        margin: 0 auto;
        float: none;
      }
    
      .responsive #top .av-main-nav .menu-item-avia-special {
        display: block;
        left: 50%;
        transform: translateX(-50%);
      }
    }

    Please don’t forget to toggle the Performance > File Compression settings after adding the modification. Or better yet, just disable it and the rest of the cache plugins temporarily while you’re building the site.

    Best regards,
    Ismael

    in reply to: Change layout category widget in a page #1129418

    Hi,

    Thank you for the update.

    The css code doesn’t work for the other languages because the translated blog pages have a different ID. You have to replace the following selector with the actual ID of the translated blog pages.

    #top.page-id-86
    

    This is the ID of the EN version:

    #top.page-id-4621
    

    And the Spanish:

    #top.page-id-4622
    

    Best regards,
    Ismael

    in reply to: Button-Zeile: Link funktioniert nicht #1129417

    Hey jp,

    Vielen Dank, dass Sie Enfold verwenden.

    Wo haben Sie der Button-Zeile Element hinzugefügt? Wir konnen es nicht auf der Seite finden.

    Best regards,
    Ismael

    in reply to: Post disappeared #1129416

    Hi,

    That’s a bit confusing. Are you telling us that you just missed something? Is it OK now?

    Thank you for the update.

    Best regards,
    Ismael

    in reply to: Unable to Indent Bullet Points #1129414

    Hey!

    UPDATE: Tab indent actually works or is possible when creating a bulleted list. Sorry about that. I was trying to do a tab indent on a normal paragraph. We’ll look into this further and let you know if we find anything.

    Best regards,
    Ismael

Viewing 30 posts - 21,901 through 21,930 (of 67,485 total)