Forum Replies Created

Viewing 30 posts - 9,271 through 9,300 (of 67,443 total)
  • Author
    Posts
  • in reply to: Implementing pre_get_posts #1375910

    Hi,

    Thank you for the update.

    You may need to add the pre_get_posts hook back for the category and archive pages. Did you set the Enfold > Blog Layout > Blog Layout settings to “Grid”?

    Best regards,
    Ismael

    in reply to: Enfold page builder is no longer active #1375909

    Hi,

    Thank you for the inquiry.

    You may need to generate another token with the correct permissions. Please check the documentation below for more info on how to generate a new Envato token with the required permissions.

    // https://kriesi.at/documentation/enfold/theme-registration/#how-to-generate-a-envato-personal-token

    Best regards,
    Ismael

    in reply to: Changes at the blog page sidebar #1375908

    Hey Nic_007,

    Thank you for the inquiry.

    Which headline are you trying to remove? Please provide the link to the blog page so that we can check it properly, a screenshot will also help.

    Where can I edit the sidebar for the blog (news)?

    You can edit the widgets in the Appearance > Widgets panel, and for the blog page, you may need to adjust or add widgets inside the Sidebar Blog widget area.

    Best regards,
    Ismael

    in reply to: transition a media element #1375639

    Hey Nic_007,

    Thank you for the inquiry.

    The only way to move elements in the builder is by dragging and dropping. There is a workaround, but we don’t recommend it because if you’re not familiar with the builler shortcodes, it is quite easy to break the whole page. You have to enable the debug mode and cut and paste the elements/shortcodes to a certain position in the shortcodes field.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode

    If you’re having difficulty dragging an element in one go, just try to move the element gradually, dragging and dropping until you get the element to a position where you wanted it to be.

    Best regards,
    Ismael

    in reply to: Custom font #1375634

    Hey schwabino,

    Thank you for the inquiry.

    You can separate the words in the sentence using html tags such as span.

    Example:

    <span class="av-font-brush-script">This</span> <span class="av-font-open-sans">is</span> <span class="av-font-leonidas">Sparta!</span>
    
    

    You can then apply different font style for each span tag using this css.

    .av-font-brush-script {
       font-family: "Brush-script";
    }
    
    .av-font-open-sans {
       font-family: "Open Sans";
    }
    
    .av-font-leonidas {
       font-family: "Leonidas";
    }

    Best regards,
    Ismael

    in reply to: Implementing pre_get_posts #1375633

    Hey Jorge,

    Thank you for the inquiry.

    Looks like you are using the magazine element. You may need to use the avf_magazine_entries_query filter instead of the pre_get_posts hook. Please replace the hook with the code below.

    add_filter("avf_magazine_entries_query", function($query) {
        $query["author"] = get_current_user_id();
        return $query;
    }, 10, 1);
    

    Best regards,
    Ismael

    in reply to: Pagespeed – Does not use passive listeners #1375632

    Hi,

    We already set all touch and wheel event listeners in the scripts to passive but the issue still occurs. Seems to be directly related to the jQuery library. Unfortunately, we are not sure where exactly it is being generated. This is the source of the warning.

    
    Source
    …jquery/jquery.min.js?ver=3.6.1:2:41514(jaro.jamesdk.sk)
    

    This is a library common in any website including WordPress sites.

    Best regards,
    Ismael

    in reply to: Hover animation of image links in the sidebar #1375629

    Hey Marina,

    Thank you for the inquiry.

    Did you install a lazy load or any image compression plugin? The issue occurs because the script that positions that image overlay fails to correctly calculate the actual position and size of the images. To fix the issue, you can try this css code.

    .avia_transform a .image-overlay {
        top: 0 !important;
    }

    Best regards,
    Ismael

    in reply to: Sidebar #1375628

    Hey troupdim,

    Thank you for the inquiry.

    You can copy the actual shortcodes of the contact form element in the builder and place it in a text widget. But first you have to set the builder to debug mode so that you can extract the shortcodes from the debug field. Please check the documentation for more info.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode

    Enable the debug mode as described in the documentation above, create a temp page, then switch to the Advance Layout Builder (ALB). In the builder, just add a contact form, configure the options and when you’re done, look for the shortcode field just below the ALB and copy the generated shortcode (av_contact_form). You can copy this shortcode in a text widget and place it in any of the widget areas in the Appearance > Widgets panel.

    Best regards,
    Ismael

    in reply to: Website very slow, nothing helps #1375627

    Hi,

    Thank you for the info.

    The site seems to be loading fine on our end. How do you test the site’s speed? We are not able to run a test using any page speed tool because the site is not accessible publicly. Have you done any speed optimization to the site yet? If you haven’t, you might want to check the following articles.

    // https://gtmetrix.com/wordpress-optimization-guide.html
    // https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow

    Best regards,
    Ismael

    in reply to: Einzelne Elemente mit Code anpassen #1375625

    Hi,

    You will have to add a few custom css modification in order to further adjust the style of the elements. Would you mind providing a screenshot of the changes that you’d like to implement? You can use imgur, savvyify or dropbox for the screenshot. Thanks.

    Best regards,
    Ismael

    in reply to: Errors when using rankmath plugin with enfold theme. #1375622

    Hi,

    Thank you for the update.

    Where do you see the warnings? The issue occurs not because of those warnings but because of these actual errors shown in the console, which seems to be directly related to the seo-by-rank-math scripts. Have you tried asking the plugin authors about the issue?

    Uncaught ReferenceError: lodash is not defined
        at Object.<anonymous> (analyzer.js?ver=1.0.103.1:1:921)
        at n (analyzer.js?ver=1.0.103.1:1:91)
        at Module.<anonymous> (analyzer.js?ver=1.0.103.1:1:101546)
        at n (analyzer.js?ver=1.0.103.1:1:91)
        at analyzer.js?ver=1.0.103.1:1:885
        at analyzer.js?ver=1.0.103.1:1:895
    import-export.js?ver=1.0.103.1:1 
    
           Uncaught ReferenceError: rankMathAnalyzer is not defined
        at import-export.js?ver=1.0.103.1:1:355
        at import-export.js?ver=1.0.103.1:1:6765
    status.js:1 
    
           Uncaught ReferenceError: rankMathAnalyzer is not defined
        at status.js:1:345
        at status.js:1:5131
    analytics.js:1 
           Failed to load resource: net::ERR_BLOCKED_BY_CLIENT
    

    We are not getting any errors from the theme’s analytics script when we edit any of the pages. (see private field)

    Best regards,
    Ismael

    in reply to: Pagespeed – Does not use passive listeners #1375620

    Hi,

    The slider is not displaying at all in the test page (see private field). Did you change anything?

    Best regards,
    Ismael

    Hi,

    Happy to help! Let us know if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Text in den Reitern 1+2 wird nicht angezeigt #1375489

    Hi,

    No problem. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Blog Images #1375488

    Hi,

    Sorry, but we are not sure if we understand what you’re trying to do based on your message in the private field. Do you want to add the placeholder in the “blog overview page” or in the “single post page”? Just so we’re clear, the blog overview page contains the list of posts while the single post page is the actual post. And which image would you like to use as a placeholder?

    A screenshot should clear things up a bit. Would you mind providing one? You can use imgur, savvyify or dropbox for the screenshot.

    This sentence is what confuses us.

    For examp0le if you click on News page – ‘New Post’ I have created a standard image at the top of my post – I would like the same image to be on the News page.

    Do you want to put the same image in the News page? By News page, do you mean the page containing the list of posts? You can actually use the Advance Layout Builder to edit your blog page by adjusting the Enfold > Blog Layout > Blog Layout settings. Select the very last option (Use the advance layout builder..) to enable the builder for the blog page. Once this option is selected, you can start editing the blog page using the Advance Layout Builder. Using the builder you can add a posts element (Blog Posts, Magazine, Masonry etc), then add an Image or some other element/content in the blog page.

    Best regards,
    Ismael

    in reply to: Display private posts in blog masonry for admin #1375486

    Hi,

    Looks like the masonry element doesn’t include private posts by default. Sorry about that. We added the filter again and modified the condition so that it is only applied in the blog page.

    // Display private posts on Blog page for logged in users
    add_filter('avia_masonry_entries_query', 'avia_custom_query_extension', 10, 2);
    
    function avia_custom_query_extension( $query, $params ) 
    {
    	if(is_user_logged_in() && is_page(66)) $query['post_status'] = array('publish','private');
    	return $query;
    }
    

    If you want to apply the filter to other pages, you can modify the value of the is_page function in the filter above. The conditional function accepts an array of page ID or title.

    // https://developer.wordpress.org/reference/functions/is_page/

    For the related posts section, you will have to modify the enfold/includes/related-posts.php directly. Unfortunately, this is beyond the scope of support.

    Best regards,
    Ismael

    in reply to: Edit position title and description for masonry #1375484

    Hi,

    Again, we are quite sorry for the late reply. Where did you add the script? The script above seems to be working correctly on our end. It moves the title above the image container outside the content. Please make sure that the script is placed in the functions.php file, and not in the Quick CSS field. Unfortunately, moving the title by editing the template file directly is a lot more complicated, so we chose to provide a custom script instead. Again, sorry for the late response.

    Please post the login details in the private field so that we can test the modification.

    Best regards,
    Ismael

    Hi,

    It seems this option is also available in Performance tab of Enfold under advanced

    Ah, yes, completely forgot about that option. Yes, you can adjust the font-display value there but the filter above should accomplish the same. Please feel free to open another thread if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: How to align Enfold Footer Menu items with footer columns? #1375478

    Hi,

    Thank you for the clarification.

    You can replace the previous modification with the following css code.

    #socket .sub_menu_socket {
        width: 100%;
        display: block;
    }
    
    #socket .menu {
        display: flex;
        width: 100%;
        justify-content: flex-end;
    }
    
    #socket .sub_menu_socket li {
        width: 25%;
    }

    You may need to adjust each menu item to align them perfectly with the footer columns.

    Best regards,
    Ismael

    in reply to: Pagespeed – Does not use passive listeners #1375476

    Hi,

    You may need to purge the cache or browser history, or run the speed tool on a different browser to make sure that you are not getting a cached result.

    We will probably add the changes in the next patch once we confirmed that it is working. Please provide the WP and FTP details in the private field so that we can test the changes properly.

    Best regards,
    Ismael

    in reply to: Hidden full screen slider image is downloaded on phone #1375473

    Hi,

    Thank you for the update.

    1.) You cannot prevent the images from loading by overriding the original css because the previous css code will still continue to exist.

    2.) The gallery items are added as actual images using img tags while the images in the slider are rendered as background images using css. If you want to render the slider images using img tags, please use the Fullwidth Easy Slider instead of the Fullscreen Slider element.

    Glad to know that you’ve found a working solution. If you want to use a plugin instead, please check the link below.

    // https://wordpress.org/plugins/specific-content-for-mobile/

    Best regards,
    Ismael

    in reply to: Magazine to display excerpt #1375472

    Hey ezcom,

    Thank you for the inquiry.

    In the magazine.php file, please try to look for this code around line 1508.

    $output .= "<article class='av-magazine-entry av-magazine-entry-id-{$entry->ID} av-magazine-format-{$format} av-magazine-type-{$type} av-magazine-entry-{$entry->loop} av-magazine-entry-{$style} {$extraClass}' {$markupEntry}>";
    

    Then right above it, add this code.

    $excerpt = ! empty( $entry->post_excerpt ) ? $entry->post_excerpt : avia_backend_truncate( $entry->post_content, apply_filters( 'avf_magazine_excerpt_length', 60 ), apply_filters( 'avf_magazine_excerpt_delimiter', ' ' ), '…', true, '' );
    

    Best regards,
    Ismael

    Hi,

    There is no dedicated settings for this in the theme options, unfortunately. Please keep the css modification.

    Best regards,
    Ismael

    in reply to: critical error on one of my websites #1375470

    Hi,

    No problem. Let us know if you find anything.

    Best regards,
    Ismael

    in reply to: About a theme, i want to buy it #1375467

    Hi,

    Great! Thank you for purchasing the theme. Please feel free ask any questions here in the forum and we will try our best to assist. You can open a new thread or ticket using the link below.

    // https://kriesi.at/support/forum/enfold/#new-post

    Thank you and have a nice day!

    Best regards,
    Ismael

    in reply to: Compatiblity with PHP 8.1 #1375466

    Hi,

    Thank you for the update.

    1.) The settings will be preserve on update as long as the update is done correctly. You don’t have to rebuild the site again from scratch. Please check the documentation below for more info about updating.

    // https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    2.) We are not really sure what “Shared By VestaThemes.com” means, but please note that the theme is only available on Themeforest. You should not buy a license from anywhere else.

    3.) There is a one-time payment for a single license which is good for a single site or domain, so you don’t need to pay monthly.

    To confirm that the site is actually using the Enfold theme, please provide the site URL in the private field so that we can check it.

    Best regards,
    Ismael

    in reply to: Will not download demo #1375464

    Hi,

    No problem! Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Kleine Leiste über dem Hauptmenü – Höhe verändern #1375463

    Hi,

    Thank you for the inquiry.

    We may need to see the site and check the elements in order to provide the appropriate modifications. Please post the site URL, screenshots will also help.

    Best regards,
    Ismael

    in reply to: Problem with Google Analytics Cookie Consent #1375462

    Hey maxh_muc,

    Thank you for the inquiry.

    We checked the site but we can’t find the same warning that you described above. Would you mind providing a screenshot? You can use imgur, savvyify or dropbox for the screenshot. Thanks.

    Best regards,
    Ismael

Viewing 30 posts - 9,271 through 9,300 (of 67,443 total)