Forum Replies Created

Viewing 30 posts - 27,961 through 27,990 (of 67,565 total)
  • Author
    Posts
  • in reply to: Lightbox Script don`t work #993228

    Hi,

    You’re welcome!

    Please take a moment to review our theme and show your support https://themeforest.net/downloads
    Don’t forget to bookmark Enfold Documentation for future reference.

    Thank you for using Enfold :)

    Best regards,
    Ismael

    in reply to: Comments – Styling #993227

    Hi,

    You should put it in the functions.php file. Edit that file via Appearance > Editor panel or your file server. Adjust these parts:

    __( 'Name' )
    __( 'Email' )
     __( 'Website' )

    Best regards,
    Ismael

    in reply to: Background images not showing on mobile version #993226

    Hi,

    You’re welcome! Let us know if you need anything else.

    Have a nice day! :)

    Best regards,
    Ismael

    in reply to: After Enfold update typography changed #993225

    Hi,

    The “cachet” font is not from Google, so you can’t upload it on the theme’s custom font manager or use the the theme’s Google font filter. This filter in the functions.php file is not going to work.

    add_filter ( 'avf_google_content_font', 'ddch_avia_add_font' );
    add_filter ( 'avf_google_heading_font', 'ddch_avia_add_font' );
    
    function ddch_avia_add_font ( $fonts ) {
    
    	$fonts['cachet'] = 'cachet:400,500';
    
    	return $fonts;
    }
    

    Use the @font-face rule instead.

    // https://www.w3schools.com/cssref/css3_pr_font-face_rule.asp

    Best regards,
    Ismael

    in reply to: Entry Slider / Event Calender #993223

    Hi,

    Thanks for the update.

    That was actually intended. The filter will just query every upcoming events regardless of the category. Please post the login details in the private field so that we can test the filter.

    Best regards,
    Ismael

    in reply to: Add Media Button Not Working (Enfold 4.4.1) #993222

    Hi,

    Thanks for the update. Please disable the security block temporarily and then provide the FTP details in the private field so that we can check the theme files. Unfortunately, we are not familiar with that plugin, so any additional info from the authors will help.

    Best regards,
    Ismael

    Hey HU_Dallas,

    Thank you for using Enfold.

    The site is still running on a very old version of the theme, 3.4.7. You need to upgrade to version 4.4.1. Please upgrade the theme and then re-configure the theme options a bit. You may need to disable the file compression options in the new Enfold > Performance panel.

    After the update, go to the Enfold > Blog Layout panel and then set the Blog Layout settings to “Grid Layout”. Make sure that the blog page is set as blog in the Enfold > Theme Options panel and NOT as Posts Page in the Settings > Reading panel.

    Best regards,
    Ismael

    in reply to: Enfold import demo, pretty sure it's not fully working #993218

    Hi,

    Awesome! Glad that you figured it out! Please feel free to open a new thread if you need anything else. :)

    Best regards,
    Ismael

    in reply to: Always on Hamburger Menu – Top Left #993217

    Hi,

    The mobile menu is not displaying because of the following css code.

    #header_main > .container {
        display: none;
    }

    Please remove that css code. If it doesn’t work, set the account user role to admin so that we can check the settings.

    Best regards,
    Ismael

    in reply to: Remove white spaces below Fullscreen masonry #993214

    Hi,

    The anchors are still working when I checked, even if the sections are hidden.

    Best regards,
    Ismael

    • This reply was modified 7 years, 8 months ago by Ismael.
    in reply to: Missing icons #993212

    Hi,

    Where did you get the icon file? Please note that you can only upload icon fonts from fontello and flaticon. Did you get that collection from those sites?

    Best regards,
    Ismael

    in reply to: Translation at blog – articles #993209

    Hey beyond-flora,

    Thank you for using Enfold.

    Did you set the page as Posts Page in the Settings > Reading panel? Please reset that option to default and then set the blog as blog in the Enfold > Theme Options panel.
    Use the Loco Translate plugin to translate the default texts or strings.

    // https://wordpress.org/plugins/loco-translate/

    If it’s not working, post the login details here so that we can check the settings.

    Best regards,
    Ismael

    in reply to: Display shipping classes at single product page #993206

    Hi,

    Great! If possible, please share the solution here so that other users will be able to search for it. :)

    Best regards,
    Ismael

    in reply to: Lightbox Script don`t work #993204

    Hi,

    Thanks for the update.

    You need to use the latest version of the header.php file. The one inside the child theme is not updated.
    And you can’t override the functions-enfold.php file in the child theme. Please remove that file.

    Best regards,
    Ismael

    in reply to: Empty background-image property on each section element #993190

    Hi,

    You’re welcome. Please let us know if you need anything else. :)

    Best regards,
    Ismael

    in reply to: Portfolio masonry : remove link #993189

    Hi,

    You’re welcome!

    Please take a moment to review our theme and show your support https://themeforest.net/downloads
    Don’t forget to bookmark Enfold Documentation for future reference.

    Thank you for using Enfold :)

    Best regards,
    Ismael

    Hi,

    Thanks for the update. The site is not accessible though. It’s not loading on my end. Is that the correct URL?

    Best regards,
    Ismael

    in reply to: Color Section affecting Google Pagespeed Insights Rating #993187

    Hi,

    Thanks for the update

    According to the documentation, if the amount of the data above the fold exceeds 14.6kB, it will require additional round trips between the server and the user’s browser to render the whole content. The “laptop” image alone is 37.1KB so I don’t think you can’t get around or passed this criteria without removing the image, or using a smaller and compressed version of that image.

    If the amount of data required exceeds the initial congestion window (typically 14.6kB compressed), it will require additional round trips between your server and the user’s browser. For users on networks with high latencies such as mobile networks this can cause significant delays to page loading.

    // https://developers.google.com/speed/docs/insights/PrioritizeVisibleContent

    Best regards,
    Ismael

    in reply to: Remove "blog" from breadcrumbs #993182

    Hi,

    Thanks for the update.

    That filter is supposed to remove the first trail “blog” on post pages. The first trail is not displaying when I checked the above post.
    Unfortunately, you can’t add multiple categories to the trail. Only the first category will display.

    Best regards,
    Ismael

    in reply to: Comments – Styling #993175

    Hi,

    1.) Yes, that’s correct. You can create a copy of that file and move it to the child theme folder to keep the changes in case of a theme update. :)

    // https://developer.wordpress.org/themes/basics/template-files/

    2.) You can use this filter to change the label and the markup of the comment form fields.

    add_filter( 'comment_form_fields', 'avf_default_comment_fields', 10, 1);
    function avf_default_comment_fields($fields)
    {	
        $fields   =  array(
            'author' => '<p class="comment-form-author">' . '<label for="author">' . __( 'Name' ) . ( $req ? ' <span class="required">*</span>' : '' ) . '</label> ' .
                        '<input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30" maxlength="245"' . $aria_req . $html_req . ' /></p>',
            'email'  => '<p class="comment-form-email"><label for="email">' . __( 'Email' ) . ( $req ? ' <span class="required">*</span>' : '' ) . '</label> ' .
                        '<input id="email" name="email" ' . ( $html5 ? 'type="email"' : 'type="text"' ) . ' value="' . esc_attr(  $commenter['comment_author_email'] ) . '" size="30" maxlength="100" aria-describedby="email-notes"' . $aria_req . $html_req  . ' /></p>',
            'url'    => '<p class="comment-form-url"><label for="url">' . __( 'Website' ) . '</label> ' .
                        '<input id="url" name="url" ' . ( $html5 ? 'type="url"' : 'type="text"' ) . ' value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30" maxlength="200" /></p>',
        );
    
    	return $fields;
    }

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    Yes, I meant the WordPress login details. Please place it in the private field.
    You can also create a login token. Just follow these steps:

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( do be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!

    Best regards,
    Ismael

    in reply to: Button with HTML in Menu #993167

    Hi,

    Where did you add the html code? These are the available parameters for the window.open function.

    // https://www.w3schools.com/jsref/met_win_open.asp

    Use the “wp_footer” action hook to create an inline script which listens for a specific menu item click event.

    add_action('wp_footer', 'ava_open_luister_live', 9999);
    function ava_open_luister_live() {
        ?>
        <script>
            (function($) {
                $('#menu-item-3216').on('click', function(e) {
                    e.preventDefault();
                    window.open("https://www.w3schools.com");
                });
            })(jQuery);
        </script>
        <?php
    }

    Add that script in the functions.php file and modify as required.

    Best regards,
    Ismael

    in reply to: Trouble with Aweber Lightbox Link? #993156

    Hi,

    Sure. We’ll keep the thread open. Let us know if you encounter any issues. :)

    Best regards,
    Ismael

    Hi,

    I’m not really sure if I can fix this immediately because it seems to be related to the server. As you’ve said yourself, the compression works properly on another site.
    I installed the Autoptimize plugin and now the files are compressed. I’m not seeing any issues with the site so far. (see private field)

    Best regards,
    Ismael

    in reply to: Masonry item after click load more image is gone #993149

    Hi,

    Yeah, that will work but there would be no excerpt displayed. Is that OK with you? Odd thing is, it’s displaying the content of the ALB. You have to add the excerpt for every posts created with the advance layout builder manually.

    Best regards,
    Ismael

    Hi,

    Awesome! Glad it’s resolved. Thanks to @Guenni007, as usual. :)

    Best regards,
    Ismael

    in reply to: Help needed for a "magazine style" page #993146

    Hi,

    Thanks for the update.

    I think the first example would work. Add these css code to limit the height of the slider and remove the before the masonry element.

    #blue_section .flex_column .avia-slideshow {
        max-height: 330px;
    }
    
    #blue_section .av-flex-placeholder {
        width: 0%;
    }

    Best regards,
    Ismael

    in reply to: Google maps API – billing #993138

    Hi,

    Thanks for the update.

    I set up to 10 (map loads per 100 seconds)

    Now, you’re limiting it to 1 request every 10 seconds. My recommendation is to set it to 10 requests per second. That’s 1000 requests per 100 seconds.

    The theme is using the dynamic map API because it has more options compare to the embedded map. Please refer to the API documentation if you want to know the difference.

    The “DeletedApiProjectMapError” error means that you’re using an API key from a deleted project. Are you sure that you regenerate the key after you created the project?

    Have you read the documentation?

    // https://kriesi.at/documentation/enfold/google-map/

    Best regards,
    Ismael

    in reply to: Mobile menu position issue #993132

    Hi,

    Thanks for the update.

    I re-organized the css codes on the Quick CSS field but there are still some css codes from the css > custom.css file that requires some adjustments. I can’t access it because the Appearance > Editor panel is not accessible.

    You should put all your css modifications on a single place, whether it be the style.css file or the Quick CSS field. It will make your life easier in the long run. And don’t duplicate the same css media queries. I removed the duplicates and sorted the css media queries in the right order. Please review the css codes on the Quick CSS field.

    Best regards,
    Ismael

    in reply to: Portfolio masonry : remove link #993116

    Hi,

    Thanks for the update.

    I’ve added a custom script to remove the masonry items’ link and prevent the default behavior on click. You can add this on the Quick CSS field if you want to display the default cursor when you put the pointer over the items.

    .av-masonry-entry {
        cursor: default;
    }

    This is the script.

    add_action('wp_footer', 'ava_remove_masonry_link', 9999);
    function ava_remove_masonry_link() {
        ?>
        <script>
            (function($) {
                var page = $('body').is('.page-id-23');
                if(page) {
                    $('.av-masonry-entry').each(function() {
                        $(this).attr('href', '#');
                    });
    
                    $('.av-masonry-entry').on('click', function(e) {
                        e.preventDefault();
                    });
                }
            })(jQuery);
        </script>
        <?php
    }
    
    

    Best regards,
    Ismael

Viewing 30 posts - 27,961 through 27,990 (of 67,565 total)