Forum Replies Created

Viewing 30 posts - 26,581 through 26,610 (of 34,867 total)
  • Author
    Posts
  • in reply to: Enfold Audio Player #978842

    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: Google Analytics tracking code not working #978841

    Hi,
    So the code work showing a hit in GA realtime monitor, but you see the above error in search console? Is it under Crawl Errors?
    The code I entered was from GA.
    Are you using a AdBlocker?
    Typically the realtime monitor will show a hit, but the search console takes another day to start working.

    Best regards,
    Mike

    in reply to: debug mode not activating #978832

    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: Which Template? #978707

    Hey Prateek Kapoor,
    Yes, that site uses the Enfold theme, but it looks like they have created their own layout, which is very easy with Enfold.
    You can see our demos here or you can create you own layout.
    Thank you for contacting us and considering Enfold.

    Best regards,
    Mike

    in reply to: debug mode not activating #978702

    Hi,
    Your functions.php file is mis-spelled, you have
    funcions.php, please correct via ftp
    Also the functions.php must always begin with

    <?php

    you had this mixed in the middle of your code.
    But note that sometimes you will have a function that adds a script, which will need to add the closing php code & opening php code around the script, this would be correct.

    Best regards,
    Mike

    in reply to: Related Posts | You Might Also Like #978694

    Hi,
    Glad to hear, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Admin message. #978691

    Hi,

    @Dee007
    Please explain a little more, you are having the same issue, as in, you can’t clear a message on the admin dashboard?
    but now you can’t access anything, as in, after you added the code above?
    Have you tried removing the code above via FTP?
    Please open a new thread so we can assist, and include your admin login, anf ftp access in the Private Content area, but as this is not your thread your login info will not be private here.

    Best regards,
    Mike

    in reply to: Aspect Ratio of Embedded YouTube Video #978685

    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: Different logo for specific pages needed #978684

    Hi,
    I have added the code in your child theme functions.php with your new image url, and it seems to be working good.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Error selecting image for easy slider #978411

    Hi,
    I have tested the easy slider in IE11 on your site and my localhost and had the same error. I didn’t find any settings that would help, and I tried editing the script that was giving the error to remove the “strict mode” but it just created different errors.
    Sorry to say that I don’t have a solution for this, other than using a newer browser.
    I read above that your client can’t use another browser, is this due to the limitations of the hardware?
    Perhaps using a portable browser on a usb drive is a option?
    Google Chrome Portable
    Firefox Portable

    Best regards,
    Mike

    Hey jonna_gaertner,
    To have the mobile menu show after scroll, try this code in the General Styling > Quick CSS field:

    @media only screen and (max-width: 767px) {
      .responsive #top #wrap_all #header {
        position: fixed !important; 
      }
    .responsive #top #wrap_all #header.av_header_transparency {
        display: none !important;
    }
    }

    Best regards,
    Mike

    in reply to: Social media Icons stick together (only mobile version) #978366

    Hey jonna_gaertner,
    Please enable the custom class field for the advanced layout builder by going to: Enfold Theme Options > Layour Builder > Show element options for developers
    and then follow these instructions. If this doesn’t work for you, please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Different logo for specific pages needed #978359

    Hi,
    Thanks for the login, please include ftp access in the Private Content area so we can try adding the code to the functions.php

    Best regards,
    Mike

    in reply to: Different logo for specific pages needed #978248

    Hey steenvreter,
    As I understand your request, you would like to change the logo for your management page and all child pages of it. Try adding this code to the end of your functions.php file in Appearance > Editor:

    function is_tree($pid)
    {
      global $post;
    
      $ancestors = get_post_ancestors($post->$pid);
      $root = count($ancestors) - 1;
      $parent = $ancestors[$root];
    
      if(is_page() && (is_page($pid) || $post->post_parent == $pid || in_array($pid, $ancestors)))
      {
        return true;
      }
      else
      {
        return false;
      }
    };
    
    add_filter('avf_logo','av_change_logo');
    function av_change_logo($logo)
    {
        if (is_tree(1406)) 
    {
    	$logo = "https://kriesi.at/themes/enfold-minimal-portfolio/wp-content/uploads/sites/51/2015/07/logo_minimal_portfolio.png";
    }
    
        return $logo;
    }

    I have added the correct page ID “1406” for you, you only need to change the logo image url.
    I tested this on my localhost and it seemed to work correctly.

    Best regards,
    Mike

    in reply to: How to Add Search Bar to Logo Area #978234

    Hi,
    To change the background color of the ajax search fro transparent to a color, Try this code in the General Styling > Quick CSS field:

    .header_color .avia-tt {
        background-color: purple;
    }

    please adjust the color to suit.
    To remove the date in the ajax search, please try this code:

    .ajax_search_response span.ajax_search_excerpt {
    display: none !important;
    }

    To change the color of the ajax search field, Please try this code:

    #top .header_color #searchform input[type='text'] {
    background-color: red !important;
    }

    Best regards,
    Mike

    in reply to: Fatal error: …line127 #978228

    Hey ellalillo,
    I believe you are getting this error because you “by-passed” the file, please rename your enfold theme folder to “enfold-old” and upload a new version as “enfold” to see if this solves.
    If not please include ftp access & admin access in the Private Content area.

    Best regards,
    Mike

    in reply to: Parallax Positioning #978225

    Hey silverhorne,
    I have taken a look and believe that you would like to move the barn to the top of the screen in mobile view, is this correct?
    Try this code in the General Styling > Quick CSS field:

    @media only screen and (max-width: 767px) { 
    #top.page-id-3959 #av_section_1 .av-parallax-inner {
    background-position: -350px -50px !important; 
    }
    }
    

    Please see screenshot in Private Content area.
    In tablet view and up, the barn seems to be at the top of the screen, but let us know if you wish it adjusted more, or if I misunderstood your question.

    Best regards,
    Mike

    in reply to: Homepage won't display on mobile #978221

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

    Best regards,
    Mike

    in reply to: Custom CSS not working #978220

    Hey arnacampbell,
    I believe what happen was during your move to Enfold you/we linked to some images on your old WP install, and you have now removed those files, so your links to them now won’t work.
    I have corrected them to point to your new files. I believe I found all of the bad links, but Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Aspect Ratio of Embedded YouTube Video #978217

    Hi,
    Thank you for sharing your solution, I’m sure this will be helpful.
    Unless there is anything else we can help with, shall we close this then?

    Best regards,
    Mike

    in reply to: Demo content failed to upload error message #978215

    Hi,
    Glad to hear, Thank you for using Enfold.

    Best regards,
    Mike

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

    Best regards,
    Mike

    Hi,
    Glad to hear you found a solution, unless there is anything else we can help with this topic, shall we close this then?

    Best regards,
    Mike

    in reply to: Scrolling text new color #977917

    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

    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: Image full width on ONE side of the content #977897

    Hi,
    Thank you for the login, I removed the column background-image and added a image element, and then adjusted the text size slightly for tablet so the image & text would be the same height and the buttons would line up side-by-side. I see you had a minimum height of 500px for the color section, I was not sure if you really wanted this for the tablet view, but I thought 350px looked a little better.
    Please clear your browser cache and check. Please see screenshot in Private Content area.
    Here’s the css I used:

    @media only screen and (min-width: 768px) and (max-width: 900px) { 
    .white_text h1 {
    font-size: 40px !important;
    }
    .white_text p {
    font-size: 20px !important;
    line-height: 20px !important; 
    }
    .green_section .container {
    padding: 0 25px !important; 
    height: 350px !important; 
    }
    }

    Best regards,
    Mike

    in reply to: Removing the Separation Borders in the Header #977804

    Hi,
    This code is for the Edge & Firefox browsers:

    #top .avia-search-tooltip input[type=”text”]::-moz-placeholder {
    color: #000 !important;
    }
    #top .avia-search-tooltip input[type=”text”]:-ms-input-placeholder {
    color: #000 !important;
    }

    to hide the “view all results” please add:

    .ajax_search_entry.ajax_search_entry_view_all {
    display: none !important;
    }

    Did you want the background to be blue, or is this the code not working?
    What is the strange effect when you click into the placeholder region?

    Best regards,
    Mike

    in reply to: Demo content failed to upload error message #977781

    Hi,

    @matt_foundry

    Please open a new thread so we can assist, since this is not your thread you will not see anything we write in the Private Content area. Please include which webhost you are using.

    Please check that your webhost matches these minimum PHP setting:
    PHP Version: 5.6.x
    PHP Time Limit: No limit
    PHP Memory Limit: 256M
    PHP Post Max Size: 50M
    PHP Max Upload Size: 20M

    Best regards,
    Mike

    in reply to: Cannot customize theme/other issues #977777

    Hi,
    Sorry the SFTP access gave me a empty directory.
    Though the WordPress editor I checked your functions.php, header.php, & footer.php for added scripts that could cause a conflict, but found none. Do you recall adding any scripts?
    Please try disabling your plugins to see if that gives you access to your customizer.

    Best regards,
    Mike

    in reply to: HIDING BUTTONS ON MOBILE #977770

    Hi,
    Sorry I don’t think I understand, can you provide a mockup of what you would like to see?

    Best regards,
    Mike

Viewing 30 posts - 26,581 through 26,610 (of 34,867 total)