Forum Replies Created

Viewing 30 posts - 24,421 through 24,450 (of 25,536 total)
  • Author
    Posts
  • in reply to: Contact Form is NOT sending Emails #716772

    Hey!

    I’ve tried multiple things and it seems to be working on other pages except for the homepage. This is what I did:

    1. Installed Contact Form 7, tested the form and it’s working
    2. Created a new page named it test, tested the enfold form and it works (link in private content)
    3. Duplicated the homepage named it info 101, tested the enfold form and it works (link in private content)

    The issue is a bit weird but can you try the 2 enfold form (in the links below) and check if it works on your end too?

    Best regards,
    Nikko

    Hi!

    Thanks for your kind words. :) and thanks for using Enfold :)

    Best regards,
    Nikko

    Hi!

    I’m not really sure as this is the first time I encountered it, it seems like having sumome causes some delay in rendering css that’s why we see that shift.

    Cheers!
    Nikko

    in reply to: Top bar #716741

    Hi!

    The one in the screenshot you provided has the facebook button, which I think is generated by some facebook code. This is the code I’d like to give but might need to be modified a bit to make it run smoothly when some codes are added but if it’s just html text then it won’t have any problem. Just add this to functions.php:

    function add_custom_header_script(){
    ?>
    <script type="text/javascript">
    (function($){
    	function insert_to_header() {
    		jQuery("<span>Your Code Here</span>").insertAfter(jQuery("#header_meta").find(".social_bookmarks"));
    	}
    
    	insert_to_header();
    })(jQuery);
    </script>
    <?php 
    }
    add_action('wp_footer', 'add_custom_header_script');

    Just replace Your Code Here, if you’re not sure just post the facebook code and I’ll adjust the script based on that.

    Cheers!
    Nikko

    Hi!

    I have replaced this code in your Quick CSS:

    b, strong {
        font-weight: 700;
    }

    to this one:

    b, strong {
        font-weight: 600;
    }

    Seems to be working fine now after activating sumome, let us know if this is good on your end also. :)

    Regards,
    Nikko

    in reply to: Advanced Layerslider on Mobile Devices #716733

    Hey!

    I have replaced the code I gave you to this one:

    @media only screen and (max-width:1024px) {
      #top.page-id-174 #wrap_all .ls-wp-fullwidth-container .ls-slide {
        display: flex !important;
        align-items: center;
      }
    
      #top.page-id-174 .avia-layerslider .ls-slide p {
        font-size: 62px !important;
        height: auto !important;
        line-height: 1.2 !important;
        padding: 50px 120px !important;
        position: static;
        width: 100% !important;
      }
    }
    
    @media only screen and (max-width:767px) {
      #top.page-id-174 .avia-layerslider .ls-slide p {
        font-size: 28px !important;
        padding: 0 20px !important;
      }
    }
    

    Let us know if it’s good on your end too :)

    Cheers!
    Nikko

    in reply to: Problem with H #716700

    Hi,

    For empty h3 tags, I found that it was showing when you change the editor from Visual to Text in the textblock, I just removed the empty h3 tags. For empty h1 tag, kindly modify functions-enfold.php and find this code (line 404):

    if($header_settings['header_title_bar'] == 'breadcrumbs_only') $args['title'] = '';

    and replace it with:

    if($header_settings['header_title_bar'] == 'breadcrumbs_only') $args['html'] = "<div class='{class} title_container'><div class='container'>{additions}</div></div>";

    Let us know if it works :)

    Best regards,
    Nikko

    in reply to: Undefined index: index | ERROR MESSAGES AFTER SERVER CHANGE #716691

    Hi!

    Can you try to delete cache and also remove super cache, instructions can be found here: https://wordpress.org/plugins/wp-super-cache/other_notes/ let us know if the issue is resolved after doing it.

    Regards,
    Nikko

    Hey!

    No problem. Glad that this is fixed :)

    Best regards,
    Nikko

    in reply to: Hamburger Menu appearing but not working #716678

    Hi,

    It’s possible but you need to enable the new hamburger menu and it would be like the Creative Studio Demo (but this would still require a bit of customization and the code I gave you must be removed) by going to Enfold > Header > Display of menu items set to Display as icon. But if you want to retain the same settings and have the new burger menu I’m afraid it would take so much time and would be outside the scope of our support, please feel free to request – or vote if already requested – such feature on Enfold feature request form.

    Best regards,
    Nikko

    in reply to: Custom Font Jumps – Do Not Work #716419

    Hi Tflores87!

    What happens is your site uses the available font while waiting for your Proxima Nova font to load, I think what you can do is to enable preloader or to put your fonts in CDN (so your fonts would be loaded in parallel with your website), you can see more information here: https://davidwalsh.name/font-loading

    Best regards,
    Nikko

    in reply to: Explorer 10 : Column problem #716399

    Hey!

    Glad that you fixed it :)

    Regards,
    Nikko

    in reply to: mega menu submenu is off page to right #716398

    Hi Jim,

    I have added this code in your Quick CSS:

    @media only screen and (min-width:1180px) {
      #menu-item-3406 .avia_mega_div {
        left: auto !important;
      }
    }

    It should work fine now. Just let us know if this is good on your end too :)

    Regards,
    Nikko

    Hi!

    I still couldn’t login with the login details given and didn’t have any issues that was appearing before, try clearing your browser (I also cleared the cache on my end), try also refreshing the page with ctrl + f5.

    Regards,
    Nikko

    in reply to: Explorer 10 : Column problem #716385

    Hi!

    Does it appear on all pages or just a specific page? I tried to find the one in the screenshot but I couldn’t seem to find it. Tried checking it with IE11, emulation mode of IE10 and IETester, doesn’t seem to find anything like in the screenshot.

    Cheers!
    Nikko

    in reply to: Hamburger Menu appearing but not working #716378

    Hi!

    Try adding this code in functions.php:

    function add_custom_hamburger(){
    ?>
    <script type="text/javascript">
    (function($){
      function newburger() {
        $('#advanced_menu_toggle').append('<span class="av-hamburger av-hamburger--spin av-js-hamburger"><span class="av-hamburger-box"><span class="av-hamburger-inner"></span>Menu</span></span>');
      }
    
      newburger();
    })(jQuery);
    </script>
    <?php 
    }
    add_action('wp_footer', 'add_custom_hamburger');

    Then add this code to Quick CSS (located in Enfold > General Styling):

    #advanced_menu_toggle {
        border: 0 !important;
    }
    
    #advanced_menu_toggle:before {
        display: none !important;
    }
    
    @media only screen and (max-width:989px) {
      span.av-hamburger-box {
        color: transparent !important;
        position: relative;
        display: flex;
        align-items: center;
      }
    }

    Let us know if it works :)

    Cheers!
    Nikko

    • This reply was modified 8 years, 1 month ago by Nikko.
    in reply to: Autorespond mail #716370

    Hi sieb1967!

    Try adding this code in functions.php:

    add_filter('avf_form_mail_header', 'add_bcc_to_form', 10, 3);
    function add_bcc_to_form($header, $new_post, $form_params){
    	$header .= 'Bcc:  (Email address hidden if logged out) '."\r\n";
    	return $header;
    }

    Just replace (Email address hidden if logged out) with your name. Hope this helps :)

    Best regards,
    Nikko

    Hi!

    I checked your site and I believe you are referring to the tabs below your portfolio item page (Full Description, Reviews, Kit Requirements, etc), it seems to be looking good? is it already fixed? if not can you post a screenshot the issue.

    Cheers!
    Nikko

    in reply to: problem with Avia editor as editor #716365

    Hey!

    I inspected it using administrator and editor account, though I don’t see any error or any restrictions telling that the account doesn’t have enough privileges but when using editor the content just doesn’t load and you just see a spinning icon? is that correct? if yes, I couldn’t identify the cause since there was no error or anything but I tried duplicating the page (link below in private content), can you try to test there if it’s there’s any issues? I tried using editor accound and didn’t have any issues with editing.

    Cheers!
    Nikko

    Hey!

    Try to add this code in Quick CSS (located in Enfold > General Styling):

    #top .main_color input[type="email"] {
        background: #fff !important;
        border: 1px solid #6fbeca !important;
    }

    Let us know if it works.

    Cheers!
    Nikko

    in reply to: Internet Explorer Rendering Problem #715978

    Hey!

    Glad that it’s fixed :) Try other minifying plugins that won’t cause any issues :)

    Regards,
    Nikko

    in reply to: Restore Portfolio posts #715941

    Hi!

    I checked on your portfolio it’s hidden but if you go to the right url(check private content) you can go right through it but it’s all empty, I’m not sure if there’s a way to retrieve them since it may already have been removed from database. Though the images might still be in the uploads folder.

    Regards,
    Nikko

    in reply to: Internet Explorer Rendering Problem #715920

    Hey!

    I have checked it via IETester and it seems not to load but I tried using a laptop with IE11 and the easy slider works just fine, there’s an emulation mode in IE11 which allows it to use IE10 and IE9 and it works just fine also, Easy Slider and Masonry displays and functions properly. It’s hard to debug with IE since it doesn’t have the same inspector with Chrome or Firefox, I hope you would extend your patience on this. Can you post a screenshot on IE9, 10 and 11 please?

    Best regards,
    Nikko

    in reply to: sidebar logo icons #715918

    Hey!

    Can you give us a link to the page in the screenshot? I checked the link you gave before and it’s working just fine (see private content)

    Cheers!
    Nikko

    in reply to: Advanced Layout Builder for products doesn’t work #715916

    Hey!

    I couldn’t find any errors and I apologize I misunderstood the issue, I thought you were referring to the Shop page not the individual product pages. Advanced Layout Builder does not use the woocommerce loop and if enabled it gives you full control over the page but it also overrides the product page layout set by woocommerce. Please use the default editor on product pages, though Advanced Layout Builder isn’t recommended to use on product pages, you can still use shortcodes that comes with Enfold. Hope this helps.

    Cheers!
    Nikko

    in reply to: Can I have a blog and a news page? #715893

    Hi!

    Glad we could help :)

    Cheers!
    Nikko

    in reply to: Can I have a blog and a news page? #715872

    Hi!

    This should be fixed now. Here is what I did:

    1. Go to Settings > Reading and set Front page displays to Your latest posts (this is to make sure that the wordpress doesn’t interfere with setting of homepage and blog since we are using enfold’s theme option
    2. Go to Enfold > Blog Layout > set Blog Layout to Use the advance layout editor to build your own blog layout (simply edit the page you have chosen in Enfold->Theme Options as a blog page) (setting this would allow make a customized blog layout in this case News)
    3. Go to News page edit it, add a Color Section and Blogposts then just select the News category

    Let us know if this is good. Hope the information above is helpful :)

    Cheers!
    Nikko

    in reply to: Top bar #715871

    Hey!

    It’s just an online paste tool where you can paste in your code, we usually use it when posting long codes. Here is the link to pastebin: http://pastebin.com/index.php

    Best regards,
    Nikko

    in reply to: Add categories links above post title in Featured image slider #715868

    Hi!

    Please replace your whole code with this one: http://pastebin.com/LLLxLFGT
    Let us know if it works fine :)

    Best regards,
    Nikko

    in reply to: How to setup a Blog Grid please #715843

    Hey!

    Glad we could help. :)

    Cheers!
    Nikko

Viewing 30 posts - 24,421 through 24,450 (of 25,536 total)