Forum Replies Created

Viewing 30 posts - 10,921 through 10,950 (of 66,218 total)
  • Author
    Posts
  • in reply to: Tab Section Icon Hover Color #1335825

    Hey Suze,

    Thank you for the inquiry.

    We can change the color of the title on hover but not the image. Please add the following code in the Quick CSS field and make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings.

    #top .av-section-tab-title:hover .av-outer-tab-title {
        color: red;
    }
    

    Best regards,
    Ismael

    in reply to: All pages work except one #1335824

    Hey daves1997,

    Thank you for the inquiry.

    There is a lot of blank div containers in the page, which seems to be rendered by a plugin with the acronym “ihf”. Please check the screenshot below. Do you have any idea which plugin is creating those containers?

    Best regards,
    Ismael

    in reply to: Missing ALT-Attribute in SVG-Logo #1335821

    Hey Manuel,

    Thank you for the inquiry.

    We can modify the html of the logo and add an alt attribute to it but we are not sure if svg tags actually accept alt attribute.

    add_filter( 'avf_svg_images_get_html', function($svg, $attachment_id, $url, $preserve_aspect_ratio, $class, $svg_original ) {	
        $logo_alt = get_post_meta($attachment_id, '_wp_attachment_image_alt', true);
    
        if( ! empty($logo_alt) ) {
            $svg = str_replace('<svg', '<svg alt="'. $logo_alt .'" ', $svg);
        }
    
        return $svg;
    }, 10, 6);
    

    According to this article, svg tags accepts title and desc tags.

    // http://web-accessibility.carnegiemuseums.org/code/svg/

    Best regards,
    Ismael

    in reply to: H3 style on one page different than on the other page #1335815

    Hey RaymondWillemse,

    Thank you for the inquiry.

    Where can we see the issue? Please provide links to the pages containing the text so that we can compare them. A screenshot (imgur, dropbox, postimgcc) will also help.

    Best regards,
    Ismael

    in reply to: URGENT: Post Slider Not Sizing Properly #1335811

    Hi,

    Thank you for the update.

    It resized the post slider but it made the whole desktop view morphed,

    The css rule is inside a css media query (max-width: 479px) for mobile or smaller screens, so it should not have affected the desktop view. Are you sure that you copied it correctly? Did you add other css?

    Best regards,
    Ismael

    in reply to: Pages show wrong content #1335810

    Hi,

    Sorry for the delay. The pages display correctly when the plugins are deactivated. Please check the screenshot in the private field.

    Did you set those pages to be only visible for certain members or user roles? We noticed that the Ultimate Member plugin is enabled, so it is possible that the pages are not displaying because they are exclusive to certain members of the site.

    Best regards,
    Ismael

    in reply to: Masonry excerpts when deleted show text #1335809

    Hi,

    Thank you for the update.

    We just noticed that the site still contains an older version of the theme (4.8.6.3), which doesn’t contain the filter that we used above. Please make sure to update the theme to version 4.8.8.1. The update should help fix the issue with the excerpt.

    Best regards,
    Ismael

    in reply to: WPML compatibility | Layout scrambled after translation #1335808

    Hi,

    We are not able to reproduce the issue when we created a test page and translated it using the default translation editor (see private field). The layout of the translate page is the same as the original page. We also provide a screenshot of the translation editor.

    Please make sure to edit the translated page using the translation editor only and make sure should not to change its content using the actual builder. Once the translated page has been modified using the builder, it will be out of sync with the original page, so from then on, each page will have to be edited manually.

    Best regards,
    Ismael

    in reply to: Privacy policy multilingual #1335582

    Hi,

    Thanks for the update.

    The shortcode is supposed to work in the Tab Content field. What are the active languages in the site? Please provide the site URL in the private field so that we can check it.

    Best regards,
    Ismael

    in reply to: Pricing Table Color #1335581

    Hi,

    Did you copy the code from your email? Please try to copy it directly from this forum. You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings. Also, make sure to purge the cache and do a hard refresh before checking the page. Let us know if that helps.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: WooCommerce Thumbnails not shown on mobile devices in cart #1335580

    Hi,

    Thank you for the clarification.

    Looks like the cart item or cart row requires a bit of style adjustment. Please add this css code in the Quick CSS field or in the style.css file.

    @media screen and (max-width: 767px) {
        .woocommerce .shop_table .woocommerce-cart-form__cart-item td::before {
          display: none;
        }
      
        .woocommerce-cart-form__cart-item {
          display: flex;
        }
      
        .woocommerce-cart-form__cart-item .remove {
          left: 50%;
          top: 50%;
          transform: translate(50%, 50%);
          text-indent: 9999px;
        }
      
        .responsive table.shop_table.cart .product-name {
          padding: 3px 10px 3px 3px;
          border-right: 1px solid;
        }
      }
    

    The cart item should look like this after adding the css.

    Screenshot: https://1drv.ms/u/s!AjjTfXSRbKTvwAQaC1FRsHpgeidM

    Did you install a plugin to extend the functionality of the cart? It might have affected the default layout of the cart page.

    Best regards,
    Ismael

    in reply to: How to display Avia Post NAV with same category only #1335575

    Hi,


    @baucks
    : You have to use the avf_post_nav_settings filter now.

    Example:

    add_filter("avf_post_nav_settings", function($settings) {
        $settings['same_category'] = true;
        return $settings;
    }, 10, 1);
    

    If you have more questions or if you need further assistance with this topic, please feel free to open another thread. We will close this one for now.

    Best regards,
    Ismael

    in reply to: logo as text #1335571

    Hi,

    Have you tried editing the slider itself? There should be a slider settings for the background. You can also add a new layer, set its width and height to 100%, then apply a background to it. Just make sure to place it beneath the other layers.

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    in reply to: Add scroll bar to horizontally scrolling section. #1335570

    Hey stoneroad,

    Thank you for the inquiry.

    Adding the following css code should work. Please make sure toggle or temporarily disable the Enfold > Performance > File Compression settings afterwards.

    #fullwidth-section-shopify .entry-content-wrapper {
        overflow: scroll;
    }
    

    We added a screenshot of the result in the private field.

    Best regards,
    Ismael

    in reply to: URGENT: Post Slider Not Sizing Properly #1335568

    Hi,

    Thank you for the clarification.

    Looks like the style of the postslider element has changed a bit. To revert it back to the previous layout, try to use this css code.

    @media only screen and (max-width: 479px) {
    .responsive #top #wrap_all .avia-content-slider-odd .slide-entry {
        margin-left: 0;
        clear: none;
        width: 48%;
        float: left;
        margin-right: 2%;
    }
    }
    

    Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.

    Best regards,
    Ismael

    in reply to: Keep Header “Transparent Logo” on mobile on scroll #1335565

    Hi,

    Thank you for the update.

    Yes, the css code above should hide the default logo and display the alternative logo for transparent headers. But only when the screen width is less than or equal to 989px. If you want to apply it on larger screens as well, just move css rule outside the css media query.

    .responsive#top .av_header_transparency.av_alternate_logo_active .logo a > img, .responsive #top .av_header_transparency.av_alternate_logo_active .logo a > svg {
        opacity: 0;
    }
    
    .responsive #top .av_header_transparency.av_alternate_logo_active .logo a .subtext > img {
        opacity: 1;
        display: block;
    }
    

    Best regards,
    Ismael

    in reply to: Pages show wrong content #1335562

    Hi,

    Thank you for the info.

    Can we deactivate the plugins while testing the site? If not, please clone the site to a different domain so that we can test it properly.

    What is the content of the .htaccess file? Please post the content of the file on pastebin.com or provide the FTP details in the private field so that we can check it and edit the template files when necessary.

    Best regards,
    Ismael

    in reply to: Enfold Contact Form & MailPoet integration? #1335534

    Hey Julio,

    Thank you for the inquiry.

    The default contact form in the theme is not compatible with the Mailpoet plugin out of the box, but you can use the plugins listed in their website.

    // https://www.mailpoet.com/plugins/

    We recommend the Contact Form 7 plugin for simple use cases.

    Best regards,
    Ismael

    in reply to: Masonry excerpts when deleted show text #1335531

    Hi,

    Thank you for the update.

    We added the filter again and it seems to be working correctly on our end. The excerpt of the posts in the masonry items are not displaying anymore. Please check the screenshot in the private field.

    Best regards,
    Ismael

    in reply to: Change layerslider navigation arrows position #1335530

    Hi,

    Thank you for following up.

    Can we access the site? We may have to inspect the slider transition settings in order to locate the issue. Please provide the login info in the private field.

    Best regards,
    Ismael

    in reply to: Where does Enfold Retrieve Post Links from? #1335529

    Hey Thomas,

    Thank you for the inquiry.

    Where do you select the “Link” custom post type? The theme doesn’t create a post type with that name by default. Are you using a plugin to create it? Please provide a screenshot or a link to the page so that we can inspect it.

    Best regards,
    Ismael

    in reply to: Submenu #1335528

    Hi,

    The current script is intended only for mega menu items, so it cannot be applied to normal dropdown. It is possible but it will require significant amount of modification, which we will not be able to provide here. The css modification should be enough.

    Thank you for your understanding.

    Best regards,
    Ismael

    in reply to: Pages show wrong content #1335526

    Hi,

    Thank you for the update.

    We saved the content of the Butiken page as template, deleted it completely and tried to recreate it from scratch but the issue persists. The posts are still displayed in the page as if it is the blog overview page.

    Have you tried deactivating the plugins temporarily? Did you modify the .htaccess file?

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    You can deregister the avia-hamburger-menu script or the /js/avia-snippet-hamburger-menu.js file to prevent the theme from creating the burger menu, but this might affect the default menu. To deregister an existing script, you can use this function.

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

    Best regards,
    Ismael

    in reply to: Full width layer slider on mobile devices max height #1335524

    Hi,

    Thank you for the info.

    It is actually working but you might be confusing max-height with the min-height or the height properties. Please note that the max-height property is used to control the height of an element so that it doesn’t go taller or beyond the specified value. The actual height of the slider doesn’t reach that limit or it doesn’t go taller than 480px on mobile view.

    Are you trying to keep the height of the slider to 480px even on smaller screens? Try to replace max-height property with min-height or just height.

    Best regards,
    Ismael

    in reply to: Keep Header “Transparent Logo” on mobile on scroll #1335522

    Hey kazumakitajima,

    Thank you for the inquiry.

    We may need to inspect the site first in order to provide an appropriate solution. Please post the site details in the private field.

    Did you set the page to have a transparent header? Try to use this css code to hide the default logo and display the alternate.

    @media only screen and (max-width: 989px) {
    .responsive.html_mobile_menu_tablet #top .av_header_transparency.av_alternate_logo_active .logo a > img, .responsive.html_mobile_menu_tablet #top .av_header_transparency.av_alternate_logo_active .logo a > svg {
        opacity: 0;
    }
    
    .responsive.html_mobile_menu_tablet #top .av_header_transparency.av_alternate_logo_active .logo a .subtext > img {
        opacity: 1;
        display: block;
    }
    }
    

    Best regards,
    Ismael

    in reply to: URGENT: Post Slider Not Sizing Properly #1335519

    Hi,

    Thank you for the update.

    Looks like you are using a plugin for the news page. It is not using the default Blog Posts element or posts template, which is why the posts are not resizing accordingly. What is the name of the plugin?

    This is part of the news plugin, which might give you an idea why it looks different.

    
    <div class="news-page-search-column-area">
    <div class="news-page-search-column">
            --- more html ---</div>
    </div>
    

    Best regards,
    Ismael

    in reply to: Privacy policy multilingual #1335518

    Hi,


    @cryptotradingbg-com
    : What do you mean by “text messages”? For the buttons, you have to use the css solution that we discussed above.

    Best regards,
    Ismael

    in reply to: mp4 movie im Header hat eine viel zu lange Ladezeit #1335517

    Hi,

    Thank you for the update.

    Looks like you are using the Revolution Slider on the previous site. There is a preloader option in the revolution slider, which prevents the slider from loading immediately while the video is still loading. It waits for the video to buffer before actually displaying the slider, so it looks like the video starts immediately once the slider is visibile. The preloader option is not available in the default slider. You may need to use the layer slider or the revolution slider and replace the current one.

    Best regards,
    Ismael

    in reply to: Font rendering in mobile #1335516

    Hi,

    Thank you for the update.

    Where did you use the shortcode? The actual home page looks different compare to the screenshot above. Looks like you have adjusted the content. Please provide a screenshot of the issue again or create a test page so that we can check the issue properly.

    Best regards,
    Ismael

Viewing 30 posts - 10,921 through 10,950 (of 66,218 total)