Forum Replies Created

Viewing 30 posts - 15,001 through 15,030 (of 34,221 total)
  • Author
    Posts
  • in reply to: Element visibility settings do not work #1256360

    Hi,
    Thanks for your feedback, I tested selecting all of the screen options on a color section on a new install and it seems to work correctly, by not showing at all.
    Have you tried disabling your other plugins to check for a conflict?
    What is your goal for this element if you want to hide it for all screens?

    Best regards,
    Mike

    in reply to: Preloader not in lightbox page #1256347

    Hi,
    Sorry for the late reply and thanks for the login, on your /forumup/ page I added a code block element with this code to hide the preloader for the one page:

    <script>
    (function($){
      $(document).ready(function() {
        $('.av-siteloader-wrap').css({"display":"none"});
      });
    })(jQuery);
    </script>

    Now when the lightbox for that page opens the preloader should be hidden.
    Please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Glad to hear that helped, I didn’t create any pages, I only examined the ones I found. I did create a “customer” user so I could see the user experience which is different, I assume, than a admin experience.

    Best regards,
    Mike

    in reply to: easy slider full width – no scroll down button? #1256060

    Hi,
    I tested your code above on my localhost and it works correctly, the icon is gray, please link to your page so we can examine.

    Best regards,
    Mike

    Hi,
    Yes, I did run the lighthouse test, I meant that often people hide these on mobile.
    Anyways, how would you like this tweaked, do you want the [aria-hidden=”true”] to be charged to [aria-hidden=”false”] for these? If so you will probably also want a “name” or “title” attribute for these, what would you like them called?
    The lighthouse test doesn’t offer any guidance on this.

    Best regards,
    Mike

    Hi,
    Glad to hear you sorted it out, sorry I should have explained it better.
    Shall we close this thread then?

    Best regards,
    Mike

    in reply to: Remove featured image single post page #1256044

    Hi,
    Please check that the code you pasted does not have “curly quotes” they should all be straight.
    Otherwise, try including an admin login in the Private Content area so we can take a look.

    Best regards,
    Mike

    in reply to: Main menu's drop down menu #1256040

    Hi,
    For “when I press “View page” the page appears outside the CMS
    I believe that you mean that the admin toolbar is not showing, when I was testing the mobile view I disabled this in the user profile settings, it is now re-enabled.
    Please note that the mobile topbar script may not look right with the admin toolbar showing, this doesn’t affect regular users.

    I also added this css for the menu current page effect:

    .menu-item-top-level.current-menu-item > a,.current_page_item.current-menu-item > a {
    	background-color: #efebe8 !important;
    }

    If you want the background attachment to be scrolled, please use this setting:
    2020-10-27_070728.jpg

    Best regards,
    Mike

    in reply to: Remove featured image single post page #1255693

    Hi,
    You would want to look in the wp-config.php file via ftp, and if you see define( 'DISALLOW_FILE_EDIT', true ); then change to define( 'DISALLOW_FILE_EDIT', false ); but adding to your functions.php will not work.
    Try posting ftp access to your site, in the Private Content area, and I can add the script for you to your functions.php, if you wish.

    Best regards,
    Mike

    in reply to: Changes to CSS #1255690

    Hi,
    We will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Preloader not in lightbox page #1255689

    Hi,
    Thank you, when the button is clicked the lightbox opens the page as an iframe and the site loader showing is from the iframe. Typically iframes can’t be controlled from the viewing page, but perhaps we can add a script to the /forumup/ page. Please include an admin login.

    Best regards,
    Mike

    Hi,
    Thank you for the admin login, I created a “customer” account so I could test the login form.
    On your /my-courses/ page the login form tries to submit the form when clicking the input fields, so you can not enter the details.
    I believe this is because you have the Sensei LMS plugin shortcode wrapped in a link:

    [vc_row][vc_column][vc_column_text]<a href="https://academy.harmonicsounds.com/my-courses/">[sensei_user_courses]</a>[/vc_column_text][/vc_column][/vc_row]

    Please try removing the link.
    But if you use the page /my-account-2/ to login everything works correctly, but it is using woocommerce shortcode:

    [woocommerce_my_account]

    I also see that you are using the WPBakery Page Builder plugin, I recommend disabling this builder as it has caused conflicts with the Advanced Layout Builder in the past.

    Best regards,
    Mike

    Hey micscr,
    Sorry for the very late reply, for your 5 links in your sub-menu to scroll to the 5 tabs, try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script(){
      ?>
      <script>
    (function($){
    	function a() {
            $('#sub_menu1 .menu-item-top-level-1 a').on('click', function(e) {
                e.preventDefault();
                $('a[data-av-tab-section-title="1"]').trigger('click');
            });
        }
       function b() {
            $('#sub_menu1 .menu-item-top-level-2 a').on('click', function(e) {
                e.preventDefault();
                $('a[data-av-tab-section-title="2"]').trigger('click');
            });
        }
        function c() {
            $('#sub_menu1 .menu-item-top-level-3 a').on('click', function(e) {
                e.preventDefault();
                $('a[data-av-tab-section-title="3"]').trigger('click');
            });
        }
        function d() {
            $('#sub_menu1 .menu-item-top-level-4 a').on('click', function(e) {
                e.preventDefault();
                $('a[data-av-tab-section-title="4"]').trigger('click');
            });
        }
        function e() {
            $('#sub_menu1 .menu-item-top-level-5 a').on('click', function(e) {
                e.preventDefault();
                $('a[data-av-tab-section-title="5"]').trigger('click');
            });
        }
        a();
        b();
        c();
        d();
        e();
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: How to mimic the Kriesi Forum layout and functionality #1255599

    Hi,
    Sorry for the very late reply, unfortunately, the support forum here is highly customized and we can’t share the code. But if you link to one of your posts that you would like a banner to show on, I believe we can assist with this with some jQuery. Please also link to the banner image.

    Best regards,
    Mike

    in reply to: Changes to CSS #1255597

    Hi,
    I believe this thread should be closed as it seems to be a duplicate of a currently active one.

    Best regards,
    Mike

    in reply to: Preloader not in lightbox page #1255595

    Hey Nicola,
    Sorry for the very late reply, I believe we can do this, please link to the page you would link this for.

    Best regards,
    Mike

    in reply to: Element visibility settings do not work #1255594

    Hey Michael,
    Sorry for the very late reply and thanks for the login and link to your page. I believe you are talking about the forth section with the dog images, please see the screenshot in Private Content area.
    So this element only has the two smallest sizes checked, but they seem to be working for me, what device are you seeing this section on? Portrait or landscape?

    Best regards,
    Mike

    Hey THP,
    Sorry for the very late reply, typically the prev-slide & next-slide are hidden on mobile with css as lighthouse suggests, in your case they are showing, do want them to show? Do you want the [aria-hidden=”true”] to be charged to [aria-hidden=”false”] for these? If so you will probably also want a “name” or “title” attribute for these, what would you like them called?

    Best regards,
    Mike

    Hi,
    Sorry for the very late reply and thanks for the video and URL, what is a login for the URL?
    You say that you know where the error is, please share.

    Best regards,
    Mike

    in reply to: Main menu's drop down menu #1255590

    Hi,
    DESKTOP:
    Glad to hear 😃

    MOBILE:
    Burger menu is on the right for me:
    2020-10-25_184802.jpg
    So for your 3 Full width easy slider images that are showing half height, the homepage one looks correct, which page are you using as the basis?
    For the two other pages the image height is much less “430px” where the homepage is “630px” please note the images in the Private Content area.
    I don’t see any css affecting this, please try using images that are the same size.
    For issue #2, I added this css to center the text in the slider:

    @media only screen and (max-width: 430px) { 
    #top .caption_right .slideshow_caption {
        width: 74% !important;
    }
    }

    Best regards,
    Mike

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Remove featured image single post page #1255503

    Hi,
    Typically plugins such as WordFence have an option to hide the Theme Editor option, also known as the “file editor” option, for WordFence it is in the “WordPress Tweaks” option.
    It can also be disabled via the wp-config.php file via ftp, with this code:
    define( 'DISALLOW_FILE_EDIT', true );
    so if you find that you could remove it, but it is most likely a plugin.
    Probably the easiest solution is to add the code above to the functions.php file via ftp.

    Best regards,
    Mike

    in reply to: Main menu's drop down menu #1255502

    Hi,
    I adjusted desktop & mobile versions, please check.

    Best regards,
    Mike

    in reply to: Unstick TOPBAR but sticky MENU BAR #1255488

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Color section scale-to-fit background image issue #1255449

    Hey Esteban,
    Sorry for the very late reply and thanks for your screenshots and link to your site.
    I believe the solution to this is to assign the “background-size” to your background image based on the device orientation, so when the device is in portrait mode the background-size should be “contain” so the whole image will display, and when the device is in landscape mode the background-size should be “cover”. In my tests in portrait mode the image was too close to the top so this css also centers the background.
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (max-width: 1024px) and (orientation: landscape) { 
    #av_section_1 > .av-parallax {
    	background-size: cover !important;
    }
    }
    @media only screen and (max-width: 1024px) and (orientation: portrait) { 
    #av_section_1 > .av-parallax {
    	background-size: contain !important;
    	background-position: 40% center !important;
    }
    }

    Then clear your browser cache and check.
    Another approach would be to use a different sized background image depending on the device, currently your image is 1920 x 1080 which is a landscape orientation, try creating another image with a portrait orientation such as 768 x 1080 and use as a background image for a second color section on the page. Then set each to show for the correct device orientation.

    Best regards,
    Mike

    in reply to: Accessibility – contact form #1255445

    Hey Diana,
    Sorry for the very late reply, and thanks for the link to your contact form. As I understand your request, for each form element there is a label with the attribute “for”, and an input with the attribute “name”.
    Currently, they are displaying the element ID as the attributes, such as “avia_1_1”, so to correct, this script gets the label text and replaces two attributes with it for each element in the form.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_form_attribute_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
      $('form p.form_element').each(function() {
      	var labeltext = $(this).find("label").text().slice(0, -2);
      	$(this).find("label").attr("for", labeltext);
        $(this).find("input").attr("name", labeltext);
        $(this).find("textarea").attr("name", labeltext);
      });
     });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_form_attribute_script');

    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Remove featured image single post page #1255442

    Hi,
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
      var url = location.pathname;
      if (window.location.href.indexOf('avia-element-paging=') > -1) {
        $(".post-entry-type-standard").css({ 'display': 'none' });
      } 
      });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Main menu's drop down menu #1255418

    Hi,
    I adjusted the desktop version per the screenshot, please check.

    Best regards,
    Mike

    in reply to: easy slider full width – no scroll down button? #1255414

    Hi,
    Please try adding “color” to the css like this:

    #top #next-section-arrow .scroll-down-link {
        top: -20vh;
        left: 42.5vw !important;
        color: red !important;
    }

    PLease adjust to suit and then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

    in reply to: Both front end and sit- admin very slow to update. #1255413

    Hi,
    We will leave this open to hear back from you on what your webhost reports.

    Best regards,
    Mike

Viewing 30 posts - 15,001 through 15,030 (of 34,221 total)