Forum Replies Created

Viewing 30 posts - 13,591 through 13,620 (of 67,510 total)
  • Author
    Posts
  • 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

    in reply to: Connect two columns #1319287

    Hi,

    Glad to know that it now runs or looks exactly as expected. Thanks to @Guenni007. Please do not hesitate to open a different thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Enfold – Auto play video issues on Iphone #1319286

    Hi,

    Thank you for the update.

    The video is working correctly but it is not visible because the layer’s visibility settings are disabled on all devices.

    As mentioned previously, we already edited the visibility options of the video layer and it is now displaying properly on mobile screens. Please check the screenshots below.

    Screenshots:

    View post on imgur.com

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: CSS to hide Blog-Latest News on top of Single Blog posts? #1319285

    Hi,

    Thank you for the inquiry.

    Yes, the css code should work. The title and breadcrumbs can also be removed by adjusting the Enfold > Header > Header Layout > Header Title and Breadcrumbs settings.

    Best regards,
    Ismael

    in reply to: Double H1 in the code of Enfold! #1319284

    Hey TT2495,

    Thank you for the inquiry.

    Looks like you have added the h1 tag manually in the content editor. We tried to check the link above but the page does not exist. Please provide a valid URL so that we could check the page and inspect the title.

    Best regards,
    Ismael

    in reply to: Applying text drop text to specific pages #1319283

    Hey sunilskrishnan,

    Thank you for the inquiry.

    You can apply a custom css class name or ID to the builder elements and use it to define a css rule for sections or elements that should have the shadow or that should have a custom style. The css fields are located in the elements’ Advanced > Developer Settings toggle.

    // https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support

    Best regards,
    Ismael

    in reply to: Add an Icon to a Button Styled Menu Item #1319277

    Hey Eleina_Shinn,

    Thank you for the inquiry.

    In the Appearance > Menu editor, you can add a custom menu item and enable the Button Style option from the Menu Style settings. This should create a menu item that looks like button, but you will have to use additional css code to insert an icon.

    #menu-item-755 a:before {
        font-family: 'entypo-fontello';
        width: 10px;
        height: 10px;
        display: block;
        position: absolute;
        color: white;
        content: "";
    }
    

    The css code above will apply the search icon to the menu item with the ID 755. You can also insert a widget in the header instead of a custom menu item.

    // https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area

    Best regards,
    Ismael

    in reply to: Breaking Avia Layout Builder – Spinning Wheel #1319269

    Hi,

    Great! Glad to know that you have found a working solution. Please do not hesitate to open a different thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: PHP Error with every update #1319267

    Hey Lana,

    Thank you for the inquiry.

    Do you update the theme in the dasboard (Enfold > Theme Updates)? Try to edit the enfold/functions-enfold.php, look for the avia_mailchimp_widget function and this code around line 2219:

    
    		function __construct() {
    			//Constructor
    			$widget_ops = array('classname' => 'avia_mailchimp_widget', 'description' => 'A widget that displays a Mailchimp newsletter signup form' );
    			parent::__construct( 'avia_mailchimp_widget', THEMENAME.' Mailchimp Newsletter Signup', $widget_ops );
    		}
    

    Replace it temporarily with:

    	function __construct() {
    			$theme = wp_get_theme();
    
    			//Constructor
    			$widget_ops = array('classname' => 'avia_mailchimp_widget', 'description' => 'A widget that displays a Mailchimp newsletter signup form' );
    			parent::__construct( 'avia_mailchimp_widget', $theme->name.' Mailchimp Newsletter Signup', $widget_ops );
    		}
    

    Let us know if the error still occurs.

    Best regards,
    Ismael

    in reply to: adding Woocommerce to health coach demo #1319262

    Hey kardnas,

    Thank you for the inquiry.

    Yes, you can install the plugin and create a shop page with the current demo. The demo does not have preconfigured options for shop pages or for the plugin, so you will have to configure it manually.

    Best regards,
    Ismael

    in reply to: Enfold Ankerlinks / Sprungmarken funktionieren nicht #1319259

    Hey Johannes,

    Thank you for the inquiry.

    We checked the home page but we cannot find the button using the #kontaktaufnahme anchor. Where did you add the button? Did you try to include the complete or absolute URL plus the anchor?

    Example.

    https://site.com/page/#kontaktaufnahme
    |OR|
    https://site.com/#kontaktaufnahme
    

    Using just the anchor may not work if you are on a different page without the anchor destination or without an element with the named anchor.

    Best regards,
    Ismael

    in reply to: 'tab' at the edge of a page #1319258

    Hey steridhh,

    Thank you for the inquiry.

    That is the post navigation and it can be disabled in the Enfold > Blog Layout > Single Post Navigation settings. You can also use this filter in the functions.php file.

    add_filter("avf_post_nav_settings", function($settings) {
        $settings['skip_output'] = true;
        return $settings.
    }, 10, 1);
    

    Best regards,
    Ismael

    in reply to: Site crashed afer update #1319257

    Hi,

    Thank you for the update.

    The issue only occurs when the excerpt is enabled or when the Captions > Element Title and Excerpt settings is set to the first option. We selected the second option temporarily to disable the excerpt and only display the title.

    Did you modify the masonry element to display the post content instead of the post excerpt?

    Best regards,
    Ismael

    in reply to: DE/EN : QUESTION ABOUT STRUCTURED DATA (SCHEMA) #1319256

    Hey Hoernchen089,

    Thank you for the inquiry.

    The theme contains basic schema structure for blog posts or articles, images, breadcrumbs and other elements. The option is enabled by default but it can be toggled from the Enfold > SEO Support > Automated Schema.org HTML Markup settings. For more complex structure (e.g recipes, books etc), you will have to install a plugin or extend the existing structure in the theme.

    Best regards,
    Ismael

    in reply to: Enable Mouse(wheel) in Google Maps #1319255

    Hey Soehnke,

    Thank you for the inquiry.

    According to the documentation, you can set the gestureHandling parameter of the map to “greedy” to allow any gestures (e.g touch, pan, pinch, scroll). Unfortunately, the documentation did not specify if this will also include the mousewheel.

    Try to add this script in the functions.php file.

    function ava_custom_script_map_params(){
    ?>
    	<script>
    		window.addEventListener('DOMContentLoaded', () => {
    			window.av_google_map.av_gmap_0.gestureHandling = "greedy";
                            window.av_google_map.av_gmap_0.scrollwheel = true;
    		});
    	</script>
    <?php
    }
    add_action('wp_footer', 'ava_custom_script_map_params', 9999);
    

    Default value of the gestureHandling parameter is “cooperative”.

    UPDATE: There is actually a scrollwheel option. We added it above and set it to true.

    Best regards,
    Ismael

    in reply to: Anchor link from subpage to homepage #1319249

    Hi,

    Great! Please feel free to open another thread if you need anything else. We will close this one for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Content Element: Magazine Change heading #1319248

    Hey agiledynamicss,

    Thank you for the inquiry.

    You can use the following filter in the functions.php file to change the heading to h4.

    function avf_avf_customize_heading_settings_mod( array $args, $context, array $extra_args = array()) {
      if( $context == 'avia_magazine' ){
        $args['heading'] = 'h4';              
      }
      return $args;
    }
    add_filter( 'avf_customize_heading_settings', 'avf_avf_customize_heading_settings_mod', 10, 3 );
    

    You may need to insert additional css code or apply the previous css from the h3 tag to keep the style of the heading.

    Best regards,
    Ismael

Viewing 30 posts - 13,591 through 13,620 (of 67,510 total)