Forum Replies Created

Viewing 30 posts - 61 through 90 (of 34,901 total)
  • Author
    Posts
  • in reply to: events calendar add to calendar dropdown getting cut off #1489855

    Hi,
    Glad that Ismael could help you on the path to sorting this out.

    Best regards,
    Mike

    Hi,
    Glad that we could help.

    Best regards,
    Mike

    in reply to: Top Color Section on home page, is just white space #1489853

    Hi,
    This looks like a caching issue, when logged in the homepage hero image shows, and the theme css is served, when logged out the cache css is served: /wp-content/cache/wpfc-minified/q6rb0fb4/hwyv4.css without the css for the hero image.
    Your test page is not cached by the plugin and serves the theme css when logged out, thus the image shows.
    Your cache plugin is probably set to not show a cache to mobile devices, because the theme css is also showing, along with the image.

    Best regards,
    Mike

    Hi,
    If you are looking to remove the shop sort-by & products per page drop downs:
    remove_shop_sort-by_and_products_per_page_drop_downs
    add this function to your child theme functions.php file:

    function remove_avia_woocommerce_frontend_search_params() {
        remove_action( 'woocommerce_before_shop_loop', 'avia_woocommerce_frontend_search_params', 20 );
    }
    add_action( 'wp_loaded', 'remove_avia_woocommerce_frontend_search_params' );

    removed_shop_sort-by_and_products_per_page_drop_downs

    Best regards,
    Mike

    in reply to: Installing from Parallax Demo doesn`t work #1489849

    Hi,
    Glad that we could help.

    Best regards,
    Mike

    in reply to: Installing from Parallax Demo doesn`t work #1489846

    Hi,
    Your “example page” is set as the front page, and your front page is set as the “blog page”:
    current_theme_settings
    I adjusted your theme settings for you:
    new_theme_settings
    I also see that your front page also is:
    Inactive Maintenance Mode Page
    Inactive Custom 404 Page
    Inactive Custom Footer Page:
    front_page_inactive_messages
    I did not think that you want these messages, so I adjusted them.
    Please clear your cache and check your site.

    Best regards,
    Mike

    in reply to: Where To Edit Header Element #1489836

    Hi,
    Try looking in your child theme functions.php file, I believe that you are using this custom script to add it.

    Best regards,
    Mike

    in reply to: logo is too large on mobile until I scroll #1489835

    Hi,
    Glad that we could help.

    Best regards,
    Mike

    Hi,
    Makes sense 

    Best regards,
    Mike

    Hi,

    @Guenni007
    I also believe that carmentvaalba is using the post slider.

    @carmentvaalba
    you may get an error if you add two filters with my_avf_customize_heading_settings, so try this for the masonry:

    function masonry_customize_heading_settings( array $args, $context, array $extra_args = array() ){
    if( $context == 'avia_masonry' ){
    $args['heading'] = 'h4';
    }
    return $args;
    }
    add_filter( 'avf_customize_heading_settings', 'masonry_customize_heading_settings', 10, 3 );

    and this for the post slider:

    function post_slider_customize_heading_settings( array $args, $context, array $extra_args = array() ) {
        if( $context == 'avia_post_slider' ) {
            $args['heading'] = 'h4';
        }
        return $args;
    }
    add_filter( 'avf_customize_heading_settings', 'post_slider_customize_heading_settings', 10, 3 ); 

    and if you do ever need one for the content slider, you could try:

    function content_slider_customize_heading_settings( array $args, $context, array $extra_args = array() ) {
        if( $context == 'avia_content_slider' ) {
            $args['heading'] = 'h4';
        }
        return $args;
    }
    add_filter( 'avf_customize_heading_settings', 'content_slider_customize_heading_settings', 10, 3 );  

    and for the icon box:

    function icon_box_customize_heading_settings( array $args, $context, array $extra_args = array() ) {
        if( $context == 'avia_sc_icon_box' ) {
            $args['heading'] = 'h4';	
        }
        return $args;
    }
    add_filter( 'avf_customize_heading_settings', 'icon_box_customize_heading_settings', 10, 3 );

    Best regards,
    Mike

    Hey carmen,
    Try this filter:

    function my_avf_customize_heading_settings( array $args, $context, array $extra_args = array() ) {
        if( $context == 'avia_post_slider' ) {
            $args['heading'] = 'h4';
        }
        return $args;
    }
    add_filter( 'avf_customize_heading_settings', 'my_avf_customize_heading_settings', 10, 3 ); 

    Best regards,
    Mike

    in reply to: Top Bar – Seperator #1489735

    Hey Diana,
    Try this css:

    #top .social_bookmarks li {
        border-right-style: none;
    }

    After applying it please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: All paddings in the columns are gone #1489734

    Hey rixi,
    The 1/2 column padding has an error, 20 without the px
    it should be 20px, please check.
    padding

    Best regards,
    Mike

    in reply to: Transparent Header on Mobile #1489733

    Hi,
    Glad that we could help.

    Best regards,
    Mike

    in reply to: logo is too large on mobile until I scroll #1489703

    Hey Tina,
    Try this css:

    @media only screen and (max-width: 767.5px) {
    .responsive #top #header_main .logo img {
        height: 80px !important;
        max-height: 80px !important;
    }
    }

    After applying please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Upgrading to PHP 8.x error #1489702

    Hey John,
    This is something your web host needs to look at.

    Best regards,
    Mike

    in reply to: Transparent Header on Mobile #1489701

    Hey jaimemerz,
    For mobile, this css will make your buger menu white before scroll and black when the menu opens, then gray after scroll and gray when open. It will also show your white logo befor scroll, and the black one after scroll. It will also change the special heading line height so it is not behind the burger menu & logo.

    @media only screen and (max-width: 479px) {
        #top #wrap_all .av-special-heading.av-mayes0t2-0bf965b2b1bd5112e17bb591eb31930e .av-special-heading-tag {
            line-height: 35px;
        }
        #top .av_header_transparency .av-hamburger-inner,#top .av_header_transparency .av-hamburger-inner::before, #top .av_header_transparency .av-hamburger-inner::after {
      background-color: #fff !important; 
      }
      #top .av_header_transparency .is-active .av-hamburger-inner,#top .av_header_transparency .is-active .av-hamburger-inner::before, #top .av_header_transparency .is-active .av-hamburger-inner::after {
      background-color: #000 !important; 
      }
      .responsive.html_mobile_menu_tablet #top .av_header_transparency .logo img.alternate {
      	display: block !important;
      }
      .responsive.html_mobile_menu_tablet #top .av_header_transparency.av_alternate_logo_active .logo a > img {
      	opacity: 0 !important;
      }
    }

    After applying the css, clear your browser cache & check.

    Best regards,
    Mike

    in reply to: Forcing Columns to Stay the Same Size #1489700

    Hey MikeTandySwag,
    When I try they all stay 1/3:
    Screenshot from 2025-09-30 21-01-06
    Screenshot from 2025-09-30 21-02-38
    Perhaps a login to your site would help us examine it better.

    Best regards,
    Mike

    in reply to: License Key #1489627

    Hi,
    Your welcome, and thanks for using Enfold.

    Best regards,
    Mike

    in reply to: a11y report #1489626

    Hi,
    Please note that the “av_textblock_section” is a section that wraps the “avia_textblock” div that holds the actual text content. Several other elements also wrap the content div in a section, I’m not sure what effect changing this text section into a div would have, but you could try this javascript in your child theme function.php

    function custom_script() { ?>
      <script>
    document.addEventListener("DOMContentLoaded", function () {
      document.querySelectorAll('section.av_textblock_section').forEach(function (section) {
        const textblock = section.querySelector('.avia_textblock');
        if (textblock && textblock.parentElement === section) {
          const newDiv = document.createElement('div');
          for (let attr of section.attributes) {
            newDiv.setAttribute(attr.name, attr.value);
          }
          while (section.firstChild) {
            newDiv.appendChild(section.firstChild);
          }
          section.parentNode.replaceChild(newDiv, section);
        }
      });
    });
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_script', 99 );

    If you would like to request this feature the Dev Team has opened a new Github Feature Request for users to place requests and follow them as the Dev Team reviews them.

    Best regards,
    Mike

    in reply to: License Key #1489624

    Hi,
    Please note that your page is in maintenance mode so we can not see it without logging in, but based on the photography demo, the two buttons “view portfolio and get in touch” are in the slider:
    slider_buttons
    To edit the button text, first click the slider in the backend to edit, and then click the slide to edit:
    edit_slider
    then go to the Advanced tab Link Settings and edit the Button Label:
    edit_slider_buttons
    Please note that while you have a valid license for the theme, which is for life, support on the forum is different, when you purchase the theme, you also get six months of support with your purchase code, but your support expired 2016-03-02 so for further support please try going to your Theme Forest account and renew your support and then register your new support purchase code and log in to the support forum and open a new thread. Please note that using the contact form is not appropriate for support questions.

    Best regards,
    Mike

    in reply to: Blog showing a category that it shouldn’t be #1489623

    Hi,
    The Read More tag will only work in the WP editor, not in the ALB, the ALB was intended for pages.
    To add a slider to the top of a WP editor post, in the Block Editor, click on the “Classic” block above your post:
    classic_block
    then click on the Shortcode Wand Tool to show the elements and choose the slider:
    wand_tool
    you will be prompted with the element builder, when you save you will see the shortcode:
    wand_shortcode
    Then save the post, on the frontend the slider will show below the featured image:
    shortcode_slider_frontend
    and on the blog page with the Blog Posts element:
    shortcode_slider_frontend_blog_page

    Best regards,
    Mike

    in reply to: menu not linked child pages should be marked in the menu #1489613

    Hi,
    Please provide a link to your page so we can examine.

    Best regards,
    Mike

    in reply to: Elements not loadng on page load – mobile devices #1489601

    Hi,
    Glad to hear that you have isolated the behavior, we will leave this thread open until you let us know.

    Best regards,
    Mike

    in reply to: Delete Account #1489600

    Hey Jens,
    Done.

    Best regards,
    Mike

    in reply to: Dark Mode question #1489543

    Hi,
    Thanks, it seems to work well :)

    Best regards,
    Mike

    in reply to: Mailchimp block – Birthday in date format #1489542

    Hi,
    Yes, I used the mailchimp API in the theme settings under newsletter and then used the mailchimp element in the ALB.
    In the mailchimp account I used the date field.

    Best regards,
    Mike

    in reply to: Dark Mode question #1489508

    Hi,
    Thanks for shairing your site @dondela, it looks good, did you use Guenni007’s snippet, or is this the plugin out-of-the-box?

    Best regards,
    Mike

    in reply to: Center Align Images in Sidebar #1489507

    Hey Valerie,
    Try this CSS in your Enfold > Quick CSS:

    .inner_sidebar .widget_media_image {
    	text-align: center;
    }

    After adding, clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Mailchimp block – Birthday in date format #1489506

    Hey Peter,
    You would need to change this in your mailchimp account, the theme doesn’t control the format of mailchimp forms, it only adds them to the page.
    mailchimp_birthday_field
    mailchimp_birthday_field_frontend

    Best regards,
    Mike

Viewing 30 posts - 61 through 90 (of 34,901 total)