Viewing 30 results - 31 through 60 (of 104,879 total)
  • Author
    Search Results
  • #1480453

    Hey Munford,
    When I test your mp4 on Mac & Safari I see this error: The file isn’t compatible with QuickTime Player.
    Screen Shot 2025 03 29 at 11.12.39 AM
    Screen Shot 2025 03 29 at 11.16.21 AM
    When I convert with https://video.online-convert.com/convert-to-mp4 the file then plays fine, try this.

    Best regards,
    Mike

    #1480446

    Hi,
    Try using the TinyPNG plugin on your large hero images, when I test one of your images on the TinyPNG site it reduced it by 40%
    Screen Shot 2025 03 29 at 9.39.25 AM
    using smaller sized images probably would help, or using the Enfold Theme Options ▸ Preloader

    Best regards,
    Mike

    #1480439

    Hi,
    Do you mean like this?
    Screen Shot 2025 03 29 at 8.35.51 AM
    try adding another column before these and add your button there. You will need to make the two PASSOVER SERVICE SCHEDULE columns smaller.

    Best regards,
    Mike

    #1480438
    mruthalvarez
    Participant

    Hi. I need to put a video at the top of the site’s homepage, and I can’t find a solution that works on both desktop and smartphone. I’ve tried colorsection with backgroud, just the video, all types of slides. I need this video to work responsively, I don’t want to replace it with a fallback image. Does anyone have any suggestions for me?
    Thank you so much!

    #1480437

    Hi,
    Videos will not show on mobile, you will need to add a fallback image, when I check you have not added a fallback image yet.

    Best regards,
    Mike

    #1480433

    Hi,

    You can apply the image as a background to a Color Section element.

    Best regards,
    Rikard

    #1480415
    northorie
    Participant

    Hello,
    after clearing the cache, the content of both sliders on the page is no longer displayed. In the header area, both the image and the caption are missing, and further down the page, only the image is not showing. The slider elements are still present in the DOM, but they appear empty.

    I have completely removed all custom CSS, cleared the cache again, and haven’t changed anything else.
    The issue occurs across all devices and browsers I tested: Mac, Windows PC, iPhone, and Android.
    Please help me fix this as soon as possible. I urgently need a working solution.
    Thank you in advance!

    Best regards

    https://www.neurodivergent-frank.de

    #1480414

    For your information, here is the code for the content fetching :

    function fetch_oeuvre_content() {
        // Check nonce for security
        check_ajax_referer('ajax_nonce', 'nonce');
    
        $oeuvreId = sanitize_text_field($_POST['oeuvre']);
        $previousoeuvreId = sanitize_text_field($_POST['poeuvre']);
        $nextoeuvreId = sanitize_text_field($_POST['noeuvre']);
        $masonryId = sanitize_text_field($_POST['masonry']);
    
        $post = get_post($oeuvreId);
        if (!empty($post)) {
            $post_id = $post->ID;
    
            $content = do_shortcode("[jmpeynetoeuvre pid='".$post_id."' previous_id='".$previousoeuvreId."' next_id='".$nextoeuvreId."' masonry_id='".$masonryId."']"); // Get the content and apply content filters
    		
            // Prepare and send JSON response
            wp_send_json(array(
                'content' => $content
            ));
        } else {
            echo 'Definition not found.';
        }
        wp_die(); // This is required to terminate immediately and return a proper response
    }
    add_action('wp_ajax_fetch_oeuvre_content', 'fetch_oeuvre_content');
    add_action('wp_ajax_nopriv_fetch_oeuvre_content', 'fetch_oeuvre_content');

    And the shortcode that is used :

    function shortcode_jmpeynetoeuvre( $atts ){
    global $post; 
    $post_id = $post->ID;
    $atts = shortcode_atts( [
            'pid' => $post_id,
    		'previous_id' => '',
    		'next_id' => '',
    		'masonry_id' => '',
    	], $atts );
    $pid = $atts['pid'];
    $previousid = $atts['previous_id'];
    $nextid = $atts['next_id'];
    $masonryid = $atts['masonry_id'];
    	
    $classpopup = '';
    $classpopupbonus = '';	
    	
    $oeuvretitle = get_the_title($pid);
    if (get_the_post_thumbnail_url($pid, "full")) {$oeuvreimagethumb = get_the_post_thumbnail_url($pid, "full");$oeuvreimagethumbid = attachment_url_to_postid($oeuvreimagethumb);} else {$oeuvreimagethumb = '';$oeuvreimagethumbid = '';}
    if (get_field("oeuvre_annee", $pid)) {$oeuvredate = esc_html(get_field( "oeuvre_annee", $pid ));} else {$oeuvredate = '';}
    if (get_field("oeuvre_technique", $pid)) {$oeuvretechnique = esc_html(get_field( "oeuvre_technique", $pid ));} else {$oeuvretechnique = '';}
    if (get_field("oeuvre_legende", $pid)) {$oeuvrelegende = get_field( "oeuvre_legende", $pid );} else {$oeuvrelegende = '';}
    
    $oeuvreportaitpaysage = get_field("oeuvre_portait_paysage", $pid);
    if (get_field("oeuvre_image", $pid)) {$oeuvreimage = get_field( "oeuvre_image", $pid );$oeuvreimageurl = wp_get_attachment_url( $oeuvreimage );$classpopup = 'oeuvre-image '.$oeuvreportaitpaysage;} else {$oeuvreimage = '';}
    if (get_field("oeuvre_flipbook_v2", $pid)) {$oeuvreflipbook = get_field( "oeuvre_flipbook_v2", $pid );$classpopup = 'oeuvre-flipbook';} else {$oeuvreflipbook = '';}
    if (get_field("oeuvre_son", $pid)) {$oeuvreson = get_field( "oeuvre_son", $pid );$classpopup = 'oeuvre-son';} else {$oeuvreson = '';}
    if (get_field("oeuvre_video", $pid)) {$oeuvrevideo = get_field( "oeuvre_video", $pid );$classpopup = 'oeuvre-video';} else {$oeuvrevideo = '';}
    if (get_field("oeuvre_citation", $pid) == 'oui') {$oeuvrecitation = get_field( "oeuvre_citation", $pid );$classpopup = 'oeuvre-citation';} else {$oeuvrecitation = '';}
    
    $oeuvrelien = get_post_permalink($pid);
    $oeuvreslug = get_post_field( 'post_name', $pid );
    $lienetoilee = __( 'Cliquez ici pour un supplément d’âme', 'peynet');
    
    $output = '';
    
    $output .= '<div id="'.$oeuvreslug.'" class="popup-oeuvre-principale '.$classpopup.' ">';
    $output .= '<div class="avia-section main_color avia-section-default avia-no-border-styling  el_after_av_one_full  el_before_av_section  avia-bg-style-scroll av-minimum-height av-minimum-height-100 av-height-100 container_wrap fullsize"><div class="container av-section-cont-open"><div class="template-page content  av-content-full alpha units"><div class="post-entry post-entry-type-page "><div class="entry-content-wrapper clearfix jmcustompopupcontainer">';
    	
    	
    // Bloc titre, date, technique	
    $output .= '<div class="titredatetechniquecontainer">';
    $output .= '<div class="titredatetechnique">';
    $output .= '<p class="oeuvre-titre">'.$oeuvretitle.'</p>';
    if (get_field("oeuvre_annee", $pid)) {$output .= '<p class="oeuvre-annee">'.$oeuvredate.'</p>';}
    if (get_field("oeuvre_technique", $pid)) {$output .= '<p class="oeuvre-technique">'.$oeuvretechnique.'</p>';}
    if (get_field("oeuvre_legende", $pid)) {$output .= '<p class="oeuvre-legende">'.$oeuvrelegende.'</p>';}
    $output .= '</div></div>';	
    	
    //	Bloc contenu principal
    $output .= '<div class="contenuprincipaloeuvrecontainer">';
    $output .= '<div class="contenuprincipaloeuvre">';
    if (get_field("oeuvre_image", $pid)) {
    				$output .= '<div class="contenuprincipaloeuvreimage">';
    				$output.= do_shortcode ("[av_image src='".$oeuvreimageurl."' attachment='".$oeuvreimage."' attachment_size='full' src_dynamic='' copyright='' caption='' image_size='' styling='' box_shadow='none' box_shadow_width='10' box_shadow_color='' align='center' font_size='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' link='' link_dynamic='' target='' animation='no-animation' animation_duration='' animation_custom_bg_color='' animation_z_index_curtain='100' parallax_parallax='' parallax_parallax_speed='' av-desktop-parallax_parallax='' av-desktop-parallax_parallax_speed='' av-medium-parallax_parallax='' av-medium-parallax_parallax_speed='' av-small-parallax_parallax='' av-small-parallax_parallax_speed='' av-mini-parallax_parallax='' av-mini-parallax_parallax_speed='' hover='' blur_image='' grayscale_image='' fade_image='' appearance='' css_position='' css_position_location=',,,' css_position_z_index='' av-desktop-css_position='' av-desktop-css_position_location=',,,' av-desktop-css_position_z_index='' av-medium-css_position='' av-medium-css_position_location=',,,' av-medium-css_position_z_index='' av-small-css_position='' av-small-css_position_location=',,,' av-small-css_position_z_index='' av-mini-css_position='' av-mini-css_position_location=',,,' av-mini-css_position_z_index='' transform_perspective='' transform_rotation=',,,' transform_scale=',,' transform_skew=',' transform_translate=',,' av-desktop-transform_perspective='' av-desktop-transform_rotation=',,,' av-desktop-transform_scale=',,' av-desktop-transform_skew=',' av-desktop-transform_translate=',,' av-medium-transform_perspective='' av-medium-transform_rotation=',,,' av-medium-transform_scale=',,' av-medium-transform_skew=',' av-medium-transform_translate=',,' av-small-transform_perspective='' av-small-transform_rotation=',,,' av-small-transform_scale=',,' av-small-transform_skew=',' av-small-transform_translate=',,' av-mini-transform_perspective='' av-mini-transform_rotation=',,,' av-mini-transform_scale=',,' av-mini-transform_skew=',' av-mini-transform_translate=',,' mask_overlay='' mask_overlay_shape='blob' mask_overlay_size='contain' mask_overlay_scale='100%' mask_overlay_position='center center' mask_overlay_repeat='no-repeat' mask_overlay_rotate='' mask_overlay_rad_shape='circle' mask_overlay_rad_position='center center' mask_overlay_opacity1='0' mask_overlay_opacity2='1' mask_overlay_opacity3='' title_attr='' alt_attr='' img_scrset='' lazy_loading='disabled' id='' custom_class='' template_class='' av_element_hidden_in_editor='0' sc_version='1.0' admin_preview_bg=''][/av_image]
    ");
    				$output .= '</div>';}
    if (get_field("oeuvre_flipbook", $pid)) {
    				$output .= '<div class="contenuprincipaloeuvreflipbook">';
    //				$output .= do_shortcode ("[real3dflipbook pdf='".$oeuvreflipbook."']");
    				$output .= do_shortcode (' [dflip id="'.$oeuvreflipbook.'"][/dflip]');
    				$output .= '</div>';}
    if (get_field("oeuvre_son", $pid)) {
    				$output .= '<div class="contenuprincipaloeuvreson">';
    				$output .= do_shortcode ("[sc_embed_player fileurl='".$oeuvreson."']");
    				$output .= '</div>';}
    if (get_field("oeuvre_video", $pid)) {
    				$output .= '<div class="contenuprincipaloeuvrevideo">';
    				$output .= do_shortcode ("[av_video src='".$oeuvrevideo."']");
    				$output .= '</div>';}
    if (get_field("sliderimages", $pid)) {	
    				$output .= '<div class="contenuprincipaloeuvreslider">';
    				$output.= do_shortcode ("[jmpeynetslider bonus='non' pid='".$pid."']");
    				$output .= '</div>';}
    $output .= '</div></div>';	
    	
    //	Bloc lien vers bonus
    $output .= '<div class="bonuslinkcontainer">';
    if (get_field("oeuvre_bonus", $pid) == 'oui') {
    $output .= '<div class="bonuslink open-popup-bonus-link" datalink="#bonus-'.$oeuvreslug.'">';
    	$output .= $lienetoilee;
    
    $output .= '</div>';
    }
    $output .= '</div>';
    	
    // Closing the main container
    
    	
    $output .= '</div></div>';
    
    	$output .= '<div class="peynetmasonry-navigation-container">';
    if($previousid)	{$output .= '<a href="#" class="type-oeuvre navigation-link" data-av-masonry-item="'.$previousid.'" data-linkcurrentmasonryid="'.$masonryid.'"> < </a>';}
    	$output .= '<div style="width:5px;"></div>';
    if($nextid)	{$output .= '<a  href="#" class="type-oeuvre navigation-link" data-av-masonry-item="'.$nextid.'" data-linkcurrentmasonryid="'.$masonryid.'"> < </a>';}
    	$output .= '</div>';
    	
    $output .= '<button title="Close (Esc)" type="button" class="mfp-close">×</button>';
    
    $output .= '</div></div></div>';	
    	
    $output .= '</div>';
    				
    return $output; 
    }
    add_shortcode('jmpeynetoeuvre', 'shortcode_jmpeynetoeuvre');

    I know it’s a lot, but I wanted to give you all the necessary elements. The ‘jmpeynetslider’ shortcode creates a content slider from an ACF WYSIWYG field filled with multiple pictures.

    Best

    #1480410

    Many thanks Guinne007 that works great.
    I will add a fallback image but I would like it to work on mobile too. It looks great in the browser set to mobile size.

    #1480407

    just like on :
    https://kriesi.at/support/topic/add-logo-to-full-screen-slider/#post-1480358
    f.e.:
    (and maybe a small drop-shadow to the png

    #top .avia-fullwidth-slider::after {
      position: absolute;
      display: block;
      content: "";
      width: 18vw;
      height: 15.3vw;
      max-width: 411px;
      max-height: 349px;
      min-width: 200px;
      min-height: 170px;
      top: 120px;
      left: 80px;
      background-image: url(/wp-content/uploads/2025/03/Gathering-Barn-Banner-Logo-.png);
      background-repeat: no-repeat;
      background-size: calc(100% - 40px) calc(100% - 40px);
      background-position:center center;
      filter: drop-shadow(1px 1px 2px #666);
    }
    
    @media only screen and (max-width: 767px) {
      #top .avia-fullwidth-slider::after {
        top: 2vw;
        left: 2vw;
      }
    }

    but i see that the slider is not shown on mobile? And we had to place always a fallback image for videos?
    dear mods – has this always been the case with Enfold?
    It is unfortunate that we do not have the opportunity to decide for ourselves.

    Hey nancyT,
    I don’t have a iPhone, do you mean this:
    Screen Shot 2025 03 28 at 12.18.16 PM
    If so try this css:

    @media only screen and (max-width: 450px) { 
    	#top #payment div.payment_box {
        width: 100%;
        padding: 0;
    	}
    }

    After applying the css, please clear your browser cache and check.
    Screen Shot 2025 03 28 at 12.29.33 PM

    Best regards,
    Mike

    #1480389

    In reply to: Icon List Blank

    Hey Lee Germeroth,
    I see that you are using v6.0.9 with a child theme.
    I don’t see any errors in your console log, does your child theme have a header.php or footer.php? If so please remove.
    Otherwise please update and include a admin login in the Private Content area so we can examine.
    If you can’t update with your token please follow these steps:
    To update you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg

    Best regards,
    Mike

    #1480384

    In reply to: spacing between blocks

    Hey Sandra,
    I’m not sure which column with the “hat” you mean, perhaps a screenshot would help.
    To add a screenshot please try using an Screenshot service and pasting the image URL in your post.

    Best regards,
    Mike

    #1480383

    Topic: spacing between blocks

    in forum Enfold
    SandraMarino
    Participant

    Hello

    In the column, I would like to bring the title and the text of the hat closer to the image, reducing the gap. How can I do this?

    #1480370

    Yes I would like it on small screens – how do I use relative width / height combinations?
    This is what I changed css to to get it looking right:

    #top .avia-fullwidth-slider::after {
      position: absolute;
      display: block;
      content: "";
      width: 300px;
      height: 255px;
      top: 50px;
      left: 60px;
      background-image: url(/wp-content/uploads/2025/03/Gathering-Barn-Banner-Logo-.png);
      background-repeat: no-repeat;
      background-size: 300px;
      background-position:center center;
      background-color: rgba(0,0,0,0);
      border-radius:20px;
    }

    Thanks

    #1480363

    Hi,
    I see an error on your page in the console log ybFun_ReplaceText is not defined I believe this is the script that you are referring to:
    Screen Shot 2025 03 28 at 8.29.29 AM
    often a javascript error can cause other errors in javascripts, if you need this script then please ask the third party to review it as we don’t know this script.
    I recommend removing it to ensure that this is the issue.

    Best regards,
    Mike

    #1480358

    now we had top better find settings for relative dimension for your overlay image. …
    and maybe it is better to have that only on bigger screens?

    @media only screen and (min-width: 768px) {
      #top .avia-fullwidth-slider::after {
        position: absolute;
        display: block;
        content: "";
        width: 18vw;
        height: 15.3vw;
        max-width: 300px;
        max-height: 255px;
        top: 80px;
        left: 5vw;
        background-image: url(/wp-content/uploads/2025/03/Gathering-Barn-Banner-Logo-.png);
        background-repeat: no-repeat;
        background-size: calc(100% - 40px) calc(100% - 40px);
        background-position:center center;
        background-color: rgba(159, 171, 154, 0.5);
        backdrop-filter: blur(4px);
        border-radius:20px;
        border: 2px solid #9fab9a;
      }
    }
    

    and for extra large screens it might be best to have a max-width/-height
    always stay the aspect ratio of your inserted image (in your case 1/0.85)

    #1480357

    What is unclear about this?
    how to make a single image full width?

    marcus

    #1480351

    but you did not set the custom class!

    use for now – only to see that it is workiing
    and f.e. better with a dark background:

    #top .avia-fullwidth-slider::after {
      position: absolute;
      display: block;
      content: "";
      width: 350px;
      height: 250px;
      top: 100px;
      left: 100px;
      background-image: url(/wp-content/uploads/2025/03/Gathering-Barn-Banner-Logo-.png);
      background-repeat: no-repeat;
      background-size: 240px;
      background-position:center center;
      background-color: rgba(0,0,0,0.2);
      backdrop-filter: blur(4px);
      border-radius:20px;
    }

    and perhaps use instead this rgba background
    rgba(159, 171, 154, 0.5)

    #1480348

    Tried this from your link but not showing:
    #top .avia-fullwidth-slider.logo-over-video::after {
    position: absolute;
    display: block;
    content: “”;
    width: 280px;
    height: 120px;
    top: 150px;
    left: 100px;
    background-image: url(https://www.thegatheringbarn.co.uk/wp-content/uploads/2025/03/Gathering-Barn-Banner-Logo-.png);
    background-repeat: no-repeat;
    background-size: 240px;
    background-position:center center;
    background-color: rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);
    border-radius:20px;
    }

    #1480347

    Hello,

    Thank you, yes it is still not working on front end after cache purge, tried different browsers, and I also tried it in incognito.

    Specifically, if you check the homepage

    The special headings are janky (moving roughly, happens on other pages too)

    The animated number section doesnt work as intended anymore

    The animations for the images are no longer working.

    #1480341

    Sorry – now i see that you used the fullscreen slider! why?
    Anyway – this is similiar to the other slider – but then the video is cropped on some screen width.

    because your png isn’t transparent it does not make sense to have a limit of after pseudo-container:

    #top .avia-fullscreen-slider:after {
      position: absolute;
      display: block;
      content: "";
      width: 100%;
      height: 100%;
      top: 150px;
      left: 50px;
      background-image: url(https://www.thegatheringbarn.co.uk/wp-content/uploads/2017/04/logo2.png);
      background-repeat: no-repeat;
      background-size: 200px;
      background-position: 20px 10px;
    }

    as menitoned above – use a custom class to better select.

    PS: this page is transparent? why don’t you use the logo instead for “branding”

    #1480335

    Hi,
    I uploaded the sacramento google font that was linked above
    Screen Shot 2025 03 28 at 6.49.01 AM
    and it seems to work fine
    Screen Shot 2025 03 28 at 6.50.31 AM
    with your custom class and css, please clear your browser cache and check.

    Best regards,
    Mike

    #1480333

    Hey Darjan,
    I see that you are using v5.4.1, please update to v7.0.1
    I also see that updates on your site have been disabled, so you may need to manually update with the steps below.
    If you need further assistance please log in to the support forum and open a new thread If you are unable to login to the support forum because you don’t have a activate support contract, please try going to your Theme Forest account and renew your support and then log in to the support forum and open a new thread.
    Please note that using the contact form is not appropriate for support questions.

    To update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg

    Best regards,
    Mike

    #1480332

    Hi Ismael

    Yeah that’s what I thought but we were clearly getting issues with this approach and the buttons were showing over text. The only think that seemed to work was the spacer image forcing the button to move down.

    It did not matter how large I made the padding or margins etc it did not fix the issue so that’s why I resorted to the spacer.

    Due to time constraints I will leave the spacer image but revisit it to see if I can figure out what is going on.

    Thanks for your help. When I revisit it I may need further assistance.

    Lee

    #1480331

    Hello

    Sorry, the problem has gotten worse, the subject of the photo was even lower…
    I have changed my picture for trying to have what I Want, but it’s not good
    I don’t understand why the size of the model image (enfold gym) is 1500 x 720 and the actual height of the page banner is 420…
    Could you tell me what size banner and settings I should make to have a nice banner? It’ll be easier :-).
    I have another question you haven’t answered: the image is degraded, too much compression, how and where can I change this setting?

    Thank you for your help.

    #1480324
    Darjan
    Guest

    Hello.

    We use your theme for long time now and it was working fine. Last year we experienced problem with not showing variation images. Can you please help us with that, as we have many problems with customers, because theme is not showing variation images, when you choose variation. Our website is: robbo.si. We also dissabled all plugins but still not showing images of variations. We have set variation images too.

    I hope someone can help me.

    Thank you.
    Darjan

    #1480312

    Hi,

    Thank you for the screenshot.

    You may need to disable the parallax effect and set the Background Repeat to “Scale to Fit” to make sure that the entire image is visible within the background positioning area.

    Best regards,
    Ismael

    #1480311

    Hi,

    It’s not really necessary to use transparent PNG images as spacers. You can simply use css to adjust the margin or padding of the button or the element above it.

    Best regards,
    Ismael

    #1480304

    In reply to: Overlay on Columns

    Hi,

    Glad to know it’s working. Yes, you can use it with the Grid Row element, but you may need to adjust the css a bit.

    #top #wrap_all .av-custom-gradient-section {
      background-color: transparent;
      background-image: linear-gradient(180deg, #FFFFFF21 23%, #FFCBA4 93%);
      opacity: 1;
      transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    }
    

    To apply different gradient colors, add another Custom CSS Class name to the element, such as “av-custom-gradient-section av-gradient-black-to-white” or “av-custom-gradient-section av-gradient-red-to-white”, then specify the gradient with this css:

    #top #wrap_all .av-gradient-black-to-white {
      background: rgb(0,0,0);
      background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,1) 65%);
    }
    
    #top #wrap_all .av-gradient-red-to-white {
      background: rgb(255,0,0);
      background: linear-gradient(0deg, rgba(255,0,0,1) 0%, rgba(255,255,255,1) 65%);
    }

    You can use this tool to generate the gradient CSS properties: https://cssgradient.io/

    To apply a background image with a gradient, you’ll need to use the Color Section element. As instructed above, you need to enable the color overlay.

    Best regards,
    Ismael

Viewing 30 results - 31 through 60 (of 104,879 total)