Forum Replies Created

Viewing 30 posts - 11,161 through 11,190 (of 35,067 total)
  • Author
    Posts
  • in reply to: Link to specific section #1361536

    Hi,
    Glad to hear this helped, but I don’t understand what you mean by “idiom” please explain further.

    Best regards,
    Mike

    in reply to: Link to specific section #1361455

    Hey Antonio,
    Thanks for your question, the issue is that you have two sections with the same ID “contacto” the top one is hidden on mobile so the link can’t complete the anchor jump.
    This is expected, the HTML rules are that each ID on a page should be unique. On desktop the first “contacto” is visible so the link works.
    The recommend solution is to use different ID’s for mobile and desktop and then create two menus with the correct anchor link for the menu item “contacto” and then in Enfold Theme Options ▸ Main Menu ▸ General ▸ Alternate Menu For Mobile choose the mobile menu.

    Best regards,
    Mike

    in reply to: Accessibility for Visually Impaired #1361393

    Hi,
    Thanks for the feedback, we will leave this open to hear back from you.

    Best regards,
    Mike

    in reply to: Close Button #1361392

    Hi,
    Thank you for the link to your test page, please try this script to add a close button inside the toggle content, add this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_close_button_script() { ?>
      <script>
    (function($){
    	var close = $('<span class="close_button"></span>');
    $('.single_toggle .toggle_content').prepend(close);
    $('.close_button').click(function() {
          $(this).parents('.toggle_wrap.active_tc').removeClass('active_tc');
      });
    })(jQuery);
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_close_button_script');

    and then this css:

    .close_button {
        position:relative;
        float:right;
        display:block;
        height:50px;
        width:50px;
        background: url(https://img.icons8.com/ios/50/000000/cancel.png) no-repeat;
        background-color:#fff;
        border-radius:25px;
        -moz-border-radius:25px;
        -webkit-border-radius:25px;
    }
    .close_button:hover {
    	cursor: pointer;
    }
    

    this is the expected results:
    2022-08-10_001.jpg

    As for your video, it is not auto playing for me, but does play on click. I tested in Windows with Chrome, Firefox, & Edge.

    Best regards,
    Mike

    in reply to: Accessibility for Visually Impaired #1361344

    Hi,
    Thanks for the feedback, the link seems to be a paid service not a tool. I see that your main menu links now have the title, aria-label, and anchor text, and JAWs is suppose to read each of these, so I’m not sure why yours is not. Perhaps there is a setting disabled on your JAWs, such as disabled javascript? Or it’s reading the page before it’s fully loaded.
    These are guesses, but in the past I have helped other users of JAWs with other elements and they didn’t say they couldn’t use JAWs on the main menu. But unfortunately there doesn’t seem to ba a trial version of JAWs for us to test with, so we can’t test.
    There are other accessibility plugins but I don’t have any experience with these and don’t know which one may help, I assume each of these would do the same as we have by adding the title, aria-label, and anchor text to the main menu links, if you test any of these plugins please remove the 3 scripts that we have posted above so there won’t be any conflicts.

    Best regards,
    Mike

    in reply to: Close Button #1361235

    Hey finchkelsey,
    Thanks for your question, if you have the accordion set to “open one at a time” then each time you click the title the accordion open or closes, and you should be seeing a plus or minus icon next to the title, this could be your button? The full title is basically a button. You can also added more text to the title, I don’t think there is a limit.
    Perhaps if you could link to a mockup we could understand better.
    If you find the accordion too limiting in style you could use jQuery to toggle visibility of an element, here is an example.
    Perhaps this could work if you added a button and image inside of a text element and on load only the button and text showed with clicking the button shows the image?
    If you think that using other elements would help then try linking to a test page and explain the behavior and perhaps we could help or understand better.

    Best regards,
    Mike

    in reply to: Headline with Minus-padding left in mobile view #1361230

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Link from portfolio raster (all items) to one page #1361229

    Hi,
    Thanks for the login, I see your WordPress ▸ Appearance ▸ Theme File Editor has been disabled so I added the plugin Simple Custom CSS and JS and added the code so they link to /impressionen/
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Animate Team Member Content Element Image #1361114

    Hi,
    Thanks for the login, you had a missing bracket from a different css rule in your Quick CSS, I corrected for you.
    2022-08-08_001.jpg
    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Link from portfolio raster (all items) to one page #1361107

    Hi,
    I didn’t add the code into your child theme functions.php file, I was asking you to add this code.
    If you would like us to add it for you please include an admin login in the Private Content area below.
    Please note that if you add the code yourself, copy the code from the fourm, not from an email.

    Best regards,
    Mike

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Site Health status alerts #1361104

    Hi,
    Thanks for the feedback, I tested Really Simple SSL on my demo site which already had SSL from Let’s Encrypt on my server, and which I had no security header warnings in the Site Health Status, when I activated Really Simple SSL I received these warnings:
    Your website does not send all recommended security headers.
    Upgrade Insecure Requests
    X-XSS protection
    Referrer-Policy
    Permissions-Policy

    So while I have recommended Really Simple SSL for sites that were having SSL issues, I assume that there can be a warning in the Site Health Status for some reason. I have disabled this on my site and it’s back to having no warnings.

    Best regards,
    Mike

    in reply to: Link from portfolio raster (all items) to one page #1361101

    Hi,
    Thanks for the feedback, to change all of the portfolio grid links on that one page to your /impressum/ page, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function change_all_links_in_portfolio_grid() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
      (function($){
        $('#top.page-id-4746 #av-sc-portfolio-1 .grid-sort-container .grid-entry article').each(function() {
          $(this).find('a').attr('href', "/impressum/");
        }); 
      })(jQuery);
    });
      </script>
      <?php
    }
    add_action('wp_footer', 'change_all_links_in_portfolio_grid');

    Then clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Link from portfolio raster (all items) to one page #1361024

    Hey rixi,
    We could help with a code snippet to add a link, but I’m not sure where you would want the link placed, please include a screenshot mockup of where you would want the link.
    To add a screenshot please try using an Screenshot service and pasting the image URL in your post.

    Best regards,
    Mike

    Hi,
    Sorry my mistake, please try this css:

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all .main_menu {
        right: -120px;
    }
    }
    

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Looking for opinions on using Categories and Tags #1361021

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Site Health status alerts #1361020

    Hi,
    Thanks for your question, since this is still occurring with the default 2022 theme I would say that you will need to manually add the security headers to your htaccess file. Here is a thread on WordPress for your same issue.

    Best regards,
    Mike

    Hey tonyiatridis,
    Thanks for your question, but unfortunately when the email is sent via the contact form on your site it is not going to show their real email address.
    I would recommend using a plugin to track IP addresses, such as Banhammer you could then give this to the police to investigate or you could ban the IP address from your site.

    Best regards,
    Mike

    in reply to: Input text fields wrong color on mobile #1361018

    Hi,
    Thanks for the screenshot and link to your page, I checked with my Android phone and the fields are black, I don’t have an iPhone.
    Try this css:

     #top .main_color #mainContainer #adultCount,
     #top .main_color #mainContainer #kidsCount {
    	opacity: 1 !important;
        color: #000 !important;
    }

    Then clear your browser cache and any cache plugin, and check.
    Please note that testing with iPads & iPhones can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.

    Best regards,
    Mike

    in reply to: Breadcrumbs #1361017

    Hey letsrocc15,
    Thanks for your question, I only found one page with the title container and breadcrumbs /privacy-policy/
    assuming that all of your other pages have the setting Title Bar Settings ▸ Default Setting then please check Enfold Theme Options ▸ Header ▸ Header Layout ▸ Header Title and Breadcrumbs to ensure it is enabled:
    2022-08-07_007.jpg
    If this doesn’t help please include an admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: Product gallery thumbs look blurry #1361011

    Hey nasi,
    Thank you for your patience and for the link to your site. I installed the Simple Image Sizes plugin for you to demonstrate that your woocommerce_gallery_thumbnail size is 100px, yet it is showing at 175px so it is blurry:
    2022-08-07_005.jpg
    Try going to WordPress ▸ Settings ▸ Media ▸ Image sizes and change this to 180px and then regenerate the thumbnails
    2022-08-07_006.jpg
    and then clear your browser cache and check again.

    Best regards,
    Mike

    in reply to: Looking for opinions on using Categories and Tags #1361010

    Hi,
    Thank you for your question, I would recommend using “Next Step” as a category rather than a tag.

    Best regards,
    Mike

    Hi,
    Thank you for your patience, I have reviewed your page source code and used the validator that you linked to, but found no frameborder attribute.
    Please explain further where this can be found, if you have not already solved it.

    Best regards,
    Mike

    Hi,
    Glad to hear this helped, the social icons are not designed to be seen on mobile portrait because as you pointed out “it would be too crowded” this is done with css if anyone wants to show them crowded
    unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Animate Team Member Content Element Image #1361002

    Hi,
    Thanks for your feedback, for future readers I would point out that in this situation we have two team member elements below the “fold” (out of view) on the page, each team member element has quite a lot of text, so animating the column or the element will not be satisfactory, it will need to be the team member image.
    We also want each team member image to animate when it is in the middle of the screen, “each” meaning that not all at the same time.
    I add this background because I don’t believe that this user wants any images or links of the solution posted.
    Ok, so try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_waypoint_animation_script() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($){
     $('.team-img-container img').each( function(index, element){
            $(element).waypoint(function(direction) {
                	if (direction === 'down') {
                    $(element).addClass('waypoint-animation');
                	}
      }, {
        offset: '50%'
      });
            });
    })(jQuery);
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_waypoint_animation_script');

    and this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field instead:

    .team-img-container img {
    	transform: scale(.1)
    }
    .team-img-container .waypoint-animation {
    	animation: growin 2s;
    	animation-fill-mode: forwards;
    }
    @keyframes growin {
      from {transform: scale(.1)}
      to {transform: scale(1)}
    }

    then check again.
    Please see the screenshot in the Private Content area.

    Best regards,
    Mike

    in reply to: Animate Team Member Content Element Image #1360963

    Hi,
    Please note that your team image is down the page a bit, so the animation may be happening before you scroll down.
    Please try scrolling down to the image and then refreshing the page.

    Best regards,
    Mike

    Hi,.
    Glad to hear this helped, please include an admin login in the Private Content area so we can help place the burger menu to the right for your mobile device.

    Best regards,
    Mike

    in reply to: Theme Conflict with Hotel Booking lite plugin #1360942

    Hi,
    Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    .datepick-month{
        width: 435px;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Thanks for the link to your site, for mobile portrait this css is giving the burger menu a white background color:
    2022-08-06_001.jpg
    I linked to the file below, it looks like the cached version of your child theme stylesheet.
    Please try removing it or adding this to override it:

    @media only screen and (max-width: 767px) {
        #top .header_color .av-hamburger-inner, #top .header_color .av-hamburger-inner::before, #top .header_color .av-hamburger-inner::after {
        background-color: #808080;
        }
    }

    Another possibility is that this white background color was chosen in the Enfold Theme Options ▸ Advanced Styling or in the Enfold Theme Options ▸ General Styling
    but I was not able to reproduce it on my test site, I did test Ismael’s css on your site by injecting it and it does work, please give it a try.

    Best regards,
    Mike

Viewing 30 posts - 11,161 through 11,190 (of 35,067 total)