Forum Replies Created

Viewing 30 posts - 3,631 through 3,660 (of 11,542 total)
  • Author
    Posts
  • in reply to: Search autofocus on field and click on mobile search #1330524

    guess this will be part of next Update: 4.8.7.2
    it is in searchform.php if you change position of the two input lines like this:
    first sumit then text
    ( click to enlarge )

    it will do the job ( although it is not logic why )
    if you don’t want to wait – edit your searchform.php yourself and upload it to the child-theme root folder ( besides style.css )

    in reply to: Disable lightbox for image link #1330287

    the reason why i ask is – if it is an image placed to a text-block via media library – you can set these options on hovering the image after placement – click that pencil (edit) and fill in what you need: especially the noLightbox class:

    in reply to: Disable lightbox for image link #1330270

    is it the ALB Element : Image – or is it an image placed via Media Library to a text-block ?

    in reply to: Top of website too high, hidden behind header #1330267

    besides that – what do you like to obtain by – that on a “shrinking” header?

    newH = el_height/1;
    

    Changing only this line – causes the header height to jump when it has covered the scroll distance.
    Here you can see the mathematical background of the shrinking header : https://kriesi.at/support/topic/shrinking-of-header-amount-an-info/

    maybe it is better to hamper the shrinking via Enfold Options – header – Header Behavior : Shrinking Header

    in reply to: excerpt length on blog page #1330179

    Yes

    Yes – thats it !
    I should have seen it too. It was clear that it could not go like that.
    Now close it.

    in reply to: Troubleshooting transparent/shrinking header #1330116

    OK my test site on this is: https://basis.webers-testseite.de/garrod/
    i just changed position – and use a child-theme edited avia-snippet-sticky-header.js on this
    ( then i stop now to style the responsive case )

    in reply to: Troubleshooting transparent/shrinking header #1330097

    One thing is to use the header: logo – center, menu – below
    and then change position in dom via child-theme functions.php:

    function change_position() { 
    ?>
    <script>
    (function($){
    	$('#header_main_alternate').insertBefore($('.av-logo-container'));
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'change_position');

    next will be to calculate the shrink amount – i test that in the meanwhile.

    ok – can be closed then. I did not found that filter – and it is in there @since 4.5.4.
    Asche auf mein Haupt ;)

    Edit: Using that filter – will end in:

    in reply to: How to align Text to match picture with two sections #1330083

    the p tag got a top/bottom margin of 0.85em

    p {
        margin: 0.85em 0;
    }

    even if you set this to Zero – there will be a litle distance.
    But what if you place a separator/whitespace line above the image with a height of 0.85em ?

    and on responsive case – that text under the image – you can set the whitespace to hide on smaller screens.

    Many many thanks. You did that for the widgets allready ( avf_newsbox_image_size ) in former times – and i guess that would be a nice idea here too!

    in reply to: Sucherweiterung anpassen #1329830

    And because of event.which is deprecated ( i erased that function above ) use better:
    ( on child-theme functions.php )

    function disable_enter_key(){
    ?>
    <script type="text/javascript"> 
    (function($) {
    	$(document).on('keypress keydown keyup', '#searchform', function(e) {
    	  if(e.keyCode == 13) {
    		e.preventDefault();
    		return false;
    	  }
    	});
    })(jQuery);	
    </script>
    <?php
    }
    add_action('wp_footer', 'disable_enter_key');

    by the way: on small screens ( mobile devices ) the ajax response list maybe too big for the screen. On default – it is not scrollable that window:

    #top #searchform .ajax_search_response {
        max-height: calc(100vh - 200px);  /* test it with fitting settings */
        overflow-y: auto;
        height: auto;
    }

    disadvantage: maybe you do only hamper enter key on desktop devices ! because on my mobile the text input will be closed by enter key ;)
    so maybe that line above to replace by:
    $(document).on('keypress keydown keyup', 'html:not(.avia_mobile) #searchform', function(e) {

    in reply to: Sucherweiterung anpassen #1329829

    das habe ich noch nie getestet. In der Tat bei Enter öffnet sich die Suchseite.
    versuche mal :
    _______
    I have never tested this. In fact, if you press Enter, the search page opens.

    Edit : use the next code

    in reply to: open-popup-modal on mobile #1329828

    you are reffering to a page ( you link above https://kriesi.at/support/topic/open-popup-modal-with-button/ ) – there are several snippets – but this is an older topic – you have to replace that line with mine – not to replace the whole code . This is mikes link to Ismaels Post . You see that here is the setting of no-scroll class on the initiating anchor. And you see that there is window on load.
    ___________
    Some info on that.
    So you have placed a hidden code block on the page. That codeblock got an unique ID – and an anchor is linking to that ID.
    How would a (non-lightbox) link to an ID on the same page behave?
    You click it, and it scrolls to the anchor there.
    The trick with this modal window is that the html code is inside a code block. Nevertheless, the code block is in a place inside your DOM. So if this codeblock is at the bottom – the modalwindow opens, but still the window scrolls to the place where the codeblock is in the layout. This can be prevented in Enfold, by setting the class no-scoll to that link.

    The fact that the background no longer moves with the scroll when the lightbox is open has become standard – or so I thought. (This is what Mike had recommended and belongs to the earlier solution to assign the property overflow-y: hidden to the html.
    If you could please post your snippet here, then I can tell you better in this regard what to change.

    yes thanks –
    the options on that code is only big and small – Is there a way to choose the source of the image used for that? I see on loop-index.php – so i can have a child-theme loop-index.php:
    $size = strpos( $blog_style, 'big' ) ? ( ( strpos( $current_post['post_layout'], 'sidebar' ) !== false ) ? 'entry_with_sidebar' : 'entry_without_sidebar' ) : 'square';
    but it would be nicer to have a snippet solution.

    in reply to: open-popup-modal on mobile #1329687

    try to give to the link that initiates the modal window a custom-class ( has to go to the anchor itself ) : no-scroll

    PS: pay attention that is a very old topic – in the meanwhile we got jQuery 3.5.1 –
    the code jQuery(window).load(function(){ is deprecated
    and you had to use instead:

    $(window).on('load', function(){
    
    in reply to: Sucherweiterung anpassen #1329685

    Den Code hatte dir doch Mike gepostet.
    Nur #main ist wie gesagt nicht Teil des Headers in dem sich das alles abspielt und ich stellte fest, das es ohne den Zusatz !important nicht ging – also:

    #top .av_ajax_search_entry_view_all {
    	display: none !important;
    }
    in reply to: Sucherweiterung anpassen #1329650

    Du möchtest keinerlei Link dort haben?
    Ist das wirklich das was ein Besucher deiner Seite erwarten würde, wenn er die Suche anstrengt?
    Wenn ich irgendwo auf einer Seite einen Begriff suche erwarte ich auch, dass mir der entsprechende Link dorthin auch angezeigt wird.
    Was bezweckst Du damit?
    __________
    You don’t want to have any link there?
    Is that really what a visitor to your site would expect when they search?
    When I search for a term somewhere on a page, I also expect the corresponding link to be displayed.
    What do you want to achieve with that?

    .ajax_search_response a {
        pointer-events: none !important;
    }

    PS – du kannst auch die ajax Suche ganz abschalten und direkt zur Suchseite weiterleiten.

    in reply to: SVG logo looks pixelated on Chrome #1329642

    he’s got the 4.8.6 so the svg is loaded as img tag – but even then the svg should be sharp – but i do not know how the browser will render a svg in an img-tag.
    Best would be to update as ismael said – after having an inline svg logo we will see if that helps.

    in reply to: excerpt length on blog page #1329571

    and how to use it – for setting excerpt_length ?

    ok – sorry, then I misunderstood him.
    I thought he just didn’t want the lightbox to open when clicking the thumbnails.
    So only the large image should be shown when clicking the thumbnails.

    sorry i didn’t see that you solved allready your issue.

    • This reply was modified 3 years, 8 months ago by Guenni007.
    in reply to: Sucherweiterung anpassen #1329473

    ja weil #main nicht den #header einschließt sondern Sibling ( Geschwister ) ist , die liegen also auf gleicher Ebene
    – das #top ist o.k.

    in reply to: Youtube #1329470

    ich weiß nicht woran es liegt. Früher gingen die youtu.be links.

    PS : an deiner Font Geschichte mußt du arbeiten, da sind eine Menge Fehlermeldungen in der Konsole

    in reply to: Youtube #1329467

    try to insert not the youtu.be link but https://www.youtube.com/watch?v=aa5k3o5lDJI

    the https://youtu.be/aa5k3o5lDJI does not work on my site – because i have strict Header Policies on my page.
    if i allow https://youtu.be on frame-src it will do exactly the same error.

    in reply to: 2 column rows for mobile view #1329459

    to what element does the ID: #impact-boxes belong?
    i do not believe that it is a parent of #wrap_all ! This is parent of all content you can set on default.
    the #top ID belongs to the body tag and is parent of #wrap_all
    so this might be the right sequence ( cascading ) : .responsive #top #wrap_all #impact-boxes .flex_column
    if it is a color-section

    in reply to: Replace alternate Logo on some pages #1329352

    Thank you – that works – looks horrible in child-theme functions.php – but it is faster than:

    function replace_transparent_logo_on_some_pages(){
    if(is_front_page()){
    ?>
    <script>
    (function($){  
        $.get('URL_of_that_SVG', function(svg){
          $( ".avia-svg-logo-sub" ).html( svg );
        }, 'text');
    })(jQuery);
    </script>
    <?php
    }
    }
    add_action('wp_footer', 'replace_transparent_logo_on_some_pages');

    i try to get a combination of both ;)

    yes – that is nearly exactly my solution – only that change in gallery.js i think it is not necessary.
    – but it has the disadvantage ( as mentioned above ) – that there is no “gallery mode” ( on magnificPopup: gallery: { enabled:true }, )

    in reply to: When do we see Global Elements as an option? #1329334

    Next: for that option to change one page and change on several pages i use the ALB: Page Content
    Layout your page you like to insert on a different page and insert it with that alb.
    Editing that page will change it on every place it is inserted to.

    ________

    in reply to: When do we see Global Elements as an option? #1329332

    And how about the option to save the color-section as template?

    I use that for a lot of prestyled layouted Color-Sections
    you find those templates in the upper right side –
    Or save a whole page as template !

Viewing 30 posts - 3,631 through 3,660 (of 11,542 total)