Forum Replies Created

Viewing 30 posts - 15,961 through 15,990 (of 34,221 total)
  • Author
    Posts
  • in reply to: Header elements positioning issue #1218281

    Hi,
    Sorry for the late reply, I was not able to login to your staging site, please check.

    Best regards,
    Mike

    in reply to: Skiplink button is visible but not working #1218278

    Hi,
    Sorry for the late reply, try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_skiplinks_script(){
      ?>
      <script>
    (function($){
      $(window).load(function() {
      $("#skiplinks a").click(function(){
      	setTimeout(function(){
        $('#main').trigger("focus");
      	}, 200);
    });
      });
      })(jQuery);
      </script>
    <?php
    }
    add_action('wp_footer', 'custom_skiplinks_script');

    I tested by injecting this script into your site and pressing Tab to see the skiplink, then clicking the button or pressing Enter sets the #main as focus, pressing Tab again highlights the first slideshow button.

    Since there is not an animation to alert the user that the page focus has changed, I put this together if you want to try it, it will create a white pulse from any links that are visible in the #main section, such as the two buttons on your home page.
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

     #main:focus > .container_wrap a {
        box-shadow: 0 0 0 rgba(255,255,255, 0.4);
          animation: pulse 2s 1;
        z-index: 9999 !important;
        position: relative;
        }
        
        @-webkit-keyframes pulse {
          0% {
            -webkit-box-shadow: 0 0 0 0 rgba(255,255,255, 0.4);
          }
          70% {
              -webkit-box-shadow: 0 0 0 100px rgba(255,255,255, 0);
          }
          100% {
              -webkit-box-shadow: 0 0 0 0 rgba(255,255,255, 0);
          }
        }
        @keyframes pulse {
          0% {
            -moz-box-shadow: 0 0 0 0 rgba(255,255,255, 0.4);
            box-shadow: 0 0 0 0 rgba(255,255,255, 0.4);
          }
          70% {
              -moz-box-shadow: 0 0 0 100px rgba(255,255,255, 0);
              box-shadow: 0 0 0 100px rgba(255,255,255, 0);
          }
          100% {
              -moz-box-shadow: 0 0 0 0 rgba(255,255,255, 0);
              box-shadow: 0 0 0 0 rgba(255,255,255, 0);
          }
        }
    

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

    Best regards,
    Mike

    in reply to: Words or characters limit for Blog post title length #1218272

    Hi,
    Oh I see, sorry I misunderstood the issue, so please remove the code I posted earlier.
    On my localhost I was able to publish a post using your title twice and the post showed fine, I see that you are using v4.7.2 so to rule out a bug in that version please try updating to v4.7.5
    You will need to create an Envato Token to update, the API you are using will no longer work. Or you can update via FTP, but don’t try to overwrite the theme folder as it will leave old files behind and cause errors.

    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: main menu #1218259

    Hi,
    The hotspot park image is a custom image map added via html code with custom hotspot javascript, this was created outside of Enfold. So yes, you could add this to your site, but you will have to find some software to do it or write the html yourself.
    To have a button bounce please try this css, just replace the class .rev-btn with the custom class of the button you use, as an example the class .rev-btn is the “See More” button on your slider now.
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @keyframes fade {
        from { top:40px; }
        50% { top:50px; }
        to { top:40px; }
    }
    
    @-webkit-keyframes fade {
        from { top:40px; }
        50% { top:50px; }
        to { top:40px; }
    }
    
    .rev-btn {
        animation:fade 1000ms infinite;
        -webkit-animation:fade 1000ms infinite;
    }

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

    Best regards,
    Mike

    in reply to: Remove portfolio category from breadcrumbs #1218225

    Hi,
    Thank you, I added the css and it seems to work, the Προηγούμενοι Δήμαρχοι is hidden.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Words or characters limit for Blog post title length #1218223

    Hi,
    For that page on the backend, I can see you have content, but I’m not seeing anything on the front end, is this intentional or a new issue?

    Best regards,
    Mike

    in reply to: Highlight active menu #1218194

    Hi,
    Sorry, above I described adding these as if you were using the “custom” menu items but you are actually using a standard menu item. So please replace the two menu items with custom menu items with the URL /la-manga-club#vip & /la-manga-club#tos
    2020-05-31_111100.png

    Best regards,
    Mike

    in reply to: Highlight active menu #1218182

    Hi,
    Thanks for your explanation, I wrote this script to check the URL hash and then remove the menu highlighting class from one of the menu items. So for the is work please add hashes to your two menu items, for the sub-menu item “la-manga-club” under “VIP Teaching Weeks” change the hash to #vip , for the sub-menu item “la-manga-club” under “TOS Teaching Weeks” change the hash to #tos .
    There are no anchors for #vip or #tos so the page will load at the top, but this will tell us which menu item the visitor clicked to get to the page.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_landing_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
    if (window.location.hash == '#vip'){
    	setTimeout(function(){
    	$("#top.page-id-497 #menu-item-6449").removeClass("current-menu-item");
    	},300);
    } else if (window.location.hash == '#tos'){
    	setTimeout(function(){
    	$("#top.page-id-497 #menu-item-1077").removeClass("current-menu-item");
    	},300);
    } else {}
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_landing_script');

    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Prevent MP4 videos from looping #1218169

    Hi,
    Thanks for the login, I was hoping to check your child theme structure and modified files, but your WordPress > Appearance > Editor is disabled, probably in your wp-config.php there is this code define('DISALLOW_FILE_EDIT',true); if you are able to restore the theme editor or if you include FTP access we will be able to investigate further.

    Best regards,
    Mike

    in reply to: Issue with sections/main menu links #1218166

    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 portfolio category from breadcrumbs #1218165

    Hi,
    Perhaps you have a previous css error, like a missing bracket, that is preventing this from working, please include an admin login in the Private Content area so we can check.

    Best regards,
    Mike

    in reply to: Words or characters limit for Blog post title length #1218110

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

    function max_title_length( $title ) {
    $max = 2000;
    if( strlen( $title ) > $max ) {
    return substr( $title, 0, $max ). " …";
    } else {
    return $title;
    }
    }
    add_filter( 'the_title', 'max_title_length');

    I see that you tried some code, but perhaps it wasn’t the same as this.

    Best regards,
    Mike

    in reply to: Enfold Child Theme #1218108

    Hi,
    Glad to hear, sorry for the late reply and thanks for using Enfold.

    Best regards,
    Mike

    in reply to: Styling a Fullwidth Sub Menu #1218107

    Hi,
    Sorry for the late reply and thanks for the login, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #av-custom-submenu-1 li:hover,#av-custom-submenu-1 li:hover > a {
    	background-color: #008000;
    	color: #fff !important;
    }
    #av-custom-submenu-1 li.clicked,#av-custom-submenu-1 li.clicked > a {
    	background-color: #008000;
    	color: #fff !important;
    }

    Then add this code to the end of your functions.php file in Appearance > Editor:

    function custom_script(){
      ?>
      <script>
    (function($){
    $(document).ready(function() {
        $("#av-custom-submenu-1 li").click(function() {
            $("#av-custom-submenu-1 li").not(this).removeClass('clicked');
            $(this).addClass('clicked');
        });
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Prevent MP4 videos from looping #1218101

    Hi,
    Please see below.

    Best regards,
    Mike

    in reply to: PouUp opening site #1218099

    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: Add tripadvisor widget o enfold restaurant #1218098

    Hey JMMCRIADO,
    Do you want the widget in the footer? Please include an admin login in the Private Content area so we can take a look.
    Do you have certain code to create the TripAdvisor widget?

    Best regards,
    Mike

    in reply to: Remove link on featured image #1218096

    Hi,
    Thanks for the link, to make the featured image not clickable on a single post you could try this css in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.single .big-preview.single-big {
    	 pointer-events: none !important;
    }

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

    Best regards,
    Mike

    Hey fcp,
    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: 767px) { 
    #header_meta > .container {
    	display: flex !important;
        flex-wrap: wrap !important;
    }
    #header_meta > .container > .sub_menu {
    	order: 2;
    }
    #header_meta > .container > .phone-info {
    	order: 1;
    }
    }

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

    Best regards,
    Mike

    in reply to: Anchor problems with menu highlight #1218092

    Hey ksalewski,
    Thanks for the links, for the first one please try changing your Kontakt menu item link from #kontakt to /#kontakt
    Try adding the same / to your other site menu item “Netzwerk”

    Best regards,
    Mike

    in reply to: Prevent MP4 videos from looping #1218090

    Hi,
    It seems the login above is not working, please check. Which page are you testing on, the only video I could find was on the home page and was from Vimeo.

    Best regards,
    Mike

    in reply to: Issue with sections/main menu links #1218089

    Hey tremblayly,
    Thanks for the link and login, the reason for this was because when the page is scrolled down to #large-testimonials the videos from the above section are behind the header and the video overlays have a high z-index, please try this css to make the header z-index higher.
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #header_main,#header {
        z-index: 1001 !important;
    }

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

    Best regards,
    Mike

    in reply to: Logo doens't appear in menu #1218086

    Hey NoraGTS,
    Thanks for the login and link to the page. On the page you had the header set to transparent but you had no slider or image at the top of the page so the transparent logo would show. I set your header to not transparent and to hide the title and breadcrumbs.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: hide name category blog posts grid #1218084

    Hey dantespizzi,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .slide-entry .blog-categories.minor-meta {
    	display: none !important;
    }

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

    Best regards,
    Mike

    Hey swibbycreations,
    This looks correct, if it has been a couple of days you should start seeing the analytics of this, do you?

    Best regards,
    Mike

    in reply to: PouUp opening site #1218080

    Hey Bruno,
    Sorry for the late reply, I would recommend the plugin WP Popups it typically works well with Enfold.

    Best regards,
    Mike

    in reply to: Need help updating theme #1218079

    Hey bobfurgo,
    Thanks for the sftp access, I have updated your theme, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Remove portfolio category from breadcrumbs #1218075

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

    #top.single-portfolio .breadcrumb-trail > span > span > a {
    	display: none !important;
    }

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

    Best regards,
    Mike

    Hi,
    You can add a custom ID to the color section that contains the video and icon box elements, then each time you use the setup and the custom ID it should work, but you can only use the ID once on each page.
    Here is the example css with a custom ID of “full-width-video-section” for you to use.

    @media only screen and (max-width: 767px) { 
    .responsive #top #wrap_all #full-width-video-section > .container {
    	width: 100% !important;
        max-width: 100% !important;
    }
    .responsive #top #wrap_all #full-width-video-section > .container .av_two_fifth .iconbox_right_content {
    	margin: auto !important;
        width: 85% !important;
    }
    }

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

    Best regards,
    Mike

Viewing 30 posts - 15,961 through 15,990 (of 34,221 total)