Forum Replies Created

Viewing 30 posts - 15,811 through 15,840 (of 35,013 total)
  • Author
    Posts
  • 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

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

    Hi,
    I believe the desktop version is sorted out now, please check. For the mobile version I added some css to hide the widgets, but did you want the header to be sticky on mobile and the burger menu to be centered?

    Best regards,
    Mike

    in reply to: Replace social menu with, add menu in header #1255231

    Hi,
    Sorry, I’m not seeing a difference in the header menu for the 3 pages, please try including a screenshot with the issue highlighted.

    Best regards,
    Mike

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

    Hi,
    Thank you, I disabled the admin toolbar for my user account in the user settings, when you test you may wish to do the same.
    I adjusted the script and added it to your functions.php and it seems to work well, please check.
    This is the script I added:

    function custom_script(){
      ?>
      <script>
    (function($){
    $(window).scroll(function(){
    var width = $(window).width();
    var scrolled = $(window).scrollTop();
    if ( scrolled >= 110 && width <= 767) {
    $( '#header' ).each(function() {
    $(this).css({'background-color':'#ffffff','position':'fixed','top':'-110px'});
    $('#main').css({'margin-top':'185px'});
    });
    }
    else if ( scrolled <= 110 && width <= 767){
    $( '#header' ).each(function() {
    $(this).css({'background-color':'#ffffff','position':'relative','top':'0'});
    $('#main').css({'margin-top':'0px'});
    });
    } else {}
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    Best regards,
    Mike

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

    Hi,
    Thanks, I believe we are almost there, checking the “behandlinger” page I believe the content width is now correct along with the header, but we have circled back to the issue where the menu background is not stretched full width, but the css that was stretching the menu background is also changing the header layout width.
    Anyways, I believe we can sort this out, but we may need to go at it a little different, I will continue.

    Best regards,
    Mike

    in reply to: Product masonry pagination issue #1254654

    Hi,
    Very good, and thanks to KunaWeb for sharing 🙂
    I’m glad to hear this helps, I believe the dev team will need to adjust the core script, and I will submit this to them. I will leave this open for now and reply when I hear back from them.

    Best regards,
    Mike

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

    Hi,
    Sorry for the late reply and thanks for the login, I’m finding this css injected into your page:

    <style type="text/css" media="screen">
    	html { margin-top: 32px !important; }
    	* html body { margin-top: 32px !important; }
    	@media screen and ( max-width: 782px ) {
    		html { margin-top: 46px !important; }
    		* html body { margin-top: 46px !important; }
    	}
    </style>

    I would like to remove this because !important; is hard to overcome, but I’m not finding the source.
    I looked at your custom css & js plugin,
    WordPress > Customize > Additional CSS,
    Enfold Theme Options > General Styling > Quick CSS field,
    and the custom.css in the Enfold theme.
    Does the above look like something you might have added? Any thoughts on where?

    Best regards,
    Mike

    in reply to: Error while creating/deleting page #1254363

    Hi,
    This sounds like an issue with the Contact Form 7 plugin and it’s reCAPTCHA when enabled, since it is happening with two themes.
    Please try asking the Contact Form 7 plugin author, they may already have a patch for this.

    Best regards,
    Mike

    in reply to: Custom CSS not working #1254360

    Hi,

    @PearlSmile
    when you add classes to the custom css fields are you adding the “dot” like .class if so please remove the “dot”
    If you are using the Enfold Theme Options > Performance > JS & CSS file merging and compression please disable, this is showing you a “cached” version.
    Otherwise, please open a new thread with an admin login in the Private Content area and an example of what you can not achieve.
    Since this is not your thread posting your login here will not be private and you will not see anything we write in the Private Content area.

    Best regards,
    Mike

    in reply to: Product masonry pagination issue #1254357

    Hi,

    @KunaWebAgency
    thank you for sharing your solution. @JaimBateman I adjusted @KunaWebAgency’s solution for your masonry pagination and it seems to cover your points above, please give this script a try. Please note any issues you may see and then remove the script so I can adjust, if necessary.

    function custom_masonry_pagination_links(){
      ?>
      <script>
    (function($){
    	$(document).ready(function() {
    		var thispag = $( ".av-masonry-pagination nav.pagination a" );
    		var thisfirst = $( ".av-masonry-pagination nav.pagination a" ).eq(0);
    		var thisone = $( ".av-masonry-pagination nav.pagination a" ).eq(1);
    		var count = thispag.length;
    		var baseurl = location.protocol + '//' + location.host + location.pathname;
    		var url = document.URL;
    		var theURL = url.split( "=" )[0];
    		var theindex = url.split( "=" )[1];
    
    		if ( count > 0 ) {
    			if ( theindex == 1 ) {
    				thispag.attr( "href", baseurl );
    			} else if ( theindex > 1 && count < 5 ) {
    				thisfirst.attr( "href", baseurl );
    			} else if ( theindex == 2 && count > 4 ) {
    				thisfirst.attr( "href", baseurl );
    				thisone.attr( "href", baseurl );
    			} else if ( theindex == 3 && count > 4 ) {
    				thisfirst.attr( "href", theURL + "=" + ( theindex - 1 ) );
    				thisone.attr( "href", baseurl );
    			} else if ( theindex > 3 && count > 4 ) {
    				thisfirst.attr( "href", baseurl );
    				thisone.attr( "href", theURL + "=" + ( theindex - 1 ) );
    			}
    		}
    	});
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_masonry_pagination_links');

    Best regards,
    Mike

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

    Hi,
    Thank you for clearing the cache, I have been re-adding the css back to the site a little at a time to try to isolate the issues, most of the css is back now but I do have more to add once I work it out.

    Best regards,
    Mike

    in reply to: Product masonry pagination issue #1253957

    Hi,
    Thanks, I see an error I made, please remove the scripts so I can test fresh again from my side.

    Best regards,
    Mike

    in reply to: Icons with numbers #1253942

    Hi,
    Glad we could help, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Product masonry pagination issue #1253938

    Hi,
    @jaimbateman, thanks for the feedback, so the [<<] only shows after page 4, I adjusted for this, and for the [<] on page 2.
    Please try replacing your code with this one:

    function custom_masonry_pagination(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
       var thistwo = $(".av-masonry-pagination nav.pagination a").eq(1);
       var thisone = $(".av-masonry-pagination nav.pagination a").eq(0);
       var count = $(".av-masonry-pagination nav.pagination a").length;
       var url = document.URL;
       var theURL = url.split("=")[0];
       if ($(count>4)){
       if (thistwo.hasClass("inactive")){
       thistwo.attr("href", theURL + "=1");
       }
       if ($(count>8)){
       thisone.attr("href", theURL + "=1");
       }
       if ($(count<8)){
       thisone.attr("href", theURL + "=1");
       }
    }
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_masonry_pagination');

    Best regards,
    Mike

    in reply to: Product masonry pagination issue #1253734

    Hi,
    Sorry for the late reply, thank you to both of you for links to your sites. So in both cases the pagination [1] is not linking to the first page, but the position of [1] changes as the [<] pagination buttons are added and then after page 5 [1] drops off. So I believe I have it sorted out with this script, try adding this code to the end of your functions.php file in Appearance > Editor:

    @JaimBateman
    with your masonry pagination please try this:

    function custom_masonry_pagination_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
       var $this = $(".av-masonry-pagination nav.pagination a").eq(1);
       var count = $(".av-masonry-pagination nav.pagination a").length;
       var url = document.URL;
       var theURL = url.split("=")[0];
       if (count>4){
       if ($this.hasClass("inactive")){
       $this.attr("href", theURL + "=1");
       } else{}
       } else{}
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_masonry_pagination_script');


    @KunaWebAgency
    for your pagination-slider please try this:

    function custom_pagination_slider_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
       var $this = $(".pagination-wrap.pagination-slider nav.pagination a").eq(1);
       var count = $(".pagination-wrap.pagination-slider nav.pagination a").length;
       var url = document.URL;
       var theURL = url.split("=")[0];
       if (count>4){
       if ($this.hasClass("inactive")){
       $this.attr("href", theURL + "=1");
       } else{}
       } else{}
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_pagination_slider_script');

    I guess we could have just used nav.pagination a as the target and the code would have been the same, but I didn’t want any unexpected actions on other paginations.

    Best regards,
    Mike

    Hi,
    Sorry for the very late reply, and thanks for the link to your table.
    So as I understand you would like to add a border to your cells, please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #av_section_2 tr,#av_section_2 td,#av_section_2 th {
      border: 5px solid #847f7f !important;
    }
    

    Best regards,
    Mike

    in reply to: Offset Columns #1253716

    Hi,
    Sorry for the very late reply, I took a look at your services page and it seems different than your screenshots, did you end up changing your layout?
    I also didn’t see any test page, are you still trying to do this?

    Best regards,
    Mike

    in reply to: Meow lightbox replacing the Enfold lightbox? #1253714

    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: Error while creating/deleting page #1253711

    Hi,
    Sorry for the late reply, and thanks for the login, so I first ensured that your Contact Form 7 plugin had it’s reCAPTCHA enabled:
    2020-10-18_154158.jpg
    Then I tested two of your Contact Forms, but I got the success message from both of them:
    2020-10-18_154357.jpg
    I also didn’t find any error messages in the browser console.
    I have noticed on other sites that if my autofill fills all of the fields the form may not recognize them as filed. In these cases, I have to click each field so the background changes and then submit.
    This is due to the browser autofill function, perhaps this is what happened to you?

    Best regards,
    Mike

Viewing 30 posts - 15,811 through 15,840 (of 35,013 total)