Forum Replies Created

Viewing 30 posts - 8,971 through 9,000 (of 11,692 total)
  • Author
    Posts
  • in reply to: (Newer) way to change IconBox title to H2? #905068

    i guess these files are from me – so if you have allready placed some iconboxes (icon-lists) and put in afterwards the substitutes you have to edit them again.
    There is new code added. So somehow it has to be added to existing iconboxes and iconlists. Logical right?

    I guess i will write a workaround to all my edited files i have made in the last time.

    in reply to: Disable Lightbox Modal just for photo carousel #905062

    if you are working on a child-theme you can try to add that class via functions.php of the child-theme:
    i can not see the private Content so try if this will work

    function add_class_to_wonderplugincarousel() {
    ?>
    <script type="text/javascript">
       jQuery(document).ready(function() {
          jQuery('div.wonderplugincarousel').addClass('nolightbox');
       });
     </script>
    <?php
    }
    add_action('wp_footer', 'add_class_to_wonderplugincarousel');
    • This reply was modified 7 years, 8 months ago by Guenni007.
    in reply to: Color Section into Tab Section #905000

    By the way – this is a brainful method but its css magic is wonderfull

    please compare : https://webers-testseite.de/elegant/
    with: https://kriesi.at/themes/enfold-visual-artist/

    in reply to: Embedding YouTube Video #904988

    sorry for that – i opend here a new topic : https://kriesi.at/support/topic/new-enfold-troubles-with-iframe/
    it seems to be something strange with iframe – even a simple webpage iframe fails!

    in reply to: Tabs have no style #904943

    these symbols are set on default as placeholders for post formats – is you have a normal entry the pencil is shown – if you have a video etc
    but – there are possibilities to style them – but not an easy way:

    look demo page of kriesi – there you have pencils etc. sometimes an author is shown or the featured image – depends on which blog style you have choosen: https://kriesi.at/themes/enfold-2017/blog/blog-single-author-small/

    in reply to: Embedding YouTube Video #904923

    seem not to be a problem with youtube – developer link is top – but seems to be a problem with iframe on enfold ?

    in reply to: Embedding YouTube Video #904913

    it works nice – but it seems to destroy the whole structure of the page where the iframe is inserted !!

    in reply to: Embedding YouTube Video #904882

    by the way: https://developers.google.com/youtube/youtube_player_demo

    with this it is possible : (iv_load_policy) to get rid of abonnents !!!
    and to set the starting audio volume etc pp

    <iframe id="ytplayer" type="text/html" width="720" height="405" src="https://www.youtube.com/embed/ZN5RDJFwI3I?autoplay=1&disablekb=1&rel=0&showinfo=0&iv_load_policy=3" frameborder="0" allowfullscreen>

    in reply to: Embedding YouTube Video #904846

    do not use the video alb element – Instead use a code element in what ever you like and try my codes above with iframe:

    <iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/ZN5RDJFwI3I?rel=0&showinfo=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>

    fit the width and heigt option to your desired one

    look here: https://webers-testseite.de/embed-youtube/

    If you like it with no controls at all:

    <iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/ZN5RDJFwI3I?rel=0&controls=0&showinfo=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>

    the right one is without controls but with autoplay option as above :

    <iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/ZN5RDJFwI3I?rel=0&controls=0&showinfo=0&autoplay=1" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>

    by the way – do not wonder about it – the autoplay works in alb editor already :lol:

    • This reply was modified 7 years, 8 months ago by Guenni007.
    in reply to: Embedding YouTube Video #904832

    try this: https://www.youtube.com/embed/ZN5RDJFwI3I?rel=0&showinfo=0&autoplay=1

    or
    https://www.youtube.com/watch?v=ZN5RDJFwI3I?rel=0&showinfo=0&autoplay=1

    in reply to: Embedding YouTube Video #904821

    is it a secret youtube video?

    i’m Participant as you so – no private-content for me

    this looks strange to me: ?feature=oembed&showinfo=0

    https://www.youtube-nocookie.com/embed/nNA9ru2Ox5o?rel=0&iframe=true&autoplay=1&showinfo=0

    etc pp. ?feature i don’t know

    • This reply was modified 7 years, 8 months ago by Guenni007.
    in reply to: hn for IconList #904807

    it does not work with already setted alb elements – so you have to open them again and save them once more.
    Every new alb element will have that already

    i prooved it again : https://webers-testseite.de/iconlists-and-iconboxes-with-h-tag/

    So if you already have elements set before, then you have to re-edit them – and save

    • This reply was modified 7 years, 8 months ago by Guenni007.
    in reply to: Embedding YouTube Video #904806

    can you give us the link to the youtube video you like to embed?

    in reply to: Color Section into Tab Section #904675

    das Problem ist nicht die oberseite sondern die untere dann schräg zu bekommen

    wenn du dich zB auskennst mit Polygonen ginge es so – ist aber ein wenig Koordinatensystem gefragt:

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

    In diesem Beispiel werden die Schrägen komplett anders erstellt. D.h auch die color-sections
    Aufbau: color-section – tab-section – color-section

    die Mittlere Tabsection bekommt eine ID und sieht zB so aus:

     #schraeg-links-rechts  {
    -webkit-clip-path: polygon( 0 10vw,100% 0,100% 100%, 0 calc(100% - 10vw) );
    clip-path: polygon( 0 10vw,100% 0,100% 100%, 0 calc(100% - 10vw) );
    margin-top: -10vw;
    padding: 6vw 0;
    background: #ededed; 
    }

    Der Tabkopf sollte dann die gleiche Farbe wie der Hintergrund sein !

    polygone : koordinaten fangen links oben an, und gehen im Uhrzeigersinn weiter und immer x y
    also Beispiel oben erster Punkt x=0 und y nach unten 0.1 screenweite etc.
    darf auch pixel sein. aber relativ funktioniert bei kleinen Bildschrimen dann besser.

    • This reply was modified 7 years, 8 months ago by Guenni007.
    in reply to: Color Section into Tab Section #904674

    naja und meine Frage war, ob es das ist was du haben willst: https://webers-testseite.de/reini77a/

    Bitte klicke mal auf das “i”

    in reply to: How to create more columns #904389

    these changes are to complicate?

    maybe you insert on your alb a grid-row 1/2 – 1/2 and put in 1/3 columns – so there are 6 columns side by side and than you only have to set the grid-row to non-fullwidth – see here:
    https://kriesi.at/support/topic/grid-row-not-fullsize-how-to/

    looks than this way: https://webers-testseite.de/30468-2/

    in reply to: Color Section into Tab Section #904380

    or is it this you like to obtain ?

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

    in reply to: Color Section into Tab Section #904368

    anhand deiner Seite sehe ich , daß ich wohl deutsch mit dir kommunizieren kann.

    Die Schrägen lassen sich ja über color-sections realisieren.
    jetzt möchtest du aber , dass die folgenden “Columns” wohl ganz die Breite ausfüllen? ähnlich der Tabsection oder?

    einfach zwei color-sections hintereinander und dann der zweiten color-section eine benutzerdefiniert Klasse geben.
    z.B : full-container
    hiermit wird dann dieser Container auf volle Weite gesetzt.

    .full-container .container {
        max-width: 100%;
        margin: 0 auto;
    }

    Beispiel : https://webers-testseite.de/reini77/

    ich habe die 1/3 columns nur mal farbig hinterlegt, damit du siehst, dass es dann auf volle Weite geht.

    so ists im Backend (draufklicken um es zu vergrößern)

    ______________

    Based on your page, I see that I can probably communicate German with you.

    The bevels can be realized via color-sections.
    but now you want, that the following “Columns” fill the full width? similar to the tab section?

    in reply to: Hn for slider #904276

    hm – more comfortable as my files – and update secure – you can’t find.

    these files comes to enfold-child/shortcodes upload them via ftp.

    insert into your functions.php of your child-theme:

    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    function avia_include_shortcode_template($paths){
      $template_url = get_stylesheet_directory();
          array_unshift($paths, $template_url.'/shortcodes/');
      return $paths;
    }

    to embed those files ( the original Files stay in enfold parent folder – but are now unused)

    Now see in the alb element – there is now a new array where you have the choice to set the h tag as you like !

    in reply to: How to make all H6 titles into a specific font? #904131
    in reply to: How to make all H6 titles into a specific font? #903940

    this on top is only an example – you have to know how the font-family name is in your @font-face rule !
    maybe it is called Reforma-grotesk – look to your embed code

    it will work but if you have a more specific rule with h6 and important than the rule is overwritten.

    https://css-tricks.com/specifics-on-css-specificity/#article-header-id-0

    in reply to: Hn for slider #903937
    in reply to: hn for IconList #903934

    i did this to have a setting field for icon-box and icon-list alb element. (sinse Enfold 4 – do not try it if you are using an older version)
    You can download those files here: Download
    The best way is to have those files in child-theme/shortcodes. folder
    and to include them by functions.php in your child-theme:

    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    function avia_include_shortcode_template($paths){
      $template_url = get_stylesheet_directory();
          array_unshift($paths, $template_url.'/shortcodes/');
      return $paths;
    }

    for the list i do not set the possibility to have h1 because there should be only one h1 each page!
    looks this way: https://postimg.org/gallery/144tcszl8/

    in reply to: Menu disappeares on mobile and tablet #903931

    is the question: Why my menu is disappeared on mobile and tablet version? and you want to have the normal menu on tablet. You can set up this splitting on Enfold / Main Menu / General – Mobile Setting
    Or is the question Why my menu is disappeared on mobile and tablet version.
    Many websites have instead of the normal menus a mobile version in the form of this hamburger symbol

    in reply to: Tabs have no style #903930

    well the normal tabs are simple containers for ( you can also insert in tab content shortcodes) content.
    the one on your other page (link) are tab-sections from layout-elements (https://kriesi.at/themes/enfold-2017/elements/tab-section/#layer-slider-plugin)
    these are capable to style by default. ( btw. it is in layout-element that tab-section because you can even drag f.e. 1/2 containers in it like in a color-section.

    in reply to: Disable Lightbox Modal just for photo carousel #903928

    hasn’t the horrizontal Gallery an option to deactivate the lightbox? (image linking). #
    – but because you say that you have two lightboxes there might be a conflict with another lightbox plugin you have installed.

    in reply to: Hide some of the default Blog elements #903925

    try with !important if this does not work without:

    #top.category .post-meta-infos {
        display: none;
    }
    in reply to: How to make all H6 titles into a specific font? #903920

    as an experienced member of this board you will have already tried the !important rule?
    h6 { font-family: "Reforma Bold" !important }

    the trouble is if there was a different rule with !important note – i don’t know how enfold declares f.e. a setting from advanced styling rules.
    so the the h6 rule only is too general – so if a more specific rule f.e. special-heading h3 exists with an important note the h3 only will not overwrite it.

    in reply to: 4.2.2. Out and Video Bug is Improved But Still There #903531

    i went back on some test installations of mine to Enfold 4.1.2 or 4.0.5 ( i got both on a duplicator archiv) the troubles come definitly from WordPress 4.9. They changed the mediaelement scripts and many more – the poor WP Bakery Page Builder User f.e. those things do not work. etc etc. pp.

    So we are still relatively well. I can live with selfuploaded video to youtube till the next WP Update will fix those bugs.

    in reply to: 4.2.2. Out and Video Bug is Improved But Still There #903288

    by the way – this is not only an enfold trouble – the i-net is full of that topic.
    It seems that all have this problem. So turn back to 4.12 Enfold does not solve the problem .
    With their over-the-top arrogance, Apple has decided to throw things over. A lot of wordpress themes ( joomla etc too) got this troubles.
    For performance reasons i’m testing now a lot of cdn free options and come to Cloudinary. Has a very good wordpress plugin and good free options. Even for bigger sites this is a good option. But now the point to this topic. They do transform videos for you. So you can realy adopt the video to the settings with good acceptance to Safari (mp4, H264, baseline pofile level 3). Even with this Safari does not start the video.
    But a little advantage Cloudinary places a fallback image which is displayed instead.

    I hope apple would come soon to a solution of this.

    So Apple and WordPress 4.9 ff is the trouble-maker.
    WP 4.8 everything is fine with Enfold 4.22 and Safari

    • This reply was modified 7 years, 8 months ago by Guenni007.
Viewing 30 posts - 8,971 through 9,000 (of 11,692 total)