Forum Replies Created

Viewing 30 posts - 7,171 through 7,200 (of 12,052 total)
  • Author
    Posts
  • in reply to: Falsche Übersetzung / wrong translation #1104204

    Unfortunately, this is simply about the German language. There is no superlative too current in analogy to only/unique.
    Either something is up to date or not. Something cannot be more than up to date.
    big – bigger – biggest that is ok. ;)

    by the way: translation on German “Du” – (not formal) is: “Blog – Beiträge”

    • This reply was modified 6 years, 11 months ago by Guenni007.
    in reply to: A question to a developer – … #1104038

    Sorry Ismael – answering late to your reply.

    I had some troubles with a nice page.

    • This reply was modified 6 years, 11 months ago by Guenni007.
    in reply to: Restoring Full-Width Submenu Elements #1103645

    i installed 4.5.7 and there are some changings on that alb element.
    So if you have a child-theme menu.php uploaded – this will come into conflict with the new settings.
    in that case it maybe enough to delete that file. ( Save it first on your desktop)

    in reply to: Search in German #1103574

    Solltest du Deutsch (Schweiz) aber benötigen; es gibt wege die Übersetzung die du benötigst dort selbst einzufügen.

    Edit : sehe gerade, dass diese Übersetzung im Deutsch Schweiz Fall jedoch vorhanden sind:
    click to enlarge

    Weiss also nicht warum es nicht auch mit der Spracheinstellung gehen sollte

    in reply to: adding an alt tag #1103484

    by the way : if you like to have on logo ( non transparency one) a title tag too – add one line for it above:

    function custom_logo_attriubtes(){
    ?>
    <script>
    (function($){
      $('.logo img').attr({ title:"custom_title", alt:"custom_alt" });
      $('.logo img.alternate').attr({ title:"transparent Logo", alt:"Alt Transparent" });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_logo_attriubtes');
    in reply to: adding an alt tag #1103468

    click to enlarge:
    https://i.postimg.cc/k5Mrc4pP/why.jpg

    in reply to: Search in German #1103433

    Edit : habe eben mal auf Deutsch Sie gestellt : auch da ist die Suchergebnis Seite auf Deutsch.

    in reply to: Search in German #1103432

    Hast du deine Seite denn sonst auf Deutsch laufen? Wenn ja – welches “Deutsch” hast du dort ausgewählt – ist ja wohl eine Sonderstellung der Sprache, dass wir “Du” oder “Sie” als Ansprache wählen können.
    Dort sind die Übersetzungen teilweise anders oder fehlen gar.

    • This reply was modified 6 years, 11 months ago by Guenni007.
    in reply to: adding an alt tag #1103260

    well that Logo is the alternate logo – set for transparency Option.
    You can add alt and title attribute by child-theme functions.php:

    function custom_alternate_logo_attriubtes(){
    ?>
    <script>
    (function($){
      $('.logo img.alternate').attr({ title:"Manchester Coach Hire Logo", alt:"Manchester Coach Hire" });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_alternate_logo_attriubtes');
    in reply to: Logo dissapeared in Chrome #1103059

    is there a link to the site you can make public?

    in reply to: Timeline feature doesn't work on iPad #1103033

    maybe we use that class on html (avia_mobile) to only loose that nice animation on ipad and not on small screens:

    @media only screen and (min-width:768px) and (max-width: 1024px) {
      .responsive.avia_mobile #top .avia-timeline-vertical .milestone_icon, 
      .responsive.avia_mobile #top .avia-timeline-vertical .av-milestone-indicator, 
      .responsive.avia_mobile #top .avia-timeline-vertical .av-milestone-icon-wrap:after {
        opacity: 1;
        transform: scale(1);
      }
    }
    in reply to: Verlinkte Spalten einen Linktext bzw. Title Tag geben #1102787

    I guess it is now implemented in Enfold 4.5.7 – thank you – this is a nice feature for SEO and Wai Aria points of view.

    Danke – kann geschlossen werden.

    in reply to: A question to a developer – … #1099161

    the script here from line 601: https://kriesi.at/support/topic/a-question-to-a-developer/#post-1098037 rules the positioning of the image.
    On most cases it is set to center the image ( on a min height option it happens that the width is bigger than the screenwidth).
    there are images with the thematic focus on the right side – so i try to position (similar to a background-image) the image on f.e. bottom right side.

    PS

    thanks

    by the way : standard default is h2 and h4 – so what version on enfold do you use?

    And : thanks to Günter for detailed Info about that new filter ( you only have to ask for it ;) )

    By the way the context is the alb element itself : open the alb element and look on top of each alb: there will be somenting like this:

    if ( ! class_exists( 'avia_sc_timeline' ) ) 
    {
        class avia_sc_timeline extends aviaShortcodeTemplate

    so context on this case is : avia_sc_timeline

    ps : if you like to change both : look for the extra args in alb element (search for that filter: avf_customize_heading_settings)
    f.e. in timeline.php a little above that filter there is the default setting defined like:

    $default_heading = 'h2';
    	$args = array(
    		'heading'		=> $default_heading,
    		'extra_class'	=> ''
    		);
    	$extra_args = array( $this, $atts, $content, 'date' );

    here the extra_arg is : date

    ____________ so changing both with different tags _________________

    function my_avf_customize_heading_settings( array $args, $context, array $extra_args = array() )
    {
    	if( 'avia_sc_timeline' == $context && is_array( $extra_args ) && in_array( 'date', $extra_args ) )
    	{
    		$args['heading'] = 'h1';						
    		$args['extra_class'] = 'my-timeline-class';		
    	}
    	if( 'avia_sc_timeline' == $context && is_array( $extra_args ) && in_array( 'title', $extra_args ) )
    	{
    		$args['heading'] = 'h3';						
    		$args['extra_class'] = 'my-timeline-class';		
    	}
    	return $args;
    }
    add_filter( 'avf_customize_heading_settings', 'my_avf_customize_heading_settings', 10, 3 );

    the code above changes all headings – with extra args you can be more specific

    you can use the new filter: avf_customize_heading_settings
    to set the heading tag on that. I do not know it it is possible to change for the years a different heading than for the heading on text.
    this comes to child-theme functions.php

    function my_avf_customize_heading_settings( array $args, $context, array $extra_args = array() ){
    	if( $context == 'avia_sc_timeline' ){
    		$args['heading'] = 'h1';						//	change heading from h3 to h1
    		$args['extra_class'] = 'my-timeline-class';		//	add an extra class for styling
    	}
      return $args;
    }
    add_filter( 'avf_customize_heading_settings', 'my_avf_customize_heading_settings', 10, 3 );

    you can even use p tag or something else

    you only have to give that costom class to the timeline alb element ( in this case: my-timeline-class)

    PS : alot of the alb elements got this filter now. so only a custom class and the selector is needed to change heading tag.

    in reply to: A question to a developer – … #1098046

    but before i get to deep into that – i will position it with quick css.
    my workaround is to know the calculated min-width on a setted min-height. (f.e. it is 950px)
    and than i put for a right positioning in quick css

    @media only screen and (max-width: 950px) {
    div.avia-slide-wrap img {
        left: calc(100vw - 950px) !important;
    }
    }

    maybe a developer knows a different child-theme handling of that.

    in reply to: A question to a developer – … #1098037

    Ok – i think i got it in slideshow.js with the function: _setCenter: function()

    Now i have to think of – how to influence this function.

    in reply to: how to change order on comment form #1097722

    thanks – that’s clear enough for me now.

    in reply to: how to change order on comment form #1097501

    how to use that if sequence should be comments, author, email, cookies

    in reply to: Verbindung nicht sicher trotz https Zertifikat. #1097486

    sind immer noch die Drei Grafiken:

    hattest du das Plugin benutzt? Hast du bei dem Lauf alle Tabellen ausgewählt, und dann auch das ganze in die Datenbank schreiben lassen?

    in reply to: Verbindung nicht sicher trotz https Zertifikat. #1097401

    Also bei mir werden immer noch die Bilder als http angezeigt.

    in reply to: Enfold: Download failed. Problem downloading theme #1097400

    As far as i understand – he fails to download even from themeforest. (Envato)
    But you are definitly logged in there?

    in reply to: Verbindung nicht sicher trotz https Zertifikat. #1097391

    Um sicher zu gehen, dass es nur Umstellungsgründe waren ! Schau mal in die wp-config.php ( Rootverzeichnis deiner Installation)
    Manch einer hinterlegt dort die Siteurl – ( selten aber ich hatte mal eine Installation von jemand anderem übernommen – da war es so.) Dann sucht man sich den Wolf , weil diese Einstellung die im Dashboard überschreiben.

    in reply to: Verbindung nicht sicher trotz https Zertifikat. #1097390

    Pfadi im Kanton müsst ihr dann auch noch umstellen oder?

    in reply to: Verbindung nicht sicher trotz https Zertifikat. #1097389

    ich würde das Plugin Search and Replace nehmen : https://de.wordpress.org/plugins/search-and-replace/

    hier :

    Das Tool macht im ersten Tab von deiner Datenbank zunächst ein Backup. – sicher ist sicher. – dann Tab3 :
    dort würde ich nach
    http://pfadi100 suchen lassen und durch https://pfadi100 ersetzen

    : Alle Tabellen und Save changes to database
    Der zweite Tab wäre bei der Umstellung das Mittel der Wahl gewesen.

    in reply to: Verbindung nicht sicher trotz https Zertifikat. #1097388

    Du hast sicherlich später die https Option aktiviert – oder?
    wie hast du da umgestellt? Nur im Dashboard – bei Allgemeine Einstellungen?

    Einige der Grafiken verweisen noch auf http links. (Symbol und Zelte)

    Schau mal in der Mediathek nach, ob da die https links schon sind. – Wenn ja wäre es eventuell dami getan, die Grafiken auf der Seite einfach neu zu laden.

    Am sichersten wäre einfach die gesamt Datenbank nach diesen Links zu durchsuchen, und diese durch die https pendents zu ersetzen.
    Da gibt es Plugins für.

Viewing 30 posts - 7,171 through 7,200 (of 12,052 total)