Forum Replies Created

Viewing 30 posts - 12,181 through 12,210 (of 66,126 total)
  • Author
    Posts
  • in reply to: Double H1 in the code of Enfold! #1319565

    Hi,

    Thank you for the inquiry.

    You can actually disable the title from the Enfold > Header > Header Layout > Header Title and Breadcrumbs settings. Select the options to display the breadcrumbs only, or just hide both.

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    The builder is not loading immediately because a font request blocks the avia_ajax_text_to_interface action for more than 30 seconds. This prevents the builder from rendering elements and from fully loading. We are not yet sure which font it is but it is from the WordPress core.

    Screenshot: https://postimg.cc/CdjPpf4K

    Try to add this code in the wp-config.php file to disable css and script compression in the admin or dashboard.

    define("COMPRESS_CSS", false);
    define("COMPRESS_SCRIPTS", false);
    define("CONCATENATE_SCRIPTS", false);
    

    We will check the site again afterwards.

    Best regards,
    Ismael

    in reply to: Default Cookie Behaviour on last Option Bug or Feature? #1319563

    Hi,

    But that not a really clean solution.

    What do you mean? As we have said above, the option differs because it only maintains the cookie in the current session. This cookie prevents the message bar from popping up. The cookie is removed once you navigate to a different page or when the current session ends. The modification above should hide the cookie message bar as long as the oldCookieContents exists.

    Best regards,
    Ismael

    in reply to: Database MySQL problem #1319562

    Hi,

    We are now able to access the site but the account above have no administrator rights, so we cannot really access anything. We cannot even see the front end because it is on maintenance mode.

    Do your hosting provider have additional info about what is causing the database spike? They should be able to monitor it on their end. Temporarily, you should disable the Performance > File Compression settings because this function creates copies of the stylesheets and scripts in the database. After disabling the file compression, install a database optimization plugin and clean the database of any transients.

    // https://wordpress.org/plugins/wp-optimize/

    Best regards,
    Ismael

    in reply to: Slider modifier la taille des images #1319477

    Hey jetsaveurs.com,

    Thank you for the inquiry.

    The slider images look fine on our end — they resize and stretch correctly, and properly cover the slider container. Have you tried using the Fullwidth Slider instead of the Fullscreen Slider? The Fullwidth Slider automatically adjusts its height based on the size of the image in the active slider, so the image will be completely visible. Unlike in the Fullscreen Slider, where size is based on the height of the viewport screen, so the images have to adapt and resize accordingly instead of vice versa.

    Best regards,
    Ismael

    Hey jstonestreet,

    Thank you for the inquiry.

    Do they have additional information regarding the issue, or what is in the theme that is slowing the site? Default themes will surely load faster compare to themes like Enfold because they are pretty light and do not offer the same functionality and features, which also means that they do not have to load as many resources (scripts, stylesheets etc).

    We checked the site and right off the bat, 404 errors popped up, missing files from the theme, WP core and gravity forms. The errors randomly occur on different pages.

    // https://imgur.com/XMo4wmo

    Have you tried disabling the plugins temporarily (cache, minification)? There are a total of 20 plugins installed in the site right now, which is quite a lot, so one of them or a combination of those plugins plus the theme may be causing the issue.

    Best regards,
    Ismael

    Hey Christoph,

    Thank you for the inquiry.

    The drop down menus work properly on our end — it does not jump or do anything unexpected when clicked. Would you mind providing a screenshot of the issue? Please use imgur or dropbox for the screenshot.

    Best regards,
    Ismael

    in reply to: Enfold 4.8.3 problem wp-admin with demo One page Agency #1319470

    Hey clemmasson,

    Thank you for the inquiry.

    Do you see any errors when you activate the theme? Please try to set the installation to debug mode so that we could check the error and the logs. For more info, please refer to the following links.

    // https://codex.wordpress.org/WP_DEBUG#WP_DEBUG_LOG
    // https://torquemag.io/2020/12/enable-wordpress-debug-mode/

    Best regards,
    Ismael

    in reply to: Delete Fixed Bottom-Frame (av-frame-bottom) #1319469

    Hey Serhat,

    Thank you for the inquiry.

    You should also remove the bottom padding of the html element to get rid of the empty space.

    html.html_av-framed-box {
        padding-bottom: 0;
    }

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code.

    Best regards,
    Ismael

    Hi,

    No problem. The process of reloading the stylesheets is almost the same as what we suggested in this thread, but with css instead of js or script files.

    // https://kriesi.at/support/topic/mobile-menu-accessiblity/#post-1318592

    You will need the following functions and make use of the $deps (depends on) parameter.

    // https://developer.wordpress.org/reference/functions/wp_dequeue_style/
    // https://developer.wordpress.org/reference/functions/wp_enqueue_style/

    $deps
    (string[]) (Optional) An array of registered stylesheet handles this stylesheet depends on.
    Default value: array()
    

    If a stylesheet depends on another file, it will load after that file. You just have to make sure that the base.css file is loaded before the elementors’ dynamic styling, so that it does not override the intended styles.

    Best regards,
    Ismael

    Hi,

    Did you try the suggestion above? Removing the functions directly should enable the plugin settings back. Unfortunately, we are not yet sure why the previous suggestion above is not working. We might have to remove the hooks after the theme setup. Please try this snippet in the functions.php file.

    add_action("after_setup_theme", function() {
        remove_action( 'tribe_display_settings_tab_fields', 'avia_events_display_tab', 10 );
        remove_action( 'tribe_general_settings_tab_fields', 'avia_events_general_tab', 10 );
    }, 999);
    

    Best regards,
    Ismael

    in reply to: How to set the delay to display the Sticky Header #1319458

    Hi,

    Thank you for following up.

    We updated the css code above and remove the other selectors, so that it will only affect the header background. We also set the opacity from 0.95 to 1. Unfortunately, we cannot figure out why the header shifts a bit on scroll. By default, the header is not intended to work this way, so you might have to revert the modifications and instead use the available settings.

    Best regards,
    Ismael

    in reply to: PHP Error with every update #1319455

    Hi,

    Do you see this warning when you are using the Advance Layout Builder (ALB)? This warning may occur on other dashboard panels because the avia-template-saving.js file only loads when ALB is active. This is nothing critical, so it should not affect how the theme or how the site in general works.

    Glad to know that you are enjoying the theme. And thank you for your patience.

    Best regards,
    Ismael

    in reply to: [av_privacy_google_tracking] button not working #1319454

    Hi,

    Thank you for the update.

    Can we access the site? Please post the login details in the private field and make sure that the Appearance > Editor panel is accessible so that we can edit the theme when necessary.

    Best regards,
    Ismael

    in reply to: Parallax effects don't work on phone #1319453

    Hi,

    The code is in the js > shortcodes.js file, within the AviaParallaxElement function. Make sure that the site is using the latest version, 4.8.6.1. If you need to modify or extend the parallax function, please hire a third party developer, or contact our partner, Codeable.

    Thank you for your understanding.

    Best regards,
    Ismael

    in reply to: Cookies #1319451

    Hi,

    If I use external cookies (google analytics for example), will these automatically be blocked initial?

    Yes, external cookies will be automatically blocked when the Enfold > Privacy & Cookies > Cooking Handling > Default Cookie Behavior is set to the third or fourth option, and when the user denied the cookies.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Preload key requests #1319450

    Hi,

    Thank you for the update.

    We were not able to reproduce the same issue when we checked the site on Pagespeed Insights, but we did notice that the site still requires optimization such as browser caching and image compression.

    // https://web.dev/uses-long-cache-ttl/?utm_source=lighthouse&utm_medium=unknown
    // https://web.dev/uses-optimized-images/?utm_source=lighthouse&utm_medium=unknown
    // https://web.dev/uses-optimized-images/?utm_source=lighthouse&utm_medium=unknown

    The following articles should help.

    // https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow
    // https://kriesi.at/archives/4-key-wordpress-image-optimization-tips

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    You can add the code in the Enfold > General Styling > Quick CSS field, or in the child theme’s style.css file, whichever you prefer. You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css. Please note that the css above will only adjust the style of first and third icon, in the billing and payment pages, respectively. You have to add more css just like those to adjust the style of the other icons.

    Best regards,
    Ismael

    in reply to: Portfolio – excerpt – working with span #1319447

    Hi,

    Odd. You may need to keep the template modifications for now. Thank you for your patience.

    Best regards,
    Ismael

    Hi,

    Did you enable the Woocommerce 3.0 gallery from the Enfold > Shop Option panel? The plugin may not work with the theme’s default gallery. Please feel free to open a new thread if you need more help. We will close this one for now.

    Best regards,
    Ismael

    in reply to: Site crashed afer update #1319443

    Hi,

    Now “Koszulki z nadrukiem” links to image, not to post.

    What do you mean? The items still redirect to the actual post when clicked.

    The Koszulki z nadrukiem post links to the images because the post format was set to “Link”. We edited the post and reset the post format back to default. The item now redirects to the actual post instead of opening the image.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: RSS Feed old and numeric URLs #1319442

    Hi,

    But then i saw that the main menu/navigation on my site was also gone

    You might have removed database entries for the menu items. Did you check the name of searched entries?

    Where did you get the RSS script? Please place the script on pastebin.com and post the link in the private field.

    Best regards,
    Ismael

    in reply to: Portfolio images not loading on mobile devices #1319441

    Hi,

    The page with the portfolio are still loading properly on our end. Do you notice any difference (device specs, connectivity etc) between the phones where the portfolio works and the phones where it does not?

    Does it work correctly when the NitroPack plugin is disabled? We noticed this grecaptcha error, which occurs in the minified file generated by the nitro plugin.

    (index):1 GET https://www.google.com/recaptcha/api.js?render=KKEY&ver=3.0 net::ERR_ABORTED 400
    nitro-min-d41d8cd98f00b204e9800998ecf8427e.index.js:1 Uncaught ReferenceError: grecaptcha is not defined
        at HTMLDocument.<anonymous> (nitro-min-d41d8cd98f00b204e9800998ecf8427e.index.js:1)
        at HTMLDocument.value ((index):1)
        at HTMLDocument.value ((index):1)
        at D ((index):1)
    

    The only recommendation that we can think of is to reduce the number of items using a pagination.

    Best regards,
    Ismael

    in reply to: Enfold V4.8.6.2 causing errors to portfolio #1319440

    Hi,

    You have to include the code that we added above to assign a value to the $permalinks array. Place it within the init_reg_portfolio function, right after this line.

    add_filter('avf_portfolio_cpt_args', 'avf_portfolio_cpt_args_mod', 50, 1);
    

    Example:

    add_filter('avf_portfolio_cpt_args', 'avf_portfolio_cpt_args_mod', 50, 1);
    
      $permalinks = get_option('avia_permalink_settings');
        if(!$permalinks) $permalinks = array();    
    
        $permalinks['portfolio_permalink_base'] = empty($permalinks['portfolio_permalink_base']) ? __('portfolio-item', 'avia_framework') : $permalinks['portfolio_permalink_base'];
        $permalinks['portfolio_entries_taxonomy_base'] = empty($permalinks['portfolio_entries_taxonomy_base']) ? __('portfolio_entries', 'avia_framework') : $permalinks['portfolio_entries_taxonomy_base'];
    

    Best regards,
    Ismael

    Hey ThiloKiefer,

    Thank you for the inquiry.

    We could manually add the defer attribute to the jQuery script, but doing so might cause unexpected results such as elements not rendering properly because the scripts that are supposed to make them work are loaded last. You could also use Autoptimize and Async Javascript plugin to asynchronously load scripts while parsing the HTML and execute them once the scripts are fully loaded, which is a better way to prevent render-blocking resources. For more info, please check the documentation.

    // https://speedy.site/configure-async-javascript-plugin-settings/
    // https://wpblogging.in/site-optimization/autoptimize-wordpress-plugin/

    You have to disable the Enfold > Performance > File Compression settings if you chose to use the plugin.

    Best regards,
    Ismael

    in reply to: contact form autoresponder email #1319438

    Hey brouge,

    Thank you for the inquiry.

    The autorespond email will be automatically sent to the email address provided the user. If you want to change the from address in the autoresponder email however, go to the contact form’s Content > Backend section or toggle and adjust the email address in the Autoresponder from email address field.

    Best regards,
    Ismael

    in reply to: customize table #1319348

    Hey Tobias777G,

    Thank you for the inquiry.

    You can use the following css code to adjust the font size of the table cells and adjust the color of the first row.

    .avia-table td, .avia-table tr {
        font-size: 18px;
    }
    
    .avia-table .avia-heading-row {
        background: #719430 !important;
        color: #ffffff !important;
    }
    

    However, please note that this modification will affect all table elements in the site, and if you want to only apply the changes to the specific tables above, you have to apply a custom name or ID to the elements and use those names to define a custom css rule for the them. For more info, please check the following documentation.

    // https://kriesi.at/documentation/enfold/add-custom-css/

    Best regards,
    Ismael

    in reply to: Events Calendar Pro Featured Image Size In Single Events #1319340

    Hi,


    @ashlandwebsites
    : Glad to know that you got what you are looking for! Thanks to @millertimesites. Please feel free to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: do_shortcode issue with layout #1319339

    Hey emilconsor,

    Thank you for the inquiry.

    Are there any errors when you try to use the compile_post_content function? We are not sure how the plugin loads the search-filter template but the following code might work.

    
    require_once( get_template_directory() . '/config-templatebuilder/avia-template-builder/php/class-template-builder.php' );
    
    global $post;
    $builder = Avia_Builder();
    $builder->compile_post_content($post);
    

    Best regards,
    Ismael

    in reply to: add class to get_the_term_list #1319337

    Hey w_archer,

    Thank you for the inquiry.

    Try to use the get_the_terms function instead and run the returned results in a loop. You can go over the items one at a time, check for the name of the current item and do something with it. An example can be found in the documentation.

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

    Best regards,
    Ismael

Viewing 30 posts - 12,181 through 12,210 (of 66,126 total)