Forum Replies Created

Viewing 30 posts - 361 through 390 (of 11,046 total)
  • Author
    Posts
  • in reply to: Custom Slider Element only lets you upload one photo. #1468541

    When creating a custom element, the aim is to make settings for this element in advance and, if necessary, to block them directly for non-admins (possibly) editors (depending on your pre-selection see screenshot).

    Ultimately, the aim is to define as many settings as possible in advance so that an author no longer has access to many of these settings (headings tag, position of the heading, captions etc., background-colors etc. . The image that you enter on creation of the custom slider is only used to set default settings for this slider. You can here hamper for example that the author got the possibility to insert videos to the slide.

    Once your custom element has been created and is ready to be inserted into the layout, authors can insert as many images as they like using the predefined default settings.
    And only the nonblocked Settings are editable.

    btw:

    in reply to: Rename a child theme? #1468507

    The child theme name does not appear in the frontend. So why rename the child theme?
    Just to obfuscate the Enfold origin – this involves much more than just changing the name.

    By the way – it is a good idea – to have a backup on this. And perhaps if you rename child and parent theme to save your theme settings file and maybe the quick css.

    As long as you do not change the reference in the style.css of the child theme to the parent element, you can rename it as you wish.
    Enfold even offers you the option of renaming the stylesheet of the Theme using a filter.
    but read here carefully on the docu: https://kriesi.at/documentation/enfold/personalize-theme/

    function avia_change_filename($stylesheet){
    return 'myfilename';
    }
    add_filter('avf_dynamic_stylesheet_filename', 'avia_change_filename');

    by the way dear dev/mods: on docu this snippet is listet with myfilename.css – this will lead to myfilename.css.css – so above only the name is neccessary – the css extension is added to the filename by default.

    I must say, however, that those who are able to examine such things more closely will always recognise the basis of the theme.

    in reply to: 2 or more columns on a row #1468506

    non c’è di che

    in reply to: 2 or more columns on a row #1468489

    if you want it 5 columns on desktop and on mobile always 2 column:

    #top .settore-attivita .entry-content-wrapper {
      display: flex;
      flex-flow: row wrap;
      justify-content: space-between;
    }
    
    #top .settore-attivita .entry-content-wrapper:before,
    #top .settore-attivita .entry-content-wrapper:after {
      display: none !important;
    }
    
    #top .settore-attivita .entry-content-wrapper .flex_column {
      flex: 0 1 19%;
      width: unset !important;
      margin: 0px;
    }
    
    @media only screen and (max-width: 767px) {
      #top .settore-attivita .entry-content-wrapper .flex_column {
        flex: 0 1 48%;
      }
    }
    }

    you see how it works ?

    in reply to: 2 or more columns on a row #1468487

    Thanks but I did exactly as you told me:

    no you did not !

    look to the layout image again – the color-section with your columns should have the custom-class : settore-attivita
    you gave to it an ID : settore-attivita

    An ID is not a class

    Why i choose for it a class:
    An ID had to be unique on the page.
    If you like to use it on that page again for a different section – you can use that class again. An ID not

    • This reply was modified 2 months, 2 weeks ago by Guenni007.
    in reply to: 2 or more columns on a row #1468484

    look to the layout image again – the color-section with your columns should have the custom-class : settore-attivita
    you gave to it an ID : settore-attivita

    If you like to have only 2 columns beside – even on mobile phone just get rid of last media query rules:

    @media only screen and (max-width: 549px) {
      #top .settore-attivita .entry-content-wrapper .flex_column {
        flex: 1 1 100%;
      }
    }
    in reply to: Whole block clickable – Portfolio Grid #1468461

    because i do not see private content – i guess your page is like this:
    https://kriesi.at/themes/enfold-2017/blog/blog-default/ – and you like to have the link for the whole (Image, heading, excerpt and read-more)
    if you like to have it more specific – use custom classes or page-id’s

    this snippet transfers the first link that could be found in the articel to the slide-entry:

    function transfer_first_link_as_link_to_article(){
    ?>
    <script type="text/javascript">
    window.addEventListener("DOMContentLoaded", function () { 
      (function($) {
          $('.slide-entry').each( function() {
            var LinkSection = $(this).find('a:first').attr('href');
            var LinkTarget = $(this).find('a:first').attr('target');
            if (typeof LinkSection !== "undefined"){
              $(this).on("click", function(){
                if (LinkTarget === "_blank"){
                  window.open(LinkSection, '_blank'); 
                } else {
                  window.location.href = LinkSection;
                };
              });
              $(this).css('cursor','pointer');
            };
          });
      })(jQuery);
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'transfer_first_link_as_link_to_article');
    in reply to: 2 or more columns on a row #1468458

    If you have looked at my suggestion, I will remove your pictures.
    the ID is only for a anchor navigation if you like

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

    in reply to: Abmahnung wegen Bildrechtverstoß? #1468451

    OK – that sounds good. Thanks for the clarification. And does this also apply to all other images? And if necessary – if we receive such a warning – could we also provide this evidence through you?

    in reply to: 2 or more columns on a row #1468446

    can you please exclude the text-block with the heading to an extra section before that section with all those “Settori”
    by the way – why don’t you use for a heading a heading element instead of putting the heading inside a text-block element?

    after that – we can handle the whole container as a flex container
    no need for a second color-section handling the other layouts for responsive design.

    in reply to: Can you have a fullwidth menu bar with boxed layout #1468441

    This is just a boxed layout with fixed header.
    The header could be stretched to full width ( fixed positioned elements are on default out of the box ):

    .html_header_top.html_header_sticky #header {
      position: fixed;
      width: 100% !important;
      max-width: 100% !important;
      left: 0;
      background-color: #FFF !important;
    }

    see: https://enfold.webers-webdesign.de/

    in reply to: Enfold back end not working in safari on Sequoia #1468431

    i got no troubles on classic editor – only if i switch to advanced layout editor – i had these glitch

    but indeed the clearing option is much better. so use instead:

    function admin_head_mod() {
    echo '<style type="text/css">
    	#postbox-container-2 { clear: left; }
    	.index-php #postbox-container-2 { clear: none; }
    </style>';
    }
    add_action('admin_head', 'admin_head_mod');
    in reply to: change caption mouse over color #1468419

    aber du beziehst dich nicht auf die bei hover gezeigten Titel wie hier: https://kriesi.at/themes/enfold-2017/elements/masonry/

    in reply to: Add featured image thumbnail to search results #1468415

    well it is in the enfold folder : includes.
    If you make a subfolder to your child-themes folder : includes and put the edited loop-search.php inside that folder the search results page will show featured images.
    here is on basis of enfold 6.0.4 the edited file:
    see: https://pastebin.com/3nAyB6Gr
    Changes are made on line 50ff . I inserted some classes to better select them and put the link on the image too.
    download: https://pastebin.com/dl/3nAyB6Gr

    a little css is needed

    .search-result-image {
        display: block;
    }
    .search-result-image img {
        width: 120px;
        border: 1px solid #aaa
    }
    .search-result-image svg {
      width: 120px !important;
      height: auto;
    }
    .search-result-image img {
        width: 120px;
    }
    .search-result-image {
        float: left;
        margin-bottom: 20px;
        padding-right: 30px;
    }
    

    PS: on line 52 you can see that i took the medium image format as source (and not the thumbnail image) – you can change that to anything you like – but medium got one advantage – it is a non cropped image format.

    see: https://webers-testseite.de/?s=web

    in reply to: Create custom post type #1468406

    Well in the end the portfolio is a custom post type too.
    So you can have a look how enfold handles this posttype: first look goes to single-portfolio.php
    in the middle of that file there is arround line 42 : get_template_part so next file to look for could be : loop-portfolio-single.php

    now there are a lot of files where this new cpt should be inserted – first functions.php to load that new cpt via require_once a register php had to be there.
    then … etc. etc. a lot of work – if you want to do it the right way.

    Aren’t there a lot of Plugins generating CPT’s with a nice UI ?
    https://crocoblock.com/blog/wordpress-custom-post-type-examples-and-plugins/

    And that is exactly what the NY Page shows – the top video fades out the video in the middle of the page fades in.
    See the top video solution on : https://webers-testseite.de/snowfall4/

    in reply to: error strong tag #1468360

    well on your page (nicolealbaek.dk) there is set that h1 always is bold (strong)

    @media only screen and (min-width: 780px) {
      #top #wrap_all .all_colors h1 {
        color: #2d2d2d;
        font-size: 32px;
        font-family: 'oswald',Helvetica,Arial,sans-serif;
        font-weight: bold;
      }
    }

    That is the reason why there is no difference between the heading and the dot!
    next: the color of the strong tag could be different to red – depends on your color settings.

    it seem that you have different settings on the other domain (equusbalance.dk)
    you set on the other domain a color of: #c49570
    try on nicolealbaek.dk if you like to have on all strong tags inside a h1 tag:

    #top .all_colors h1 strong {
      color: #F00 !important;
    }

    by the way – This is only an advisory note (warning in red) and can be neglected if everything is done correctly.

    in reply to: error strong tag #1468358

    Rikard already said it : in your example – there is the closing strong tag correct with an /
    The slash indicates that the tag is closed – on top you only have opening strong tags !

    
    Podcast: Afhængige Parforhold<strong>.</strong>
    

    PS: only a few tag seems not to have a closing tag – but if you look nearer f.e. to an img tag the opening tag ends with />
    hr and br tags need no closing tag ( although old fashioned guys like me write: <br />)

    in reply to: Hide banner image from categories and subcategories. #1468335

    Answers can only be as good as the questions are precise.
    I don’t think your description of what you want to achieve is clear either. On the one hand you say that the banners should be hidden, but on the other hand you want better resolutions or different aspect ratios.

    Unfortunately I can’t see an example page (As a participant as you are, i do not see private content area ). So I assume you are looking for a better source for the banner images? An image with a better resolution or aspect ratio.

    in reply to: How to change the mouse over text of the logo? #1468309

    you can try in child-theme functions.php:

    function custom_avf_avia_logo_link_title( $link_title ){
    return 'title="Homepage"';
    return $link_title;
    }
    add_filter( 'avf_avia_logo_link_title', 'custom_avf_avia_logo_link_title', 10, 1 );
    in reply to: Parallax column effect reverse #1468297

    under Advanced Tab you got Position – try first relative and the set negative Values – even % or vw will work.
    using absolute: – think of that a floating container to the right will shift to the left side then.
    f.e. two 1/2 columns

    in reply to: Bug: No option for background video to loop #1468293

    I just wanted to use it as a crutch.
    They encode all the movies to their specifications. That way you can be sure that they will run smoothly on as many platforms as possible. Then you can download the result and use it as a self-hosted video.

    in reply to: Bug: No option for background video to loop #1468290

    may i post it in my text page to show you that it runs. However, the cut is not well placed to show a seamless transition
    if you got youtube or vimeo account – upload – let them do their job and download that resulted Video. ;) for selfhosting

    try more fps – all videos i tested were 29,9fps or 30fps

    in reply to: Bug: No option for background video to loop #1468285

    i can not say something about the video – i think it was a pixabay share.
    but if you like to send me a link of your video i test it in my environment.
    you find contact info under my nick

    on my mac – IINA shows : h264, 1288×720 with 29,97fps

    in reply to: Bug: No option for background video to loop #1468280

    i tested it with a selfhosted video (mp4) : WP 6.6.2 and Enfold 6.0.4
    looked at firefox (developer), Chrome and Safari
    https://webers-testseite.de/selfhosted-video/
    on top: fullwidth easy slider.
    below – easy-slider
    ( did you check on styling tab of the slide popup the loop check-mark?)

    in reply to: Enfold back end not working in safari on Sequoia #1468278

    and if you want to bring the containers below the title to the same top position:

    function admin_head_mod() {
    echo '<style type="text/css">
      .avia-advanced-editor-enabled #post-body-content { float: none; }
      .avia-advanced-editor-enabled #normal-sortables .postbox#avia_builder:first-child { margin-top: 0; }
    </style>';
    }
    add_action('admin_head', 'admin_head_mod');

    dear dev : it concerns to class avia-advanced-editor-enabled
    why the other browser can manage that – i do not know – i look now inside avia-builder.css – maybe there is something missing.

    because I don’t use the Gutenberg stuff – someone else will have to check if it needs fixing there too.

    in reply to: Enfold back end not working in safari on Sequoia #1468273

    what exactly does not work.
    i tested it under Sequoia and Safari Version 18.0 (20619.1.26.31.6) – and on my Enfold everything seems to work!

    btw: Have you installed on your browsers some extra password manager addons?

    Edit: ok i now tested to make a new page – and thats what you mean. …

    all admin boxes are present but safari does not float correctly:
    you can put this as interims solution to your child-theme functions.php:

    function admin_head_mod() {
    echo '<style type="text/css">
      #post-body-content { float: none; }
    </style>';
    }
    add_action('admin_head', 'admin_head_mod');

    that css entry does not work via quick css – it had to be inserted that way.

    in reply to: 4 Spalten nebeneinander in mobiler Ansicht #1468212

    With the nickname, it’s not too hard to find your site. And when I see container that small (1010px), I know it’s not intentional. So there must be a rule in your ruleset that is not set correctly.

    That css rule is not closed by a curly bracket.

    Insert after the semicolon a curly bracket!

    .gform_wrapper.gravity-theme .gf_progressbar_percentage.percentbar_orange {
    	background-color:var(--enfold-main-color-primary);
    

    don’t know if an @import rule works well over quick css – but is unusual.

    if your question does not concern your own website – then I am sorry, but it should be changed anyway.

    PS: csslint.net shows a parsing error at the pseudo-class: is
    but from my point of view that is correct.

    in reply to: There is a ? on the Home Page under a photo #1468120

    dear mods – can you please shift that post to the closed one and open again – i think i’m on a better way to do that.

    in reply to: There is a ? on the Home Page under a photo #1468119

    sadly the topic is closed: . https://kriesi.at/support/topic/search-function-with-link-list/

    what i got so far:
    https://enfold.webers-webdesign.de/pages

    this is only for pages ( if you like to have that for posts – just change the post-type )
    i managed it by a custom shortcode – then place this as : [glossary] on your page

    function az_index($post_id) {
        $AZposts = get_posts(array(
            'numberposts'       => -1,
            'post_type'         => 'page',
            'orderby'           => 'title',
            'order'             => 'ASC',
            // 'category'           => $cat
        ));
    
        $current = "";
        $nav = "";
        $postlist = "";
        foreach($AZposts as $AZpost) {
            $postLink = get_permalink( $AZpost->ID );
            $firstletter = strtoupper(substr($AZpost->post_title,0,1));
            if($firstletter != $current) {
                $nav .= "<span class='firstletters'><a href='#$firstletter'> $firstletter </a></span> ";
                $postlist .= "<h3 class='firstletter' id='$firstletter'> $firstletter </h3>\n";
                $current = $firstletter;
            }
            $postlist .= "<span><a class='postlink' href='".$postLink ."'>" . $AZpost->post_title.  "</a></span><br>\n";
        }
    
        print $nav . "<br><br>" . $postlist;
    }
    add_shortcode( 'glossary', 'az_index' );

    and :

    .firstletters {
      padding: 0 10px ;
      background: #900;
      margin-right: 5px;
      display: inline-block;
    }
    
    .firstletters a {
      color: #FFF;
      text-align: center !important;
    }

    i tried to have unordered list after the h3 headings – but i couldn’t find a way to do that ( loop is hard to find the place to insert that tags ) – maybe a mod got a good idea

Viewing 30 posts - 361 through 390 (of 11,046 total)