Forum Replies Created

Viewing 30 posts - 8,491 through 8,520 (of 10,920 total)
  • Author
    Posts
  • in reply to: Sticky element in a PAGE #870584

    my recommendation: use for that very demanding point of a fixed positioning in floating systems a given script.
    From my recherche point – there is no good plugin for it – but a few good jQuery scripts to solve the problematic.
    The scroll event is something you have to be carefull with – not to overload site performance.
    You have to think about – if you have long fixed column too ( longer than screen height ! how to view this content under the screen bottom of the fixed column!

    have a look to this site: https://webers-testseite.de/sticky-column/
    if you scroll to bottom – the fixed positioning is gone to get the content in the left column too !

    you find the script on : https://github.com/EnzoMartin/Sticky-Element#readme

    if you like this solution – i will show you how to load only for the given pages the sources. And to implement it in enfold.

    well first – you don’t want to have two search icons ? – yes – so remove the one by dashboard – enfold(-child) – hauptmenu – Append search icon to main menu
    uncheck the box.
    Try to get rid of your code to center the logo.
    if you haven’t anything against it post a live link to your page.

    Get familiar with child-themes – this is the only way to do proper hooks and filters.
    You don’t loose changes by updating the parent theme

    See here with download. No Magic behind it:
    Theme-Documentation: https://kriesi.at/documentation/enfold/
    Using Child-Theme: https://kriesi.at/documentation/enfold/using-a-child-theme/
    Download a predefined child-theme: http://bit.ly/enfold-child

    in reply to: Sticky element in a PAGE #870487

    for information : I use a child theme called “evryware”

    https://kriesi.at/documentation/enfold/change-the-dynamic-css-file-name/

    but if you have this in your “child-theme” called everyware :

    /*
    Theme Name: Enfold Child
    Description: Childtheme fuer Enfold
    Version: 1.0
    Author: Kriesi
    Author URI: http://kriesi.at
    Template: enfold
    */
    
    /*Add your own styles here:*/

    you don’t need to do anything i guess
    but you can even rename the enfold folder to everyware and name your child-theme : everyware-child

    and this will be the propper use of Theme Name obfuscation

    Than do this in Child-Theme style.css

    /*
    Theme Name: everyware Child
    Description: Childtheme fuer everyware
    Version: 1.0
    Template: everyware
    */

    rename the enfold folder to evryware you can all do that via ftp !

    and that to functions.php of your child-theme:

    add_filter('avf_dynamic_stylesheet_filename', 'avia_change_filename');
    function avia_change_filename(){
        return 'everyware';
    }

    the code of Ismael comes too into child-theme functions.php – BUT ! he has to look over it – because there are some “slip of the pen” faults

    in reply to: make iphone call number by clicking on a image #870399

    ah – you have forgotton one closing curly bracket after return logo. !

    on if clauses you can have nice things like:

    if ( is_singular( 'event' ) || is_search( ) || is_category( ) || is_page( ) && !is_page(1307) || is_singular( 'portfolio' ) ) {

    the || marks the or and the !. means not

    • This reply was modified 7 years, 1 month ago by Guenni007.
    in reply to: make iphone call number by clicking on a image #870398

    first of all – you can simplify a bit this by using arrays:

    add_filter('avf_logo','av_change_logo');
    function av_change_logo($logo)
    {
        if ( is_page( array( 3364, 3385, 3403, 3416, 3626, 3813 ) ) ) {
        $logo = "https://splinter.care/wp-content/uploads/2017/09/Telefoonnummermagenta.png"; 
            }
        elseif ( is_page( array( 3542, 3568, 3695 ) ) ) {
        $logo = "https://splinter.care/wp-content/uploads/2017/09/Telefoonnummercyaan.png"; 
            }
        return $logo;
    }
    
    add_filter('avf_logo_link','av_change_logo_link');
    function av_change_logo_link($link)
    {
        $link = "tel:0031850657349";
        return $link;
    }

    i do not see a fault on your code – even the if, if, if must work. (only the double marks – but this is due to boardsoft and not using the code tag)

    in reply to: Sticky element in a PAGE #870261

    var sticky = $('.fixed_element');

    so i guess the $sticky is wrong in the rest of the function – or you setup
    var $sticky = $('.fixed_element');

    in reply to: Search icon links, Logo mittig und burger menu rechts #870200

    ich denke du hast mehr Erfolg eine Antwort der Mods zu erhalten, wenn Du englisch hier nachfragst.
    Es gibt zwar einige Mods die auch deutsch verstehen , bzw sprechen – (mein Namensvetter Günter aus Österreich) – aber das Gros spricht hier Englisch.

    in reply to: Blurred pictures #870196

    i do use this code – don’t know if both will work:

    
    add_filter( 'jpeg_quality', create_function( '', 'return 100;' ) );

    but this will affect only the upload – so if you want to handle already uploaded images you must use after the code a plugin like regenerate thumbnails – to recalculate the images.

    in reply to: Search icon links, Logo mittig und burger menu rechts #870186

    ??? https://kriesi.at/support/topic/search-icon-left-logo-center-and-burger-menu-right-in-mobile-view/

    hm – do you believe there is a better solution?

    Es nimmt Dir hier keiner Übel wenn Du was nicht verstehst, – dann ist einfach nachfragen angesagt. – Aber einen neuen Thread aufmachen ist nicht so toll. Und wird selten gerne gesehen. Jedenfalls war das in den Boards so, die ich damals leitete.

    War etwas unverständlich an meiner Erklärung vom Link oben?
    Weisst du wie du ein Child-Theme einrichtest?
    Wo man die functions.php im Dashboard findet ?
    etc. – keine Frage ist zu dumm.
    Die Lernkurve ist hier an Board sehr steil.

    _____________________

    It does not take you any evil here if you do not understand something, – then just ask is announced. – But a new thread is not so great.

    Was something incomprehensible at my explanation from the link above?
    Do you know how to set up a child theme?
    Where to find the functions.php in the dashboard?
    etc. – no question is too stupid.
    The learning curve is very steep here on board.

    look here: https://kriesi.at/support/topic/logo-isnt-showing-in-mobile-menu/#post-868215
    now it is a bit easier because the new 4.2 got now every burger-menu list point a unique id so on #avia-menu you can set the menu-item-id to display none. on burger-menu – do nothing.

    the method ist to put in menu two home links – the one shows the text the first one is replaced with the img src .
    This first one you set on #avia-menu to display none.

    in reply to: Footer line in center of page #870070

    try this in quick css and have a look what happens to the very small screens (drag your browser-window extremly small)
    if all fits well in this case too – it is ok otherwise you have to do more css to fit for that case

    #socket .container { text-align: center }
    #socket .copyright { float: none; width: 100% }

    that means on non responsive case you have the text menu?
    no difference between the codes – only if you have a top-navigation

    in reply to: Video background broken in Enfold 4.2 #869957

    And Safari not solved.
    By the way – did the .mejs-container only exists if a self-hosted video is set.
    on my test page i only inserted youtube video – and no way to find that class.

    in reply to: image on server http in stead of https #869954

    the original image is on : https://kriesi.at/themes/enfold-construction/files/2015/10/house-wire-model-fade-white.png

    kriesi has now https too and therefore the links are new

    so it depends now if you have social icons on the right side – if so we had to style the positioning again
    f.e. the .avia-menu.av_menu_icon_beside

    have a look to this –
    i do not know if you have social icons too besides the burger menu icon
    and how did you center the logo (its in my code implemented)
    you have to style it for the different responsive cases.

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

    you must use a child-theme for this solution:

    this comes to functions.php of yout child-theme:

    add_filter( 'ava_main_header', 'avia_append_search_header_mod');
    function avia_append_search_header_mod()
    {
      global $avia_config;
      ob_start();
      get_search_form();
      $form =  htmlspecialchars(ob_get_clean()) ;
      $items .= '<div id="menu-item-search">
    	      		<a href="?s=" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'>
    	      		<span class="avia_hidden_link_text">'.__('Search','avia_framework').'</span>
    	      		</a>
             	</div>';
        echo $items;
    }

    this comes to quick css:

    div .logo, .logo img, .logo .subtext img {
        left: 50%;
        transform: translateX(-50%);
    }
    #top #header_main #menu-item-search {
        position: absolute;
        left: 25px;
        top: 25px;
    }
    #top #header_main #menu-item-search a {
        color: #333;
        font-size: 24px;
    }
    .responsive #top .logo {
        position: relative;
    }
    in reply to: New visual artist demo #869825

    the page concerning to is the landing-page of that demo
    and i recognised that if i choose on this case not the contain option. If we take there the no-repeat it will be the best for ipad etc.
    but i can not force it by media-queries .

    see here with position fixed but center center and no-repeat ! ?

    https://webers-testseite.de/weber/visualisation/

    in reply to: Adjust Speed CSS Animation #869701

    well it is not as easy as to place it in quick css. on shortcodes.css replacement it has an effect.
    perhaps you edit the keyframe too – it looks better – the distance of transformation is to short to see a faster animation.

    f.e.

    @-webkit-keyframes avia-ltr {
      0%   { -webkit-transform:translate(-50%,0); opacity: 0;  }
      100% { -webkit-transform:translate(0,0); opacity: 1; }
    }
    @keyframes avia-ltr {
      0%   { transform:translate(-50%,0); opacity: 0;  }
      100% { transform:translate(0,0); opacity: 1; }
    }

    see https://webers-testseite.de/elegant/animated-images/

    PS: try to set the keyframes on quick css – i did not test it – if it works

    in reply to: Adjust Speed CSS Animation #869692

    you see that this is only one example of /*animation variations*/
    i see alot of animation on your site but not where you uses the enfold implemented one. I see some transfomings with matrix.
    Where are your animations to style ?

    And where is the enfold theme ? :lol
    https://js-interactive.com/

    by the way – very impressive !

    in reply to: How to display English blogposts on Danish version #869666

    i believe it is on wpml easy to obtain – under the wpml options there are on Languages just under Language URL Format the:

    Language switcher options
    All language switchers in your site are affected by the settings in this section.

    there is “How to handle languages without translation” try to choose skip language and see what happens

    in reply to: A very special question to developers #869522

    hm – just a moment –

    in reply to: A very special question to developers #869515

    yes indeed

    in reply to: Change image on hover #869444

    But please think of it if the sprite method is an option to do it – it is used for a long time and has the advantage that the image is completely loaded before someone hovers the image.
    Less http request is one reason for it. See here a nice Article about Sprites: https://css-tricks.com/css-sprites/
    And here is a Sprite Generator if you are not familiar with photoshop. https://www.toptal.com/developers/css/sprite-generator

    in reply to: Video background broken in Enfold 4.2 #869350

    sometimes the video starts automatically – sometimes it is only a screenshot seen. and the playbutton on it has no function
    Dont know.

    in reply to: Video background broken in Enfold 4.2 #869291

    on shortcodes.css there are some extra entries for the customisable down arrow.
    just one line above – on line 369 :
    new 4.2: div .av-section-color-overlay{position: absolute; top:0; left: 0; bottom: 0; width:100%; }
    old 4.12 div .av-section-color-overlay{position: absolute; top:0; left: 0; height: 100%; width:100%; }

    i replaced this old line in the new 4.2 shortcodes css – and voila even Safari plays the video again.

    https://webers-testseite.de/elegant/beispiel-seite/

    PS do not wonder – i changed a bit in section.php to have the possiblity to mute or unmute video background.

    EDIT: wow just now ? only safari makes some troubles.

    OK – we had to search for it – this is not the solution.

    • This reply was modified 7 years, 1 month ago by Guenni007.
    in reply to: Video background broken in Enfold 4.2 #869279

    as far as i can see on color-section only the customisable arrow key was new.

    i don’t know why – i’m often exempted from those bugs.

    Maybe it is because i do always update via ftp –
    i empty all cache before updating and – switch of all caching tools ( wp-supercache , bwp-minify )
    i do completely erase the enfold folder.
    and then uploading the new one.

    Edit : well on safari there is a fault – on all the other browser it works as expected.

    • This reply was modified 7 years, 1 month ago by Guenni007.

    open your page on which you like to change it – goto your browser menu and look to the source code.
    The body has the page id (looks this way page-id-2604) and is a class . Because body is a parent of main_color class

    than try (in my example)

    .page-id-2604  input[type='submit'] {
    background-color: orange ;
    color: black;
    border-color: orange;
    }
    .page-id-2604  input[type='submit']:hover {
    background-color: red;
    color: white;
    border-color: red;
    }
    in reply to: one_fourth columns on responsive case #869269

    yes – but even i’m (lol) not able to get it. The display table is tricky.

    in reply to: PHP apache warnings since 4.2 #869117

    Can you please post the whole error – that would be helpful

    in reply to: PHP apache warnings since 4.2 #868960

    hm i have installed new Enfold on a test page and integrated the new audioplayer on the starting page – i do not have these troubles.

    mod_fcgid seems to belong to bwp-minify (Groups.php) .
    if you have installed it – please try to deactivate it – to prove if it comes from that.

    there is on bwp minify on tab “manage enqueued files” the options to exclude js and css from minifying.
    If you are shure that it could be the player than try to exclude wp-playlist.js

Viewing 30 posts - 8,491 through 8,520 (of 10,920 total)