Forum Replies Created

Viewing 30 posts - 391 through 420 (of 35,240 total)
  • Author
    Posts
  • in reply to: How to Put a Custom Element Button into a Sidebar Widget #1490031

    Hi,
    The login that you posted is not working for me, please check the password.
    The reason that the button in the sidebar doesn’t have white text is due to this custom css in your child theme:

    .sidebar a, .sidebar a > strong {
        color: #2997ab ! important;
    }

    note the class “sidebar”, to correct  you could remove this css, or add this css:

    .sidebar a.avia-button {
        color: #fff ! important;
    }

    After making your changes please clear your browser cache and check.

    Best regards,
    Mike

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

    Hi,
    I was able to add three 1/3 columns without any issues, how can we reproduce the error?
    three_one-third_columns

    Best regards,
    Mike

    Hey atx_m,
    For the page that you linked to try this css:

    #top.single-post .big-preview {
    	display: none;
    }

    Then clear your browser cache and check.

    Best regards,
    Mike

    Hey classywebsites,
    To add a bold font weight to the mobile menu you need to choose the Menu Links in overlay/slide out option in the Advanced Styling, I did this for you and it now works.
    As for the mobile menu, please note that your desktop menu has too many items to show in a single line and not be under your logo until 1215px, so I recommend adding this css:

    @media only screen and (min-width: 768px) and (max-width: 1215px) {
        .responsive #top .av_mobile_menu_tablet .av-main-nav .menu-item-avia-special {
            display: block;
        }
        .responsive #top .av_mobile_menu_tablet .av-main-nav .menu-item {
            display: none;
        }
    }
    

    I added it for you in your WordPress > Customize > Additional CSS and tested desktop, tablet and mobile, please clear your browser cache and check.

    Best regards,
    Mike

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

    Hi,
    Glad that we were able to help you sort this out. Thanks for using Enfold.

    Best regards,
    Mike

    in reply to: table text align #1489860

    Hi,
    Glad that we could help.

    Best regards,
    Mike

    in reply to: content disappears, cookie consent not working properly #1489859

    Hi,
    The error SyntaxError that Ismael saw was in your GA Google Analytics plugin, disabling solves.
    But I don’t see any missing content & the mobile menu works for me, so I’m not sure of the error.
    I enabled the GA Google Analytics plugin again.

    Best regards,
    Mike

    in reply to: table text align #1489857

    Hi,
    Try this css:

    .avia-table td:nth-child(n+2),
    .avia-table .avia-heading-row th:nth-child(n+2) {
    	    text-align: right;
    }

    Best regards,
    Mike

    Hi,
    When I check your test page the “opening frame” is relly the background image so use this css to hide:

    #top.page-id-11644 #av_section_1 {
            background-image: none;
    }

    note the page ID in the css, remove or adjust for your working page.
    Then leave Ismael’s script to stop the loop and add this script to end on the last frame/second, your video is 29s so the script ends on 28s. Adjust for future videos and adjust the page ID.
    Add this to your child theme functions.php:

    function pause_video_on_last_sec() { ?>
      <script>
    if (document.body.classList.contains('page-id-11644')) {
        var x = document.getElementsByClassName("avia_video");
        var i;
        for (i = 0; i < x.length; i++) {
            x[i].addEventListener("timeupdate", function(){
                if(this.currentTime >= 28) {
                    this.pause();
                }
            });
        }
    }
    </script>
      <?php
    }
    add_action( 'wp_footer', 'pause_video_on_last_sec', 99 );

    Best regards,
    Mike

    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

Viewing 30 posts - 391 through 420 (of 35,240 total)