Forum Replies Created

Viewing 30 posts - 631 through 660 (of 66,027 total)
  • Author
    Posts
  • in reply to: Color section does not display background images #1481417

    Hi,

    Thank you for the inquiry.

    The site contains an older version (6.0.9) of the theme. Please make sure to update the theme to version 7.0.1, then temporarily disable the Enfold > Performance > File Compression settings. Let us know if the issue persists.

    Best regards,
    Ismael

    in reply to: Hcaptcha #1481416

    Hey cktanju,

    Thank you for the inquiry.

    The hcaptcha plugin is not integrated in the theme, unfortunately. You may need to use a different contact form plugin such as Contact Form 7 or WPForms and install the necessary extension to activate hcaptcha.

    Best regards,
    Ismael

    in reply to: Hide Player Control when video is paused #1481415

    Hi,

    What happens when you add this css?

    #top .av-video-slide, #top .av-video-slide .avia-slide-wrap {
        pointer-events: none;
    }

    Best regards,
    Ismael

    Hey kalla77,

    Thank you for the inquiry.

    It’s possible that the product images have different aspect ratios. To maintain a consistent grid, make sure to upload images with the same size and aspect ratio.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    You can disable the Blog Post Category in Enfold > Blog Layout > Blog Meta Elements to hide the post categories. If you’re using the ALB for the post, make sure to manually define the excerpt in the Excerpt field, otherwise, it won’t display any excerpt.

    Best regards,
    Ismael

    in reply to: Product Page (woocommerce layout) #1481412

    Hi,

    Glad it’s working! For the breadcrumb, try to add this code in the functions.php file:

    function avia_breadcrumbs_trail_mod($trail)
    {
        if ( is_product() || is_product_category() ) {
            $trail[1] = '<a href="https://shop.akhurst.com/" title="Product Page" rel="">Home</a>';
        }
        return $trail;
    }
    add_filter('avia_breadcrumbs_trail', 'avia_breadcrumbs_trail_mod', 50, 1);

    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: Style Mobile Mega Menu #1481411

    Hi,

    One of the comment lines in the Quick CSS field was not closed properly.

    /* --- Ensure SKU & Categories on Product Page Are Left
    

    Best regards,
    Ismael

    in reply to: Website not updating – using Enfold theme #1481410

    Hi,

    We tried logging in using the credentials provided above, but the username doesn’t exist. Please check the login info or provide another account. For the screenshot, you can use Imgur or Dropbox.

    Best regards,
    Ismael

    in reply to: Change button size in top bar #1481409

    Hi,

    To adjust the vertical alignment of the submenu in the top bar, please add this css code:

    #header_meta .sub_menu {
        top: 15px;
    }

    Best regards,
    Ismael

    in reply to: Disabling Fade Animations on Elements with Sliders #1481358

    Hi,

    You’re welcome! If you have more questions, please feel free to open another thread. Thank you for your patience and have a nice day.

    Best regards,
    Ismael

    in reply to: Product Page (woocommerce layout) #1481357

    Hi,

    Thank you for the update. You can add this css code to move the categories to the next line:

    #top.single-product .main_color .product_meta span.sku_wrapper {
        clear: both;
        display: block;
    }

    Best regards,
    Ismael

    Hey kalla77,

    Thank you for the inquiry.

    Add an image and an audio element, apply the ID “playImage” to the image element and “audioClip” to the embedded audio element, then add this script to trigger playback when the image is clicked.

    add_action( 'wp_footer', 'av_image_audio_script' );
    function av_image_audio_script() {
        ?>
        <script>
          document.addEventListener("DOMContentLoaded", function () {
            const image = document.getElementById("playImage");
            const audio = document.getElementById("audioClip");
    
            if (image && audio) {
              image.addEventListener("click", function () {
                audio.play();
              });
            }
          });
        </script>
        <?php
    }
    

    If you can create a test page, we’ll try to check it further.

    Best regards,
    Ismael

    in reply to: Using custom loop-index.php template with ALB #1481355
    in reply to: Email Address Encoder #1481354

    Hey Michael F,

    Thank you for the inquiry.

    This thread might help: https://kriesi.at/support/topic/email-protection-with-enfold/

    Best regards,
    Ismael

    in reply to: Hide Player Control when video is paused #1481353

    Hey navindesigns,

    Thank you for the inquiry.

    You can add this css code to disable the default video click overlay.

    .av-hide-video-controls .av-click-overlay {
        pointer-events: none;
    }

    Best regards,
    Ismael

    Hey Alan,

    Thank you for the inquiry.

    Have you tried using the Product Grid element? You can also use the Blog Posts element with the Blog Style set to Grid Layout, but it will require some adjustments to display elements such as the Add to Cart button. Let us know if you need more info.

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Change button size in top bar #1481350

    Hi,

    Yes, that should be possible. Please include this css code:

    #top .phone-info .avia-button .avia_iconbox_title {
        font-size: 12px;
    }

    Best regards,
    Ismael

    in reply to: Disabling Fade Animations on Elements with Sliders #1481348

    Hi,

    Thank you for the update. Unfortunately, it’s not possible to disable the fade effect for the testimonial slider because this would also disable the slide transition. You may need to replace it with a content slider instead.

    Best regards,
    Ismael

    in reply to: GALLERY OUTLINE and #1481347

    Hi,

    Thank you for the info. Did you change the login URL? We tried using the default login or admin URL but they just redirect to maintenance page. Please include the custom login info in the private field.

    Best regards,
    Ismael

    Hey keeslamper,

    Thank you for the inquiry.

    How do you retrieve the $woning->fotos? It’s not shown in the provided code. The site is also in maintenance mode, so we’re not able to check the galleries. Please provide the login info in the private field and further elaborate on how the gallery images are being retrieved.

    For this kind of modification, we also recommend hiring a freelance developer or try to contact our partner, Codeable.

    https://kriesi.at/contact/customization

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    You will need to switch to the Advanced Layout Builder to use the Product Grid element on the product page, or use the element’s shortcode in one of the template hooks.

    Example:

    add_action( 'woocommerce_after_single_product_tabs', 'av_woocommerce_after_single_product_tabs_mod', 100 );
    
    function av_woocommerce_after_single_product_tabs_mod() {
        echo do_shortcode("[av_productgrid select_type='' categories='' link='' term_rel='' wc_prod_visible='' wc_prod_hidden='' wc_prod_featured='' wc_prod_sale='' wc_prod_additional_filter='' sort='dropdown' prod_order='' offset='0' page_element_filter='' columns='3' image_size='shop_catalog' items='9' paginate='yes' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' alb_description='' id='' custom_class='' template_class='' element_template='' one_element_template='' show_locked_options_fakeArg='' av_uid='' sc_version='1.0']
    ");
    }
    

    For this type of modification, we recommend hiring a freelance developer or contact Codeable.

    https://kriesi.at/contact/customization

    Best regards,
    Ismael

    in reply to: GALLERY OUTLINE and #1481287

    Hey Sandra,

    Thank you for the inquiry.

    Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot. The site is also on maintenance mode. Please provide the login info in the private field.

    Best regards,
    Ismael

    in reply to: Mobile is not responsive. #1481286

    Hey wesdorman,

    Thank you for the inquiry.

    There might be a slight difference between the desktop and mobile views due to their aspect ratios, especially with the background image. For the font size, make sure to define a specific size for smaller screens. We tried logging into the site, but it’s asking for .htaccess authentication. Please provide the login info in the private field.

    Best regards,
    Ismael

    in reply to: Theme fonts not updating #1481285

    Hi,

    Great! Glad to know that the issue has been resolved. Please feel free to open another thread if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: 404 Not Found #1481284

    Hey djtroymichael,

    Thank you for the inquiry.

    Would you mind providing a screenshot of the notifications and the list of pages showing 404 errors? Also, please go to Enfold > Theme Options > Custom Error 404 Page and make sure that no page is currently selected.

    Best regards,
    Ismael

    in reply to: Booking System shortcode #1481176

    Hi,

    Glad to know it’s working correctly now. As for the button, it seems to be translated correctly on our end.

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Show burger menu to the left of the centered logo #1481175

    Hi,

    We adjusted the css code a bit. Please try it again.

    Best regards,
    Ismael

    in reply to: Disabling Fade Animations on Elements with Sliders #1481174

    Hi,

    Thank you for the update.

    To disable the animation of the slider caption, please include this css code:

    .avia_transform .av_slideshow_full .active-slide .avia-caption-title,
    .avia_transform .av_fullscreen .active-slide .avia-caption-title,
    .avia_transform .av_slideshow_full .active-slide .avia-caption-content,
    .avia_transform .av_fullscreen .active-slide .avia-caption-content {
      visibility: visible;
      animation: none;
    }

    Best regards,
    Ismael

    in reply to: button not responding #1481173

    Hey satucker,

    Thank you for the inquiry.

    Looks like you have already managed to make this work. If not, please edit the button, set the Content > Link Settings or File Download > Button Type to File Download Button, and then Select a File for Download. Let us know how it goes.

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Parts of the webpage are not loading #1481172

    Hi,

    That is the default behavior of the pagination, which is why it’s recommended to place all post elements at the very top of the page. If you need the document to scroll to the appropriate section on load, you can try this modification.

    https://kriesi.at/support/topic/pagination-to-open-at-the-same-anchor-point-and-not-at-the-beginning-of-the-page/#post-1476867

    Best regards,
    Ismael

Viewing 30 posts - 631 through 660 (of 66,027 total)