Forum Replies Created

Viewing 30 posts - 1 through 30 (of 11,341 total)
  • Author
    Posts
  • in reply to: Using custom loop-index.php template with ALB #1481374

    thanks Ismael – and in that condition :

    if( 'post' == $post->post_type )
    

    we now have to choose the cpt – if we only like to influence that post

    in reply to: Enfold full width logo in header #1481371

    It would be best if we could take a look at the site in question. If you can’t post the link, you’ll have to wait for the mods to look at it.
    Reason: Basically it depends on what your logo looks like and what header layout you have chosen.

    in reply to: Using custom loop-index.php template with ALB #1481315

    yes give more info about the filter and what it is meant for. And how to use it in the sense of “for a specific post”

    in reply to: hide product category tag #1481314

    try :

    #top .av-woo-purchase-button .product_meta {
      display: none;
    }

    auch keinen Datenbank Zugriff? phpMyAdmin ?

    in reply to: How to create simple 3 column table #1481232

    see here a working example: https://webers-testseite.de/mie2/
    these are three color-section ( with small padding )
    if you do not like to have it full-width just remove that rule:

    #top .avia-section.grid-layout .container {
      max-width: 100%;
      /*! padding: 0; */
    }

    for me the responsive alternative is nicer. you see how it works – the width of the columns is globaly set to : unset – so 1/3 is not working here – the grid-template-columns determines the width now.
    On that alternative responsive behaviour – we got two columns then – first with 1part (fraction) the second column with 2parts.
    As on former table layout we can make a “colspan” if we fill those grid-cells this way:

    grid-template-areas: 
          "feld2 feld1" 
          "feld3 feld3";

    it is like this on former table layout:

    <table>
    	<tbody>
    		<tr>
    			<td>feld2</td>
    			<td>feld1</td>
    		</tr>
    		<tr>
    			<td colspan="2">feld3</td>
    		</tr>
    	</tbody>
    </table>

    but now you can have a very flexible layout with responsive options
    PS: The advantage of a layout like this is that it can be styled with media queries. Try it with tables (this is a remnant from the old days)

    if you need to do it that way with background-images in columns: give a custom-class to those columns f.e. : with-bg-overlay
    and use the psuedo-container before for that:

    #top .flex_column.with-bg-overlay::before {
      content: "";
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.3);
      visibility: visible;
      z-index: -1;
    }

    see both variants again on: https://webers-testseite.de/adamad/
    PS there is a declaration with backdrop-filter – so you can blur the effect – but that is optional.

    PPS: see responsive behaviour on both cases !

    i would have made it with images inside the columns – and use the caption setting to have text over the image. In this case there will be an automatic overlay – – on image styling tab then you can set the options for that overly:

    in reply to: website crash after php update 8.1 #1481218

    What version they are updating from? 7.x ?
    My Enfold Installation run on most on php8.3 some are running allready 8.4.4

    see here an example page: https://webers-testseite.de/adamad/

    i use for it a color-section with custom class: slanted-background – let the content determine the height.
    this color-section contains the columns and is set with a svg-divider ( tilt ) – bring it back and maybe flip.

    the next color-section got the same color as the svg-divider

    then :

    #top .slanted-background .avia-divider-svg-tilt.avia-divider-svg-bottom,
    #top .slanted-background .avia-divider-svg-tilt.avia-divider-svg-bottom svg {
      height: 75% !important;
    }
    #top .slanted-background .flex_column img {
      box-shadow: 5px 5px 10px -3px #333;
    }

    You can use the height setting (here 75%) to determine the degree of incline.

    in reply to: Custom divider #1481015

    but isn’t it a simple section / section boundary – with shiftet content elements?
    see f.e.: the Church Demo: https://kriesi.at/themes/enfold-church/

    you see both color-sections – and the content of the second one is shifted with negative top margin.
    this can be done ( in this case the first column ) on row-settings – row margins:
    because the columns are set to equal height – the value of only -60px goes to flex_column_table – but you can use even relative values like -50%

    in reply to: Set logo bar to full width #1481014

    put your partner/logo element in a color-section ( do not insert another element to it )
    give a custom class to that color-section – f.e.: full-partners
    then place inside your quick css:

    .responsive #top #wrap_all .full-partners .container {
      width: 100%;
      max-width: 100%;
      padding: 0;
    }

    Thanks Ismael – that worked – except for av-framed-box
    maybe the other way round

    Edit: that worked – setting to framed layout on enfold options (General Layout) – and change for all otheres to stretched ( or boxed ) layout.

    add_action( 'template_redirect', function() {
        global $avia_config;
        if ( is_admin() ) {
            return;
        }
        if ( !is_page(2466) ) {
            $avia_config['box_class'] = 'stretched';
        } 
    });

    many thanks again – that is as usual via child-theme functions.php the best solution.
    See page 2466 : https://webers-testseite.de/impressum/

    • This reply was modified 1 week, 1 day ago by Guenni007.

    Not for me – I just opened a new thread because the old one was closed.

    I don’t think it’s such a common feature. That’s why I don’t think it’s necessary to include something here. There is this solution above, and whoever can install something like this will also remember to check for significant changes in the header during updates.

    if you know a different child-theme solution – that would be a good contribution.

    in reply to: preloader issues #1480877

    well – as far as i can see – this solution given to you is based too on changing things in header.php:

    https://kriesi.at/support/topic/preloader-on-2-pages-loading-issues/#post-1480524

    my recommendation is only to use not the parent header.php but a copy of header.php inside your child-theme root directory.
    by this – an update will not overwrite the changings.

    However, since header.php is one of those files that is often affected by changes to the Enfold site, you need to keep track of whether you need to repeat this procedure with a new copy.

    If you have received a functions.php child theme solution from Enfold, it would be nice if you would post it.
    you can see here a working example page of my impressum page on a test installation:
    https://clean.webers-testseite.de/impressum/
    All other pages do not have a preloader.

    in reply to: preloader issues #1480860

    on header.php the original line is:

    $preloader = avia_get_option( 'preloader' ) == 'preloader' ? 'av-preloader-active av-preloader-enabled' : 'av-preloader-disabled';
    

    did you removed ( or commented out ) that line – and replaced it ?

    try :

    if (is_page(array(1147,945))) { 
    	$preloader = 'av-preloader-active av-preloader-enabled';
    } else {
    	$preloader = 'av-preloader-disabled';
    }

    PS – it is just a different way to write the array – you can use yours aswell.

    But: maybe it is better to have that option in enfold activated globaly – to have the oportunity to style it – and then remove that setting on all other pages then your array is set to if not logic.

    if (!is_page(array(1147,945) )){ 
    	$preloader = 'av-preloader-disabled';
    } else {
    	$preloader = 'av-preloader-active av-preloader-enabled';
    }
    in reply to: font size – depending from posttype #1480651

    you have on those post-types different classes on body tag ( or #top).
    so you can differ by :
    #top.page
    #top.single-portfolio
    #top.single-post

    so try:

    .responsive #top.page  {
      font-size: 13px !important;
    }
    .responsive #top.single-post {
      font-size: 16px !important;
    }
    .responsive #top.single-portfolio  {
      font-size: 19px !important;
    }
    in reply to: Uploaded google font doesn’t work on iPhone/iPad #1480646

    ja die Schriften werden jetzt auch über https geladen. Eventuell ziert sich Safari mit mixed-content besonders.

    in reply to: Uploaded google font doesn’t work on iPhone/iPad #1480637

    ich sehe du hast die Enfold Option des Merging bei css und js eingestellt. Hast du das mal neu generieren lassen?
    Unter Performance – ganz unten.

    Im Übrigen wird deine Seite in meinem Desktop Safari auch nicht mit der Schrift dargestellt.

    in reply to: Uploaded google font doesn’t work on iPhone/iPad #1480634

    eventuell liegt es am mixed-content. Denn deine schriften werden über http geladen.

    Deshalb gehe mal in die Media Library – Listenansicht : im Suchenfeld mal zip eingeben.
    jetzt alle Vorkommen von dieser Schrift löschen.
    Dann zum Font-Manage gehen und dort auch die Schrift nochmal löschen.
    jetzt mein Schrift zip mal hochladen.

    Mal sehen ob es was bringt.
    PS : auf meiner Seite habe ich das jetzt wieder auf Roboto gestellt.

    in reply to: Uploaded google font doesn’t work on iPhone/iPad #1480633

    bitte lies den vorherigen Text von mir – den habe ich bearbeitet.
    https://enfold.webers-webdesign.de/

    PS; warum css code setzen?

    Definiere doch einfach über die Enfold Optionen unter Allgemeines Styling – Schriften deine Headings mit dem Font.
    PS: der font-family name wird dir im Übrigen im Font-Manager angezeigt:

    in reply to: Uploaded google font doesn’t work on iPhone/iPad #1480631

    Es muss was anderes bei dir sein, da der Font so wie ich ihn anbot ohne Probleme auf meinem iPhone angezeigt wird.
    Bitte lade mal meinen Font hoch stattdessen. Ich sehe immernoch deinen Font _ der im Übrigen via http geladen wird.

    in reply to: Uploaded google font doesn’t work on iPhone/iPad #1480627

    kannst Du mal stattdessen dieses zip nutzen. Lösche deinen hochgeladenen font und entferne im Font-Manager den font. Ich habe da auch die woff2 fonts integriert. Eventuell kommen die mobilen Endgeräte damit besser zurecht.:

    https://webers-testseite.de/Gloria-Hallelujah.zip

    in reply to: one-fourth columns 2 up on mobile #1480621

    see section on top : https://webers-testseite.de/flexed/
    ( the other way is for more komplex styling – thats gridlayout )

    So why not follow the recommendation and use custom.css instead?

    in reply to: Add logo to Full Screen Slider #1480577

    The problem, of course, is that the height of a responsive background will always be smaller on a mobile phone. So unless you want to reduce the size of the logo by the same amount, “nailing” the logo to a specific position will not work. I have already tried to achieve this by using values relative to the screen width.

    test this :

    #top .html5-video .overlay {
      position: absolute;
      width: 25vw !important;
      height: 21.25vw;
      min-width: 140px;
      min-height: 119px;
      max-width: 411px;
      max-height: 349px;
      padding:15px;
      top: 80px;
      left: 50px;
    }
    @media only screen and (max-width:767px) {
      #top .html5-video .overlay {
        top: 20px
      }
    }
    in reply to: Add logo to Full Screen Slider #1480575

    just remove those

      border-radius:20px;
      background-color:rgba(0,0,0,0.1);
      backdrop-filter:blur(6px)

    so it is only for that selector:

    #top .html5-video .overlay {
      position:absolute;
      width:25vw !important;
      height:21.25vw;
      min-width:140px;
      min-height:119px;
      max-width:411px;
      max-height:349px;
      top:12vw;
      left:8vw;
      padding:15px;
    }

    Next – on dashboard – themes : how many enfold installations you see there?
    there had to be only the enfold child – and the enfold theme ( and not so important the standard wordpress themes)

Viewing 30 posts - 1 through 30 (of 11,341 total)