Forum Replies Created

Viewing 30 posts - 301 through 330 (of 10,880 total)
  • Author
    Posts
  • Normally, the word “Protected:” (Geschützt:) is placed in front of the title of the post, and the date of creation is displayed below it.
    So have you already made any changes there?

    in reply to: Limit lines or words in excerpts #1466622

    try your css solution only and put this to child-theme functions.php:

    function shift_read_more_link_to_footer(){
    ?>
    <script>
    (function($){
    	$('.avia-content-slider .read-more-link').each(function() {
    		$(this).closest('.slide-entry').find('.entry-footer').prepend($(this));
    	}); 
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'shift_read_more_link_to_footer');

    hm ?

    just to be sure; you have already entered the class without the dot in the custom class input field?

    from https://kriesi.at/support/topic/full-page-video-that-scrolls-into-a-text-page-possible-with-enfold/#post-1466283

    We know the stumbling blocks, and if we ask about them, you should at least make the effort to look for them. Thank you

    ___________

    I removed it for you and activated the script and it now works. But since the color section is at the very top when you page loads you will only see a white area until you scroll. This solution is meant for sections that are lower that you can scroll into.

    there is in the snippet an offset called: range
    But as Mike allready mentioned – tries to show it like in your example. If you like to have that section on top : just write it in your quest.
    And on that page on scroll the video is slowly disappearing there.

    https://webers-testseite.de/snowfall4/

    I’ll leave the page online, maybe you can make friends with the solution after all ;)

    https://webers-testseite.de/snowfall-video-3/

    in reply to: Limit lines or words in excerpts #1466388

    :lol

    sometimes css might help – your idea is nice – but there are some “new” properties missing:

    try in quick css:

    .avia-content-slider .slide-entry-excerpt{
    	display: -webkit-box;
    	max-width: 100%;
    	margin: 0 auto;
    	-webkit-line-clamp: 4;
    	-webkit-box-orient: vertical;
    	overflow: hidden;
    	text-overflow: ellipsis;
    }

    Disadvantage – if you use that only – the read-more link is gone too.
    But the combination of both – ( because i put out the read-more link to the footer ) will bring good results.

    Unfortunately -webkit-box-orient is deprecated. But still works

    in reply to: Limit lines or words in excerpts #1466386

    i do not know if there is a possibility to make it by lines ; that would be a great solution – because trim by word might be end in different column heights.
    Try this in your child-theme functions.php:

    function custom_excerpt_setting(){
    ?>
    <script>
    (function($){
    // trim excerpt by words
        function trimByWord(sentence,wordcount = 50) {
            var result = sentence;
            var resultArray = result.split(" ");
            if(resultArray.length > wordcount){
            resultArray = resultArray.slice(0, wordcount);
            result = resultArray.join(" ") + "...";
            }
            return result;
        }
        $(document).ready(function(){
            $('.avia-content-slider .read-more-link').each(function() {
                $(this).closest('.slide-entry').find('.entry-footer').prepend($(this));
            }); 
            
            $('.avia-content-slider .slide-entry-excerpt').each(function() {
                 $(this).text(function(index, currentText) {
                    return trimByWord(currentText);
                 });
            });
        });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_excerpt_setting');

    or @beyond-flora : did you hook into that post of goldengate? I do not see private content fields (as Participant)

    I am a participant like you and just a helpful person. – If the link is not allowed to be made public, then you’ll just have to wait for a helping mod.

    I just didn’t pay attention to the age of the original topic. I think it would be better to open a new topic in such a case.

    this is not the url? then tell me the right one:

    Here’s the page I am working on….
    http://www.thomashenthorne.com/1292-sanderling-island-point-richmond/

    or @beyond-flora : did you hook into that post of goldengate? I do not see private content fields (as Participant)

    i do not see your page becaue:



    just to be sure;
    you have already entered the class without the dot in the custom class input field?

    But maybe there is a way to have that with advanced layerslider too! …

    yes – afaik – enfold got no option to have fixed background videos for color-sections.

    but we can set it with quick css to fixed when reaching the top.
    see following example page : https://webers-testseite.de/snowfall-video-3/

    but as you can see – your example page from ny goes on mobile view to scroll the video bg !
    on desktop view – first is to place it absolute – reaching the top will go to fixed positioning.

    so we can misuse the overlay option of enfold on that – to have all DOM elements we need. Because if you use it – enfold will generate an av-section-color-overlay container.
    The settings there are not for us important – just the fact that a container is created in the right position.

    See: https://webers-testseite.de/snowfall-video/

    for even more usability it might be nice to have an observer if the section is in viewport or not – my script now only is working with scroll top value and a given range to top ( here in my example 400px)

    if that is o.k. for you just scroll to the end of the page to see code-snippet.

    Trick is to use a huge inset shadow with rgba values – and the scroll amount will influnce the a-value of that color.

    in reply to: Mask / Cut-outs for images #1465984

    or you can use a hidden clip-path on that page to have a similar result – this is than manually done by quick css:

    See f.e.: https://webers-testseite.de/clippy/

    The text can only be wrapped if the image and text are in the same container.

    here you see how to use shape-outside: https://webers-testseite.de/clippy-2/

    in reply to: Mask / Cut-outs for images #1465983

    first – there is an enfold option to use some predefined forms on image element : Advanced Tab – Mask Overlay:

    if you look what enfold does in your DOM :

    so there is a mask-image definition and a svg file is used on that.
    you see the path of those predefined svg files – so it might be possible to have custom mask-images too. Maybe there is a way via filter (f.e. avf_mask_overlay_images) to define custom images – similar to custom dividers.
    I check that – or maybe a mod/dev can tell us how to have custom mask-images.

    in reply to: Add clickable logo/image to sub menu #1465956

    you can see it here https://webers-testseite.de/transparent-header/

    with my custom-class on that menu-item : only-subnav
    i used the footermenu for the first submenu on that page. So i had to set it for footer-menu to display none in this case

    
    #top #sub_menu1 .only-subnav {
      padding: 0 !important;
      float: left;
      top: 7px;
    }
    
    #sub_menu1 .only-subnav a {
      background-color: transparent !important;
    }
    
    #top #sub_menu1 .only-subnav img {
      margin: 0 !important;
      height: 40px
    }
    
    #top .sub_menu_socket .only-subnav {
      display: none;
    }

    I have not yet fully styled this for the Responsive case – because I only want to set this temporarily.

    in reply to: Add clickable logo/image to sub menu #1465827

    btw – you had to decide what you do in responsive case- because you haven’t any navigation now.

    in reply to: Add clickable logo/image to sub menu #1465824

    As far i can see this is a submenu based on the existing main-menu :

    just go to your Dashboard – Appearance – Menus place your custom link ( or if it is an existing link (f.e. home) ) to that menu – and put the image link to the label:

    Give a custom class to that menu-item ( it is easier to select ) or do set the menu-item-id to display non on main menu.
    Thats all.

    PS : as you can see – i use that to have a logo inside my hamburger menu.

    this could be placed via that custom-class – or menu-item-id. to the left side of your sub-menu

    f.e. for the portfolio item :

    #sub_menu1 #menu-item-64 {
      float: left;
    }
    • This reply was modified 2 months, 3 weeks ago by Guenni007.
    in reply to: Import just one single page from a demo #1465554

    After inserting the enfold shortcode and saving it, some settings must be made manually: Activating the sidebar and options (which sidebar should be displayed; etc.)

    in reply to: iconbox background color #1465551

    did you insert your custom class to the css above instead of .custom-class ? ;)

    and next hint: the custom class input field has to be filled with no dots before the classes ;)

    in reply to: Unload unused CSS/JS automatically #1465548

    if you do not use google maps – do not enter the google maps api key in enfold options.
    i guess that will be enough.

    if not you can try this in your child-theme functions.php:

    function ava_disable_gmap() {
      add_filter('avf_load_google_map_api', function($load_google_map_api) {
        $load_google_map_api = false;
        return $load_google_map_api;
      },10,1);
      add_filter('avia_google_maps_widget_load_api', function($load_google_map_api) {
        $load_google_map_api = false;
        return $load_google_map_api;
      },10,1);
    }
    add_action('after_setup_theme', 'ava_disable_gmap');
    in reply to: iconbox background color #1465543

    i guess you are using the icon above the title option!
    if your custom class is on iconbox Element itself – it will be on the parent element of the content – so:

    #top .custom-class .iconbox_content {
      background-color: #efefef;
    }
    in reply to: change the timing of the shrinking header #1465538

    Unfortunately my change still suffers from the fact that the change does not work on resize – maybe one of the mods has an idea how to update the trigger_distance on resize.

    Edit: – i added to that debouncedresize function on the bottom ( lines 165ff) – that var again:

    win.on( 'debouncedresize',  function()
    {
    	el_height = $( elements ).attr( 'style',"" ).first().height();
    	set_height();
    	trigger_distance = $('.trigger').length ? $('.trigger').offset().top - $('.trigger').height() + el_height - 50  : 0 ;
    });

    here is my whole avia-snippet-sticky-header.js : https://pastebin.com/9nCV8GiV

    in reply to: change the timing of the shrinking header #1465537

    the timing depends on the scroll speed. Therefore, this cannot be changed. However, you could either set a fixed size after which the shrink process should only start, or – even more flexibly – provide an element with a trigger that only then starts the shrink event.

    set a class to trigger that color-section ( use it only once on the page )
    i use now trigger – here as custom class.

    and added a variable to that list ( just under topbar_height ) – and changed calculation:

    topbar_height	= header_meta.length ? header_meta.outerHeight() : 0,
    trigger_distance = $('.trigger').length ? $('.trigger').offset().top - $('.trigger').height() + el_height - 50  : 0 ,
    
    set_height = function()
    {
    	var st = win.scrollTop() - trigger_distance,
    		st_real = st; newH = 0

    i do not know why i had to insert a correction distance (50px) ( alot depends on if your header_meta scrolls away or not etc. )

    you know how to have a child theme avia-snippet-sticky-header.js ?

    see example page – and scroll to that colored section on bottom: https://webers-testseite.de/anders/

    in reply to: “Bold” Schrift nur Farbwechsel #1465416
    in reply to: Site Logo issue #1465210

    Unfortunately, most online generators are not free, although this was explicitly stated in the Google search. (for example, if you want the logo as an svg file),

    put this into your child-theme functions.php

    it will remove the status from all standard post types – but leave it for important post states ( password protected, privacy etc. )

    function remove_post_state( $post_states, $post ) {
      if("! has_blocks( $post->ID )") {unset($post_states['wp_editor']);}
      if("!= Avia_Builder()->get_alb_builder_status($post->ID)") {unset($post_states['avia_alb']);}
    return $post_states;
    }
    add_filter('display_post_states','remove_post_state',999,2);
    in reply to: strange text in top left corner #1465193

    It is still there – it is that green bar with text on the left ( text is nearby the green color )

    in reply to: strange text in top left corner #1465187

    how did you embed Google Tag Manager?

    there is a phrase

    <!– End Google Tag Manager –>
    Add this to the <body> section:
    <!– Google Tag Manager (noscript) –>

    have a look if you have made some transfer errors on : https://kriesi.at/support/topic/adding-google-tag-manager-script-to-the-site/#post-1447012

    if you used that – the noscript version should also be in the head section and not inside body tag.

    So have a look inside your functions.php ( child-theme ?)

    in reply to: Site Logo issue #1465182

    to create a logo you can try to start here: https://www.vecteezy.com/
    you may also want to choose the svg format directly – then fillout some Keywords of your site – and add logo as last keyword. – In the list of suggestions you can indicate on the left that the suggestions are free of charge.

    in reply to: Custom font not loading on safari #1465130

    Well – if you open your linked css:
    https://use.typekit.net/rww4dia.css

    you see what it does: there is the @import url rule – and : font-family:”espiritu”

    if you look deeper to that css – you see that you can download those files via those urls ( even as otf)

    @font-face {
    font-family:"espiritu";
    src:
    url("https://use.typekit.net/af/cb2cbd/00000000000000007736dd40/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"),
    url("https://use.typekit.net/af/cb2cbd/00000000000000007736dd40/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"),
    url("https://use.typekit.net/af/cb2cbd/00000000000000007736dd40/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype");
    font-display:auto;
    font-style:normal;
    font-weight:400;
    font-stretch:normal;
    }
    

    you only have to give the downloaded files a meaningfull name and the correct file extension ;)

    so maybe you host those fonts on your own server.

Viewing 30 posts - 301 through 330 (of 10,880 total)