Forum Replies Created

Viewing 30 posts - 24,961 through 24,990 (of 34,591 total)
  • Author
    Posts
  • in reply to: Password-Protect Page Not Working in Google Chrome #1007921

    Hi,
    The code above was not to be added, but removed, I checked your site and you don’t have it, so your good on that.
    Are you using WP Engine as your host? If so they use server side caching, so I would ask them to help with a rule to not cache the page. They probably have seen this before and can assist. I looked at “WP Engine Advanced Cache” but don’t see a exclusion setting.

    If you are not on WP Engine the plugin won’t help, but I would still ask your webhost to deactivate the server caching, at least to test.

    Another possible solution could be to try adding this code to the end of your functions.php file in Appearance > Editor:

    	function add_nocache_meta(){
    		if ( is_page('3746') ) { ?>
    		<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
            <meta http-equiv="Pragma" content="no-cache" />
             <meta http-equiv="Expires" content="0" />
    		<?php
    		}
    	}
    		add_action('wp_head', 'add_nocache_meta');

    It is designed to give the no-cache headers on your one page.

    Best regards,
    Mike

    in reply to: Insert a form to Revolution Slider video slide. #1007697

    Hey HeeHA,
    Can you please include a admin login in the private content area so we can take a closer look at your slider.

    Best regards,
    Mike

    in reply to: Two preloader images are appearing. #1007692

    Hey clbdcnpafe,
    The orange preloader is the Enfold one:

    #top .av-siteloader {
        border-color: #f8f8f8;
        border-left-color: #fa8e29
    }
    

    Here are some options, you can add this css to the WordPress > Customize > Additional CSS (it overrides all other css)

    #top .av-siteloader { display: none !important;}

    You can turn off at Enfold Theme Options > Page Preloading (but I’m not sure if it will turns yours off too)
    Let us know if this helps.

    Best regards,
    Mike

    in reply to: Disable the page builder on Enfold #1007689

    Hey ronensin,
    Sorry you can’t disable / remove the advanced layout builder from Enfold, it is built in at the core. You can hover hide the builder button. Please refer to this post

    Best regards,
    Mike

    in reply to: Header background with transparent and shadow #1007683

    Hey honkatech,
    I’m not sure where your shadow was, Please see the screenshot in Private Content area and advise

    Best regards,
    Mike

    in reply to: Masonry Color Overlay on hover (Background translucence?) #1007672

    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 under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Remove Foot column from widget #1007670

    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 under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Make Heading Not All Caps #1007668

    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 under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Widget Stopped Working when Transferred Site? #1007657

    Hey Moondreamer21,
    I’m not sure why it’s not working for you but the plugin is listed on the exploit database for the same issue you are having, and a google search for the warning points to your page.
    I wonder if someone tried to use the exploit on your site, we can’t say for sure, but I wouldn’t like this.
    exploit database
    If you want to use the plugin, try contacting the author to see if they have seen this error before.

    Best regards,
    Mike

    in reply to: Masonry Color Overlay on hover (Background translucence?) #1007653

    Hey Nicole,
    Try changing your css to this:

    #top .av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry-content {
        background: rgba(255, 165, 0, .5);
    }

    adjust the last number to change the transparency

    Best regards,
    Mike

    in reply to: image overlay on hover / masonry gallery #1007651

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

    #top.postid-7869 .avia_desktop .av-hover-overlay-active .av-masonry-image-container {
        opacity: 1 !important; 
    }
    
    #top.postid-7869 .avia_desktop .av-hover-overlay-active .av-masonry-entry:hover .av-masonry-image-container {
        opacity: 0.7 !important; 
    }
    

    Best regards,
    Mike

    in reply to: Make Heading Not All Caps #1007638

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

    Best regards,
    Mike

    in reply to: Remove dates as widgets on home page #1007637

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

    Best regards,
    Mike

    in reply to: Changing Sticky Header transparency #1007635

    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 under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: These customizations are possible??? #1007634

    Hi,
    For the first question: ok, so it’s two sites based on language, that is good. So if I can move the language link to the top left side with jQuery will that work?
    2018-09-09_114011

    For the second question, sorry I was looking at the wrong part, unfortunately that menu is going to require quiet a bit of customization, really more than we can assist with. Perhaps to can find a menu plugin that will do this or you can hire a freelancer to do this.

    Best regards,
    Mike

    in reply to: Change image caption overlay (Hover) #1007628

    Hi,
    Oh, I see, thanks.
    the css uses the “background-size” cover so it will “cover” the area, which you will want because the image has a transparent background color.
    I recommend using the same css code but adjust your image so it will look like you want, this is what I think you are trying for:
    anker_new
    I didn’t match the same opacity for the background, so imagine it is all one color.

    Best regards,
    Mike

    in reply to: Changing Sticky Header transparency #1007615

    Hey Enis,
    Please try this code in the General Styling > Quick CSS field:

    .header_color .header_bg {
        background-color: rgba(255, 255, 255, 0.5) !important; 
    }

    adjust the last number to set the transparency for the header when scrolled

    Best regards,
    Mike

    in reply to: Make Heading Not All Caps #1007612

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

    h1, h2, h3, p, a {
        text-transform: none !important; 
    }

    I see you have some text such as the topbar “contact us” and the header “request a demo” that are in all caps, so you will need to adjust those manually, but this css should fix the text that was changed by css.

    Best regards,
    Mike

    in reply to: Problem after moving to another webhoster. #1007607

    Hey Sebastiaan,
    Do you still have the original working site?
    When you moved the site did you also copy the files at /wp-content/uploads/dynamic_avia/ this is where the css is stored, and it looks like your issues are css related.
    If I understand correctly you have this at two places on the same webhost, are they on different domains?
    Can you please include a admin login and ftp access in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: How to hoover telephone info span in top bar? #1007600

    Hi,
    Thanks for the login, I followed the steps in the links I posted to create the phone & email links, and then added the css from above & now the phone & email links are black on hover with a underline.
    Please clear your browser cache and check.
    Please check that the phone number link works for you, as I’m in the US and your phone numbers are formatted different than ours, if you need to adjust please read the article above and correct.

    Best regards,
    Mike

    in reply to: mobile menu is just white #1007595

    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 under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: These customizations are possible??? #1007594

    Hi,
    Thank you for the feedback, I believe that I misunderstood your request. Now I believe you have two requests here, the first is to move your language selector to the top of the menu next to the “X”
    Which should be able to do, but can you explain which translation plugin you are using, if any, because Enfold has built-in support for some plugins.
    I see that your menu language “selector” or menu item works the way you describe, the correct one shows depending on the language, and I shows on both mobile and desktop, so as far as I understand, the only thing you don’t like is that it’s below the menu.
    Is this correct?
    I did some testing and found that I could move it next to the “X” with some jQuery:
    2018-09-09_083222
    naturally only the correct one will show depending on the language, for both mobile & desktop, will this work?

    For your second question, can you have a top bar menu with icons, yes, you can manually create a menu with icons and add it to the topbar at: Enfold Theme Options > Header > Extra Elements > Phone Number or small info text
    This post gives the basic idea on how to do this.
    Let us know if this helps.

    Best regards,
    Mike

    in reply to: Remove Foot column from widget #1007588

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

    Best regards,
    Mike

    in reply to: How to hoover telephone info span in top bar? #1007587

    Hi,
    Can you please include a admin login in the private content area so we can assist?

    Best regards,
    Mike

    in reply to: There is an issue related to CSS #1007584

    Hey erkuto,
    Thank you for the login, I tested using Chrome on Windows, and found many error in the plugin before saving, these are due to the fields with in the plugin not having unique values.
    Yet even after saving Chrome forgives the errors and allows you to move between the tabs, perhaps the Safari browser is not for giving of the errors.
    Have you tried to fill out the form before trying to save it? Does it still lock up? Please try using Chrome to see it it works for you.
    Please see the screen cast in Private Content area.

    Best regards,
    Mike

    in reply to: mobile menu is just white #1007579

    Hey webSpezialisten,
    In the advanced styling you had “Menu Links in overlay/slide out” as white, this was for the mobile menu links.
    I changed to #5e5a5e, but feel free to adjust to any color you like.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Password-Protect Page Not Working in Google Chrome #1007577

    Hi,
    I did some more testing using Chrome incognito, and found that if I try to login I get redirected back to the login prompt, but if I do a “hard refresh” the page shows.
    2018-09-09_062615

    So I believe that this is related to caching, are you using any caching plugins?
    I did find another post on the WordPress forums that talked about your issue and caching, which makes since now:

    We had to add our password protected pages to the “do not cache” list which seems to have resolved it.

    So if you are using a caching plugin try to exclude the page from the cache, if you are not using a plugin but are using WP Engine, try adjusting the cache-control headers

    Please let us know if this helps.

    Best regards,
    Mike

    in reply to: Password-Protect Page Not Working in Google Chrome #1007570

    Hi,
    I found many people have had this issue using the default WP theme, this was the only solution that I found…

    I had this

    <meta name="referrer" content="no-referrer">

    in the -section of the template.
    Once removed, the password protection works again!

    it seems to be a new WP issue, let us know if this helps.

    Password Protected Pages Not Working
    Password protected page not accessible / wp-login.php?action=postpass error

    Best regards,
    Mike

    in reply to: How to hoover telephone info span in top bar? #1007522

    Hey Arjan,
    I recommend turning the phone & email into links so they will work across all platforms, this will also allow them to easily have a “on hover” effect
    Your “hover” css would look like this:

    .phone-info a:hover {
    color: red !important; 
    }

    feel free to adjust the color to suit.

    Please read this article about formatting your phone number for cross platform devices
    Here is how to create email links
    Please give this a try & let us know if you need any assistance with it.

    Best regards,
    Mike

    in reply to: Password-Protect Page Not Working in Google Chrome #1007521

    Hi,
    Thanks for the link, the page was password protected for me using Chrome, actually the password you posted didn’t work so I was unable to see the protected content, which is fine because you only wanted to make sure it was protected.
    Please see the screenshot in Private Content area.
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

Viewing 30 posts - 24,961 through 24,990 (of 34,591 total)