Forum Replies Created

Viewing 30 posts - 21,811 through 21,840 (of 25,536 total)
  • Author
    Posts
  • Hi,

    Yes, that is still applicable, if that doesn’t work on your end, just give us the link so we can inspect it further and give you a more accurate solution for your site :)

    Best regards,
    Nikko

    in reply to: Add class to each post in grid? #790052

    Hi,

    If you are using a child theme, I would suggest doing the instructions in this thread: http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/

    Then copy postslider.php (located in enfold/config-templatebuilder/avia-shortcodes) to the shortcodes folder of the child theme, then find this code (line 297 in Enfold 4.0.5):

    $post_class = "post-entry post-entry-{$the_id} slide-entry-overview slide-loop-{$post_loop_count} slide-parity-{$parity} {$last}";

    Just insert the class that you want to add, it would be better if it’s dynamic. Hope this helps :)

    Best regards,
    Nikko

    in reply to: Visual editor broekn #790046

    Hi,

    Thanks for providing us with admin, cpanel and ftp access, though ftp access doesn’t have any content but don’t mind this :)

    It should be fixed now. I have found out that the issue was caused by this code in functions.php:

    
    function defer_parsing_of_js ( $url ) {
    if ( FALSE === strpos( $url, '.js' ) ) return $url;
    if ( strpos( $url, 'jquery.js' ) ) return $url;
    return "$url' defer ";
    }
    add_filter( 'clean_url', 'defer_parsing_of_js', 11, 1 );

    I have replaced it with this code:

    
    if (!(is_admin() )) {
        function defer_parsing_of_js ( $url ) {
            if ( FALSE === strpos( $url, '.js' ) ) return $url;
            if ( strpos( $url, 'jquery.js' ) ) return $url;
            return "$url' defer onload='";
        }
        add_filter( 'clean_url', 'defer_parsing_of_js', 11, 1 );
    }

    Let us know if it’s good on your end :) Also, this is not Enfold related but your error_logs (you can see this in cpanel, public_html) is already 6mb, showing this error:

    PHP Warning:  Module 'memcache' already loaded in Unknown on line 0

    You might want to check out the following threads:
    http://www.somacon.com/p520.php
    http://stackoverflow.com/questions/32764981/php-warning-module-already-loaded-in-unknown-on-line-0
    Hope this helps :)

    Best regards,
    Nikko

    in reply to: Masonry Gallery & htaccess at wp-admin #790032

    Hi,

    Glad to hear that! Thanks for using Enfold :)

    Best regards,
    Nikko

    in reply to: Add class to each post in grid? #790031

    Hey Kevin,

    Are you using Blog Posts in Advanced Layout Builder?

    Best regards,
    Nikko

    in reply to: Error msg showing on Different Browser #790027

    Hi,

    Can you check it now? I have checked your site and there’s a Godaddy link in the top (black) bar, I hovered over it and click on Flush Cache, I checked it in firefox and the issue is gone. Can you confirm if this is fixed on your end? :)

    Best regards,
    Nikko

    in reply to: Enfold upload issue #790020

    Hi,

    Did you upload the extracted data from the zip file? Can you post a screenshot?

    Best regards,
    Nikko

    in reply to: PHP warning #790017

    Hey nadjar,

    Can you try to flush out the cache our disable the caching plugin, let us know if this fixes the issue.

    Best regards,
    Nikko

    in reply to: Two Digits in Countdown #790016

    Hey Andrea,

    If you aren’t using a child theme yet, I would suggest doing so: http://kriesi.at/documentation/enfold/using-a-child-theme/ if you are using a child theme already then you can skip this part.

    Next create a js folder in your child theme, then copy shortcodes.js from parent theme (enfold/js/shortcodes.js) to the child theme’s js folder and then edit this file (line 246-250 in Enfold 4.0.5):

    _self.time.weeks   	= Math.floor( _timestamp / _week);
    _self.time.days 	= Math.floor((_timestamp % _week) / _day);
    _self.time.hours	= Math.floor((_timestamp % _day) / _hour); 
    _self.time.minutes 	= Math.floor((_timestamp % _hour) / _minute); 
    _self.time.seconds 	= Math.floor((_timestamp % _minute) / _second); 
    

    and replace it with this one:

    
    _self.time.weeks   	= ("0" + Math.floor( _timestamp / _week)).slice(-2);
    _self.time.days 	= ("0" + Math.floor((_timestamp % _week) / _day)).slice(-2);
    _self.time.hours	= ("0" + Math.floor((_timestamp % _day) / _hour)).slice(-2); 
    _self.time.minutes 	= ("0" + Math.floor((_timestamp % _hour) / _minute)).slice(-2); 
    _self.time.seconds 	= ("0" + Math.floor((_timestamp % _minute) / _second)).slice(-2); 
    

    Then added this code in functions.php so it uses shortcodes.js in the child theme:

    // Replace shortcodes.js
    function change_shortcodesjs() {
       wp_dequeue_script( 'avia-shortcodes' );
       wp_enqueue_script( 'avia-shortcodes-child', get_stylesheet_directory_uri().'/js/shortcodes.js', array('jquery'), 2, true );
    }
    add_action( 'wp_enqueue_scripts', 'change_shortcodesjs', 100 );
    

    And that should be it. Hope this helps :)

    Best regards,
    Nikko

    in reply to: Error msg showing on Different Browser #790000

    Hey pokerrito,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.
    • permission to deactivate plugins if necessary.

    Best regards,
    Nikko

    Hey amobriant,

    Unfortunately, I don’t think you can do it without overwriting your current settings. I haven’t tested this yet but I think you can try to clone your site (a stage site, just to be safe), then try to export your current theme settings, then import the demo, go to the specific page you like and save it as template, then import back your previous setting (which should overwrite the demo). Hope this helps :)

    Best regards,
    Nikko

    in reply to: Social icons in mobile menu. #789911

    Hi,

    Try adding this css code in Quick CSS:

    @media only screen and (max-width:767px) {
      .responsive #top #wrap_all .container.av-logo-container {
        width: 100%;
        max-width: 100%;
      }
    
      .responsive #top #wrap_all .container.av-logo-container .logo {
        max-width: 85%;
        margin-left: auto;
        margin-right: auto;
      }
    }

    Hope this helps :)

    Best regards,
    Nikko

    in reply to: comments isnt showing up on post pages #789909

    Hey RODRIGO,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.
    • permission to deactivate plugins if necessary.

    Best regards,
    Nikko

    Hey GyanSysmarketing,

    Yes please, provide us with login and ftp access. Just want to ask if this error is consistently showing? does the error show when editing using a visual editor and updating the page?

    Best regards,
    Nikko

    in reply to: Problems with Enfold Icon element #789904

    Hey EZWebdesign,

    1. Try adding this css code in Quick CSS (located in Enfold > General Styling):

    .home #contact .flex_column.av_one_half.avia-builder-el-28 .av_font_icon {
        float: left;
        width: 30%;
    }

    2. Are you referring to the 2nd icon (middle)? It’s aligned properly on my end, can you give us a screenshot on how it looks on your end?

    Best regards,
    Nikko

    in reply to: Logo center, Menu Left #789901

    Hey smallisland,

    Try adding this css code in Quick CSS (located in Enfold > General Styling):

    .html_header_top #top .av_logo_right .logo {
        right: auto;
        left: 50%;
        margin-left: -128.5px;
    }

    Let us know if this helps :)

    Best regards,
    Nikko

    in reply to: Default Demo #789897

    Hey Jagrav,

    Thanks for contacting us. Try checking this out: http://kriesi.at/documentation/enfold/missing-layerslider-images/

    Best regards,
    Nikko

    in reply to: Getting A 403 error on the theme home page #789692

    Hi,

    Glad to hear that and thanks for sharing the solution that worked for you :)

    Best regards,
    Nikko

    in reply to: no sending emails #789652

    Hi,

    The only reason I know why it works on one email domain and not on others is the web host settings. Glad to hear that it’s working again :) You’re always welcome. Thanks for using Enfold :)

    Best regards,
    Nikko

    in reply to: Getting A 403 error on the theme home page #789651

    Hi,

    I see, I was checking on the backend (but seems weird since 403 usually appears in the backend since the settings are located there). Can you give us ftp access? so we can check deeper on this.

    Best regards,
    Nikko

    in reply to: Change subject and text in form autoresponder. #789649

    Hi Ralf,

    Enfold doesn’t have that hidden features and what you see in the options is all there is to it, since the theme only provides basic contact form. And yes, I agree that Contact Form 7 would likely be the plugin you need since the plugin concentrates on the forms and thus it has more advanced features and you could customize it better.

    Best regards,
    Nikko

    in reply to: Logo Resizing and lost resolution #789635

    Hi,

    Sorry was referring to height and my mistake I misunderstood it. Try adding this css code in Quick CSS:

    .html_top_nav_header #main .av-logo-container {
        height: 500px;
    }
    
    #main .container.av-logo-container {
        max-width: 100%;
    }

    Just adjust the height as you see fit. Hope this helps :)

    Best regards,
    Nikko

    in reply to: no sending emails #789627

    Hi,

    When you setup wp mail smtp, have you tried to ask your webhost regarding the settings? since it wouldn’t work if the settings are not correct.

    Best regards,
    Nikko

    in reply to: Getting A 403 error on the theme home page #789624

    Hi,

    Can you post a screenshot on it? I’m aware that you have said 403 error, and if there’s 403 error it wouldn’t allow changes which I have already done and tested, also when there’s 403 error it does show up in the console. And yes, it would likely be an issue for file permissions since most restriction are applied in the file.

    Best regards,
    Nikko

    in reply to: Enfold for Musician or Band Site #789617

    Hey Mathias,

    Thanks for contacting us. Unfortunately, we don’t have such features, but you can add Custom Post Types using this plugin: https://wordpress.org/plugins/custom-post-type-ui/ and as for the design you can use Advanced Layout Builder to customize it.

    Best regards,
    Nikko

    in reply to: Masonry Blog – add author image #789614

    Hi,

    That would take a bit of time, the process would be like this, you would need to add a child theme: http://kriesi.at/documentation/enfold/using-a-child-theme/ then you would need to override/replace the Masonry element in Advanced Layout Builder by following the instructions here: http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/ and some modifications on the masonry file. :)

    Best regards,
    Nikko

    in reply to: Logo Resizing and lost resolution #789609

    Hi Lauren,

    I would suggest using an image resizing app or software like Adobe Photoshop to resize the image (for logo it would be 300px in width). If the image is very large and forced to scaled down with large amount, the image quality isn’t as good as the original size :(

    Best regards,
    Nikko

    in reply to: Social Share Widget #789606

    Hey hyperbrand,

    I haven’t been around since that version, but there’s a Social Share Buttons in the Advanced Layout Builder you might want to use them instead or perhaps a shortcode if you want to use a widget area. Hope this helps :)

    Best regards,
    Nikko

    in reply to: Google Maps API #789604

    Hey hyperbrand,
    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.

    Best regards,
    Nikko

    Hi,

    Let us know if it’s fixed or if you need more assistance regarding the topic :)

    Best regards,
    Nikko

Viewing 30 posts - 21,811 through 21,840 (of 25,536 total)