Forum Replies Created

Viewing 30 posts - 19,321 through 19,350 (of 35,068 total)
  • Author
    Posts
  • in reply to: Upgrade from version 3.8 #1153576

    Hey udis,
    Thanks for the login, since your PHP is v7.1 and your other setting look good you should be able to update fine, but you will have to update via FTP, The easiest and safest way to do this is to download the newest version from Theme Forest and rename your current theme folder to “enfold-old” via ftp then upload the new “enfold” folder and check that your site is working correctly.
    Once you are happy you can delete the “enfold-old” folder via ftp, (not the WP theme page)
    Should for some reason you wish to roll-back to the old version, it’s easy to do, simply rename the new “enfold” folder to “enfold-new” via ftp and then rename “enfold-old” to “enfold” then refresh your page.
    Please don’t try to overwrite the theme folder, as this will leave old files behind and cause errors.

    Best regards,
    Mike

    in reply to: Image will not appear on my hompage #1153575

    Hey lepung,
    I took a look at your page and found you had the error lazySizes is not defined but I didn’t see a plugin called lazySizes, but I did find Autoptimize that often lazy loads images, I turned off a couple of JS features and most of your page loads now, please try disabling your plugins one at a time and clear your cache each time, until your slider shows, then you will know the cause.

    Best regards,
    Mike

    in reply to: Only logo loads on page after Enfold update #1153571

    Hey Kurt,
    I took a look at your site and see that your PHP version is 5.6 which WordPress is warning you about, please ask your webhost to update to 7.+
    I don’t see how your tables were showing, was this with ninja tables? Is there a chance that your old theme had some custom code in the functions.php to make this work? Sometimes people do that and then forget about it.
    Does your webhost have a backup that they can restore? Often they will automatically make a backup every couple of days.

    Best regards,
    Mike

    in reply to: add a Facebook LIKE button to my website #1153566

    Hey Moses,
    Sorry for the late reply, I added this to your functions.php so the FaceBook script will load in your header,
    I got the code from the Like button page on Facebook developers website

    function fb_like() { 
        ?>
    <div id="fb-root"> </div>
    <script async defer crossorigin="anonymous" src="https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v5.0"></script>
    	<?php }
    	
      add_action('wp_head', 'fb_like');

    then I added this code to your footer widget:

    <iframe src="https://www.facebook.com/plugins/like.php?href=https%3A%2F%2Fgeeksmodo.com%2F&width=70&layout=box_count&action=like&size=small&show_faces=true&share=true&height=65&appId" width="70" height="65" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowTransparency="true" allow="encrypted-media"></iframe>

    and here is a screenshot of it above your twitter as requested:
    2019-11-03-150519
    Thank you for your patience.

    Best regards,
    Mike

    in reply to: Fullscreen Slider not linking #1153557

    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: "av-screen-reader-only" link #1153555

    Hi,
    Sorry for the late reply, this is for screen readers and to be A11y & ARIA available. Hidden text for screen readers doesn’t affect SEO Here is more about Accessibility and SEO This also supports the Google Lighthouse in which accessibility is part of your SEO score.
    But if you really want to remove it, please go to \enfold\config-templatebuilder\avia-shortcodes\columns.php
    line 1175 and find:

    $screen_reader_link .=	'<a class="av-screen-reader-only" href=' . esc_attr( $link ) . " {$screen_reader}" . '>';

    then remove av-screen-reader-only and add your own class.

    Best regards,
    Mike

    Hey Peter,
    Thank you for the kind words, and for allowing us to be of service.
    Thanks for using Enfold, Hitchhiker :)

    Best regards,
    Mike

    in reply to: Icon Box and Youtube video #1153545

    Hey Pixie-Bob,
    Sorry for the late reply, but we don’t have control over what youtube shows, and there is nothing in our code that makes the Icon Box different, for youtube. But there used to be an option within the youtube links that you could specify that suggested videos were from your channel, please see this post but I’m not sure if it still works, youtube has made a lot of changes.

    Best regards,
    Mike

    in reply to: Placeholder for a Language Switcher #1153544

    Hi,
    Sorry I don’t think we have one, but we do have live demos of all of our demos as examples.

    Best regards,
    Mike

    in reply to: Trying to duplicate customized sales page… #1153542

    Hey Moondreamer21,
    Thanks for the links, I have adjusted your new page and added all of the necessary css in a code block on the page, it is not in your Quick CSS, it is in a code block so you can copy it in the future, here it is again:

    .html_entry_id_17448 #main { 
    	/*size of page*/
    max-width: 80% !important; margin: 0px auto !important; 
    }
    html.html_entry_id_17448 {
    /*background of page*/
    background: url("https://www.barrelracingtips.com/wp-content/uploads/2018/07/booksbodybg.jpg") #330000 !important; 
    }
    #top.page-id-17448 #header {
    /*remove page header*/
    display: none !important;
    }
    #top.page-id-17448 .container_wrap.title_container {
    /*remove title container*/
    display: none !important;
    }
    .html_header_top.html_header_sticky #top.page-id-17448 #wrap_all #main {
    /*remove padding*/
        padding-top: 0px!important;
    }
    #top.page-id-17448 #after_full_slider_1.main_color {
    /*remove background-image after slider*/
        background-image: none !important; 
    }
    @media only screen and (max-width: 430px) { 
    /*mobile adjustment*/
    #top.page-id-17448 .avia-slide-wrap {
    height: 190px !important; 
    }
    #top.page-id-17448 .avia-slide-wrap img {
        top: 31% !important; 
    }
    }
    @media only screen and (min-width: 431px) and (max-width: 1023px) { 
    /*more mobile adjustment*/
    #top.page-id-17448 .avia-slide-wrap {
    height: 360px !important; 
    }
    #top.page-id-17448 .avia-slide-wrap img {
        top: 60px !important; 
    }
    }
    

    Now please note the page id 17448 it is the page id of your new page, if you make another page you will need to change this number in all of the code above.
    I also copied the form from your first book page that was in a code block to your new page, just for an example should you want to create a new form in the future, heres the code again:

    <form id="optin" class="optin" action="https://www.aweber.com/scripts/addlead.pl" method="post" style="
        width: 100%;position:absolute;
    ">
    <div style="display: none;"><input name="meta_web_form_id" type="hidden" value="1944510671">
    <input name="meta_split_id" type="hidden" value="">
    <input name="listname" type="hidden" value="stbrsamazon">
    <input id="redirect_2f105a715ab5b2b3e16de5031a3d8e13" name="redirect" type="hidden" value="https://www.barrelracingtips.com/free-speed-development-guide">
    <input name="meta_redirect_onlist" type="hidden" value="https://www.barrelracingtips.com/already-received">
    <input name="meta_adtracking" type="hidden" value="Secrets_to_Barrel_Racing_Success_Free_Gift_Header_Form">
    <input name="meta_message" type="hidden" value="1">
    <input name="meta_required" type="hidden" value="name,email">
    <input name="meta_tooltip" type="hidden" value="name||Name,,email||Email,,custom Amazon Order Number||Amazon Order Number"></div>
    <div style="
        width: 100%;
    ">
    <div id="name" class="af2-element" style="
        width: 10%;
        /* max-width: 140px; */
        display: inline-block;
    "><input class="text name" tabindex="600" name="name" required="" type="text" placeholder="Name" style="
        background: white;
    "></div>
    <div id="email" class="af2-element" style="
        width: 10%;
        display: inline-block;
    "><input class="text name" tabindex="601" name="email" required="" type="email" placeholder="Email" style="
        background: white;
    "></div>
    <div id="number" class="af2-element" style="
        width: 20%;
        display: inline-block;
    "><input class="text" tabindex="602" name="custom Amazon Order Number" required="" type="text" placeholder="Amazon Order Number" style="
        background: white;
    "></div>
    <div id="submitbutton" class="af-element buttonContainer newbutton" style="
        width: 10%;
        display: inline-block;
    "><input class="submit" tabindex="603" name="submit" type="submit" value="Send it!" style="
        border: solid thin darkgray;
        background-color: lightgrey;
        padding: 10px;
        /* border-radius: 2px; */
        color: black;
        margin: 5px;
        height: 35px;
    "></div>
    </div>
    <div style="display: none;"></div>
    </form>

    and that should be it, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: remove the standard WooCommerce Sort By #1153537

    Hi,
    Thanks for the screenshots, but I tested your page with Chrome, Firefox, Edge & IE11 on Windows 10 and didn’t see your error, only like the correct image. I didn’t recognize your browser from the screenshot, is it Safari? Perhaps an old version, I don’t see the 3 top left-hand dots for window management?

    Best regards,
    Mike

    in reply to: Accordion does not look good / looks wrong #1153534

    Hi,
    Thanks for the link, this looks like a javascript error but I’m not seeing an error code, please ensure that Enfold Theme Options > Performance > Load jQuery in your footer is not enabled and that you don’t have any plugins doing the same or minifying the js.
    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: Category widget #1153531

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

    label.screen-reader-text[for='cat'] {
    	display: none !important;
    }

    Best regards,
    Mike

    in reply to: Dont'show categories #1153530

    Hey Charlotte,
    To hide the categories, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top #main .blog-categories.minor-meta {
    	display: none !important;
    }

    To delete the category pages, please see this article.

    Best regards,
    Mike

    in reply to: Menu won't show #1153529

    Hey Kurt,
    Thanks for the link, you didn’t do anything wrong, it’s not ment to show for desktop, I also see you are using a very old Enfold v3.8 Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top #header_main #advanced_menu_toggle,#top #wrap_all #advanced_menu_hide {
    	display: block !important;
    }

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

    Best regards,
    Mike

    in reply to: columns on Ipad portrait not centered #1153525

    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: Burger menu not working for blog post pages on mobile? #1153524

    Hi,
    I tried to reproduce this error on my localhost but couldn’t, but in my tests, I realized that when it is working correctly you lose the ability to use the parent page in mobile, and since every menu item has the arrow next to it its hard to tell which ones have children.
    I would recommend unchecking the option “Hide mobile menu sub-menu items” so that people can see the option and perhaps entice them to explore more of your pages, and allow you to keep using the parent pages.
    2019-11-03-092918
    What do you think?
    Thanks for the kind words :)

    Best regards,
    Mike

    in reply to: Set the video preview size of the thumbnail #1153518

    Hi,
    Thanks for the link, the following css will set the width to 400px and then the natural height is 266px, so in the code you will see height set to auto, you can change it to 300px, but then the image is skewed a little, please try both ways and see which you like. I assumed you would want the image centered so I added “margin: auto;” but you can remove this if you wish.
    Another option is to use the Simple Image Sizes plugin, this would let you change the image sizes for every type in WordPress, check out this tutorial.
    Anyways here is the css, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top #main .big-preview a img {
        width: 400px !important;
        height: auto;
        margin: auto;
    }

    Best regards,
    Mike

    in reply to: Video Volume control bug #1153516

    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

    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: Can't save the menu because it times out #1153508

    Hi,
    Sorry for the late reply and thanks for the login, I tried to update the “locations” menu expecting to see an error in the console but it successfully updated after adding an item and then removing it:
    2019-11-03-064553
    although it did take quite a long time, I found no errors.
    What webhost are you using? I see the frontend is loading quickly.
    I see your WordPress > Tools > Site Health Status says “Some files are not writable by WordPress”
    2019-11-03-065642
    this could explain why the frontend is loading quickly but some of the backend is having issuses.
    I don’t see a security plugin, but you have these two warnings:
    A plugin has prevented updates by disabling wp_version_check()
    WordPress security and maintenance releases are blocked by define( 'WP_AUTO_UPDATE_CORE', false );
    So with some files not writable and other functions disabled it seems to point towards either a customized WordPress install, some webhosts offer this, or some kind of security / firewall setting perhaps at the server level?

    So as a test I created a menu on my test install that is about double of yours and it easily saved quickly, so I don’t believe this is due to some menu size limit. I recommend looking into my findings above.

    Best regards,
    Mike

    Hi,
    Glad to help, we will leave this open for your feedback, thanks for using Enfold.

    Best regards,
    Mike

    in reply to: How to translate "I agree to the …" #1153435

    Hey Malene,
    The I agree to the terms and conditions laid out in the Privacy Policy is in the theme’s language file, I found it with Poedit, if you translate this I will change it for you and then you can upload to your site.
    I assume your language file is “da_DK.po” correct?

    Best regards,
    Mike

    in reply to: Featured image 'title' is not as expected. #1153434

    Hey FeedXL2019,
    Thanks for the screenshots and link, this is for low vision accessibility because all browsers don’t read the alt tag of images.
    To remove the titles Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script(){
      ?>
      <script>
    jQuery(window).load(function(){
    jQuery('a').removeAttr('title');
    jQuery('img').removeAttr('title');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    Best regards,
    Mike

    in reply to: Fullscreen Slider not linking #1153433

    Hey designyvr,
    Thanks for the login, I see that you had the option “Use first slides caption as permanent caption” checked,
    If checked the caption will be placed on top of the slider. Please be aware that all slideshow link settings and other captions will be ignored then
    I unchecked this for you and now your links work, but you will need to add the caption to two of your slides.

    Best regards,
    Mike

    in reply to: Wrong mobile presentation of text and images #1153432

    Hi,
    Thanks for the screenshots and the link, 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) { 
      #top.page-id-150 #activities.entry-content-wrapper.avia-builder-el-15 {
      display: flex !important; 
      flex-wrap: wrap !important; 
      }
      #top.page-id-150 #activities .flex_cell.avia-builder-el-16.avia-builder-el-first {
          order: 2 !important; 
      }
      #top.page-id-150 #activities .flex_cell.avia-builder-el-19.avia-builder-el-last {
          order: 1 !important; 
      }
      }

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

    Best regards,
    Mike

    Hey Thomas Martin,
    Thank you for asking, your Enfold license is for your root domain, sub-domains are allowed for testing, staging, or even for different parts such as a landing page on the root and a blog on the sub-domain.
    Thanks for using Enfold.

    Best regards,
    Mike

    Hi,
    I checked your page with Edge, but the sub-menu worked correctly, Please see the screenshot in Private Content area.

    Best regards,
    Mike

    Hey m,
    Thanks for the login, I tried to update your theme expecting to see the error, but I didn’t and the theme is now updated.
    2019-11-02-201208

    Best regards,
    Mike

    in reply to: enfold easy slider caption background colour #1153423

    Hi,
    Sorry for the late reply, I have checked your urls and they are working for me, but it sounds like you moved the files without changing the database, the theme files contain no info about the location, this is in the WordPress config file and the database.
    I recommend using a plugin such as duplicator to move your site because it also adjusts your database.

    Best regards,
    Mike

Viewing 30 posts - 19,321 through 19,350 (of 35,068 total)