Forum Replies Created

Viewing 30 posts - 3,331 through 3,360 (of 11,922 total)
  • Author
    Posts
  • in reply to: How to upload icons #1360659

    are your svg’s monochrome black?
    then go to fontello.com – and drag&drop the svg’s to the input field on top of that page.
    give a name to your set and download the zip from there. this zip upload to enfold.

    if fontello got some error warnings – f.e. on compound path – this little detour can help: https://kriesi.at/support/topic/custom-icons-showing-blank/#post-1357932

    if not ( multicolor svg’s) we had to find a different solution.

    in reply to: Change H3 in footer to regular text #1360657

    but on your page – i do not see the new css code ?

    in reply to: change layout search results #1360652

    the only thing i would change is the check – if there is a post thumbnail:

    so change ismaels code by surrounding it with an if clause:

    $searchthumb = get_the_post_thumbnail( $the_id, 'large' );
    if( ! empty( $searchthumb ) ) {
    	echo "<span class='search-result-counter {$counterclass}'>{$searchthumb}</span>";
    }

    _____________________________________________________________________________________________

    i prefer to have the link on the image too and use square images : so i insert on that area instead:

    $searchthumb = get_the_post_thumbnail( $the_id, 'square' );
    if( ! empty( $searchthumb ) ) {
    	echo "<a class='slide-image search_image' href='".get_permalink()."'><span class='search-result-image'>{$searchthumb}</span></a>";
    }

    my solution needs this in quick css:

    .search-result-image {
        display: block;
    }
    .search-result-image img {
        width: 120px;
        border: 1px solid #aaa
    }
    a.slide-image.search_image {
      overflow: visible !important;
    }
    a.search_image .image-overlay.overlay-type-extern {
      left: 0 !important
    }
    

    see what it looks like on: https://webers-testseite.de/?s=portfolio

    in reply to: Page title missing on pages #1360576

    I don’t know why the breadcrumb feature that only shows the title is not practical for you – you can make it whatever you want – and for the pages that have a Transparent Header, you manually set the Title via shortcode to your first element in main.

    in reply to: Shortcode in Hook breaks code #1360555

    i do not know if the get_field function is as it should. the rest of the code is ok i think

    in reply to: Two images side by side in a text box? #1360553

    give a custom-class to your text-block element – f.e.: img-side-by-side
    insert your images via add media – set for both images float left – or center or right – make one return and insert your text.

    .avia_textblock.img-side-by-side p  {
      display: flex;
    }

    see details on: https://enfold.webers-webdesign.de/magoo/

    in reply to: Page title missing on pages #1360528

    do you like to insert it manually with a shortcode?
    this to child-theme functions.php :

    function insert_page_title_shortcode() {
      $page_title = "<h1 class='main-title'>". get_the_title() ."</h1>";
      return $page_title;
    }
    add_shortcode( 'page_title', 'insert_page_title_shortcode' );

    and use as : [page_title]
    change h1 to whatever you like.

    for the automatic insertion we have to know where it should be placed.
    There will be jQuery methods or using some hooks – or you can edit the page templates and have child-theme versions of them
    There is a problem with pages that then needs to be solved: how to deal with transparent headers – how to deal with fixed header etc. pp

    in reply to: Animate Team Member Content Element Image #1360436

    is there a page where i can see the issue?
    Please remember that I am a participant like you – so I don’t see a private content area.

    in reply to: Animate Team Member Content Element Image #1360423

    the last one is easier to get –

    avia_appear (a bit less fast than on testimonial)
    f.e. only for the image:

    .team-img-container img {
        -webkit-animation:  avia_appear 0.8s 1 cubic-bezier(0.175,0.885,0.320,1.275);
        animation:  avia_appear 0.8s 1 cubic-bezier(0.175,0.885,0.320,1.275);
    }

    the first has more settings – there is a keyframe animation – but on addition some other settings. i will have a look on that

    in reply to: pop-up jumps to the top of the page on mobile #1360418

    by the way: wouldn’t it be the best to have this no-scroll option as default value?
    From my point of view, jumping to the top position has no reasonable justification.

    Does that new filter : avf_default_lightbox_no_scroll work like this too!
    add_filter( 'avf_default_lightbox_no_scroll', '__return_true' );

    i do insert that to my child theme functions.php to have no scroll on both – the lighbox itself and the background.

    in reply to: Animate Team Member Content Element Image #1360371

    and that sample page has no url ?
    there are a lot of demos : https://kriesi.at/themes/enfold-overview/
    And inside every demo page there are a lot of suppages …

    in reply to: Special Heading Remove H tag #1360369

    But you don’t need to drag&drop a heading to the layout – just place a text-block instead. And center the text of that text-block .

    in reply to: Animate Team Member Content Element Image #1360304

    What do you like to do? When should animation start – on load, on hover etc. What kind of animation? …

    you can use f.e.: some of the predefined keyframe animations on enfold :
    https://kriesi.at/documentation/enfold/animation/#customizing-animation-for-alb-elements
    animate the whole container and image too

    .avia-team-member {
        -webkit-animation: avia-btt 0.7s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275)!important; 
        animation:  avia-btt 0.7s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275)!important; 
    }
    
    .team-img-container img {
        -webkit-animation:  avia-fadein 3s 1 linear  !important ; 
        animation:  avia-fadein  3s 1 linear  !important; 
    }
    in reply to: Special Heading Remove H tag #1360302

    there is a qrcode you can scan ;)

    This idea is not advisable for SEO reasons. If it’s just about the sizes, font thicknesses, font transformations, etc., then you can change that via css, or various Enfold option settings.

    in reply to: Change H3 in footer to regular text #1360300

    Yes – the rule that manages the font size is set to !important – so the rule can’t override that unless you do the same – then the higher specificity decides:

    #footer .widget p.widgettitle {
      font-size: 30px !important;
      font-weight: 500;
      line-height: 33px;
    }
    in reply to: Change lightbox image size for Slideshow #1360116

    try this :

    function change_lightbox_size() {
        return "full";
    }
    add_filter('avf_avia_builder_helper_lightbox_size','change_lightbox_size', 10);
    in reply to: rgb color value is not recognized #1360104

    It is difficult to give advice only from screenshots. As a semi-transparent color definition, there may be several reasons for the differences.

    in reply to: image over image effect options #1359990

    I would indeed do it like Mike, with one exception – I would use Enfolds columns and use the Column link right away. Since the icon box is inside the column, we have the same construct as on your example page. I would assign a custom class to the column and save the whole thing as a template (e.g. icon-box-column).
    If you then need this special iconbox, you can always use it via template – and only make the adjustments then ( icon, column color ).

    for the quick css entries and example page look: https://enfold.webers-webdesign.de/iconbox/

    If you do not find nice icons on entypo-fontello iconset – use your own by uploading to fontello.com

    PPS: my solution is easier to get – because it is only css and the rest will be done by Enfold alb options ;)
    see example-page

    in reply to: Change H3 in footer to regular text #1359508

    There are many places where the heading tag is predefined as h3 in the source code of enfold.
    Editing all those entries and have a child-theme file is too complex.
    The filter : avia_custom_widget_args will not work on those headings you like to influence.

    – you can try this here from Yigit : https://kriesi.at/support/topic/change-h3-tags-in-footer-widget-child-theme-of-enfold/#post-728320
    and pay attention of his comment:

    You would need to update your widget areas.

    In Shortform this will be ( and comes to child-theme functions.php ) :

    function ava_re_register_footer_widgets(){
    	$footer_columns = avia_get_option( 'footer_columns', '5' );
    	for( $i = 1; $i <= $footer_columns; $i++ ){	
    		unregister_sidebar('av_footer_' . $i );
    		register_sidebar( array(
    			'name'		=> 'Footer - Column ' . $i,
    			'before_widget'	=> '<section id="%1$s" class="widget clearfix %2$s">',
    			'after_widget'	=> '<span class="seperator extralight-border"></span></section>',
    			'before_title'	=> '<p class="widgettitle">',
    			'after_title'	=> '</p>',
    			'id'		=> 'av_footer_' . $i
    		) );
    	}
    }
    add_action( 'widgets_init', 'ava_re_register_footer_widgets', 11 );

    the settings you mentioned had to be set via quick css

    #footer p.widgettitle {
    	font-size: 30px; 
    	font-weight: 500; 
    	line-height: 33px;
    }

    (For SEO reasons, this will probably be the better method. )

    maybe offtopic – but on ajax search input field – i hampered the return key by this – so that you can not go to search results page by pressing return key.

    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');

    keyCode for Space is 32 – I don’t know if it is possible that a keyCode == 32 is accidentally suppressed on your installation.

    in reply to: Image caption button lightbox #1358974

    Nicht dafür.
    PS : ich konnte auch nur die Seite sehen, weil im Screenshot oben die Domain zu sehen war.

    in reply to: Image caption button lightbox #1358965

    Ach komm schon vorhin war im DOM nix zu sehen – Da war der Container leer! ;)
    Wie auch immer wenn du jetzt zu deinem Verschieben auch noch das overflow richtig setzt siehst du auch unterhalb das Caption:
    _____________
    Oh, come on, there was nothing to see in the DOM earlier – the container was empty! ;)
    However, if you now also set the overflow correctly to your move, you will also see the caption below:

    #top .avia-image-overlay-wrap a.avia_image {
      overflow: visible;
    }

    PS: du lädst viele Bilder über http – daher auch kein Schutzzeichen oben in der URL.
    Schau mal woran das liegen könnte. Wenn garnichts hilft, installiere Search und Replace
    Da kannst du die Datenbank durchsuchen und Zeichenfolgen ersetzten also zB
    suchen: http://domain.touch
    ersetzen: https://domain.touch
    achte aber darauf, dass sich bis auf das http – https nichts in den Feldern unterscheidet auch keine leerzeichen oder Striche etc. pp

    in reply to: Image caption button lightbox #1358919

    And you realy inserted to the caption input field some text? There is no reason why the other images have that – and the one not.

    in reply to: Design transition from slide show to color selection? #1358883

    Developer Tools des Browsers öffnen – zu dem svg navigieren – rechte Maustaste – äußeres html kopieren:

    and: https://kriesi.at/documentation/enfold/columns/#adding-custom-svg-dividers

    Meine Empfehlung nun – hochladen der custom svg files in einen uploads unterordner: avia_custom_shapes
    für die Option “has flip” benötigst du dann allerdings zwei files – wobei die Nomenklatur dann des Flip Files festliegt ( hat als addendum : -negative )
    (transparenz und Füllung wechseln hier )

    in reply to: Footer is showing testlinks #1358881

    I’m afraid you’ll have to reset the footer widgets.
    They will have been reset to the default values.

    in reply to: Hovering (Mouse Over) Captions #1358878

    temp remove of the title tag on hovering – put this to your child-theme functions.php:

    function temporary_removal_title_tags(){
    ?>
    <script>
      window.onload = function() {
          var links = document.querySelectorAll('a, img, *[title]');
          for (var i = 0; i < links.length; i++) {
              var link = links[i];
              link.onmouseover = function() {
                  this.setAttribute("data-tooltip", this.title);
                  this.title = "";
              };
              link.onmouseout = function() {
                  this.title = this.getAttribute("data-tooltip");
              };
              link.onmousedown = function() {
                  this.title = this.getAttribute("data-tooltip");
              };
          }
      };
    </script>
    <?php
    }
    add_action('wp_footer', 'temporary_removal_title_tags');

    well one thing is that on touch devices ( mobile phones ) there is no hover effect.
    you can do this to show it always on the touch device case:

    .avia_mobile #top .av-active-gal-item .av-horizontal-gallery-link {
       opacity: 1 !important;
    }

    or use that class instead touch-device

    but that one thing you mentioned i could not reproduce : that there is only a half lightbox button.
    Next: on my simulated mobile devices – your gallery do that what you like to have – it opens directly the lightbox on click.

    Edit:
    aha – i know now why – you make the button a 100% width and height.

    in reply to: Custom location breadcrumb #1358808

    Well – a manual way to do it is to use the shortcode for the breadcrumb trail:
    place this to your child-theme functions.php :

    and use whereever you like to place that as : [av_breadcrumbs]

    in reply to: Design transition from slide show to color selection? #1358757

    Das sind custom made svgs. Schau dir die svgs von Enfold mal mit einem Guten Texteditor an ( OSX: Sublime Text oder Windows: notepad++ )
    Der Aufbau ist recht ähnlich – ein wenig was über svgs sollte man wissen.

    PS : das svg liegt ja im DOM als inline svg file explizit vor. Niemand hindert dich das svg aus dem DOM herauszukopieren ;)
    Anleitungen wie man custom svgs einbindet gibt es nicht nur von mir hier an Board genüge :)

    PPS: was überigens bei den meisten svg dividern der Fall ist – so auch bei Elementor und Konsorten.

    schau mal die Stadt-Silhouette: https://guenterweber.com/#footer

    in reply to: Design transition from slide show to color selection? #1358679

    wenn du in der gleichen color-section für den unteren divider dann z.B.: als Divider color wählst: #cf1b15 dann ist auch dort der Übergang harmonisch.

Viewing 30 posts - 3,331 through 3,360 (of 11,922 total)