Forum Replies Created

Viewing 17 posts - 1 through 17 (of 17 total)
  • Author
    Posts
  • in reply to: Masonry Gallery Image Size to small #1138152

    Correction: 1920×950 ist the uploaded size

    in reply to: Masonry Gallery Image Size to small #1138151

    Hi,
    by exsample use the Page https://tuning-wheels-exhaust.com/aston-martin-tuning/aston-martin-dbs-superleggera/ and the Gallery Picture gallery Aston Martin DBS Superleggera.

    If you add 1920×1080 pixel Pictures in other galleries, they will shown smaller too.
    BR

    in reply to: Empty E-mail with enfold contact form #1076097

    What’s about this Ticket? I’ve the same problem. Is it solved ?

    in reply to: Mobile Menu doesn't work on iphone #822554

    Hi, thanks for changing and the information.

    My proplem with the actual theme update and the new Version 4.1.1 is,
    the menu doesn’ t work on any mobile device.
    It isn’t visible or it is disabled.

    Best regards
    RST

    in reply to: Mobile Menu doesn't work on iphone #821667

    Hi Yigit, what’s about a fix with the LayerSlider-Menu conflict?
    Best regards
    RST

    in reply to: Mobile Menu doesn't work on iphone #804530

    Hi Yigit,

    Thanks for the suggestion. It does not improve the mobile menu error on iPhones.

    But, I have make a new discovery:

    The mobile menu works on sides without a implemented LayerSlider!!!

    The wrongsoing ist only on sites with LayerSlider.
    The menu works correct on the website:

    http://www.fringsgruppe.de/fringsgruppe/impressum/

    WordPress and Theme are installed in the actual Version.

    Do you have an idea what that can be?

    Best regards
    RST

    Hallo Günter,

    die Verschachtelung war so gewünscht. Es sind in meiner Umsetzung aktuell ausschließlich Portfolio-Einträge bei denen das Logo getauscht werden muss. Die Abfrage is_singular( ‘portfolio’ ) habe ich der Performance spendiert. Andere Seiten brauchen nicht überprüft zu werden.

    Gruß
    Ralf

    Hallo Günter,

    Grün war bei mir auch nur ein Beispiel. Ich hatte die Samples auch für die Nachwelt verfasst.
    So, es geht. Ich hatte wohl vorher noch irgendwo einen Hänger im Code, das das nicht ging. Funktioniert nun prima.

    Wenn man die Schlagwörter nicht nutzt, ist das eine sehr gute generische Lösung.

    Mein erster Ansatz waren die Portfolio-Kategorien. Das hätte ich vielleicht noch besser gefunden.

    Vielen, vielen Dank!

    Gruß
    Ralf

    Hallo Guenni007,

    besten Dank für die vielen Ansätze! Motiviert nochmals alles auszuprobieren.

    Mit has_tag( ‘foo’ ) und page.has_tag( ‘foo’ ) komme ich nicht weiter, habe ich ausprobiert.

    -> has_tag(‘gruen’) alleine reagiert nicht.
    -> Mit page.has_tab(‘gruen’) zündet immer genau der erste, ganz gleich was drin steht.

    Hier mal Samples dazu:

    Gut funktioniert für Portfolio-Artikel:

    add_filter('avf_logo','av_change_logo');
    function av_change_logo($logo)
    {
        if ( is_singular( 'portfolio' )  ) {
    		if (       is_single( 'titelform1-rot' ) )  {
    		     $logo = "/wp-content/uploads/logo/rot.png";  
    		} elseif ( is_single( 'titelform2-rot' ) )  {
    		     $logo = "/wp-content/uploads/logo/rot.png"; 
    		} elseif ( is_single( 'titelform3-rot' ) )  {
    		     $logo = "/wp-content/uploads/logo/rot.png"; 
    			 
    		} elseif ( is_single( 'titelform-gelb' ) )  {		
    		     $logo = "/wp-content/uploads/logo/gelb.png";  
    		} elseif ( is_single( 'titelform2-gelb' ) )  {
    		     $logo = "/wp-content/uploads/logo/gelb.png"; 
    		} elseif ( is_single( 'titelform3-gelb' ) )  {
    		     $logo = "/wp-content/uploads/logo/gelb.png"; 
    			 
    		} elseif ( is_single( 'titelform-gruen' ) )  {		
    		     $logo = "/wp-content/uploads/logo/gruen.png";  
    		} elseif ( is_single( 'titelform2-gruen' ) )  {
    		     $logo = "/wp-content/uploads/logo/gruen.png"; 
    		} elseif ( is_single( 'titelform3-gruen' ) )  {
    		     $logo = "/wp-content/uploads/logo/gruen.png"; 
    		} 
    	}
        return $logo;
    }

    Das sollte nun auch funktionieren:

    add_filter('avf_logo','av_change_logo');
    function av_change_logo($logo)
    {
        if ( is_singular( 'portfolio' )  ) {
    		if (       has_tag( 'logo-rot' ) ) {
    			 $logo = "/wp-content/uploads/logo/rot.png"";  
    		} elseif ( has_tag( 'logo-gelb' )  )  {
    			 $logo = "/wp-content/uploads/logo/gelb.png";  
    		} elseif ( has_tag( 'logo-gruen' ) )  {
    			 $logo = "/wp-content/uploads/logo/gruen.png";  
    		}	  
    	}
        return $logo;
    }

    Gruß
    Ralf

    • This reply was modified 7 years, 6 months ago by RSTAC.

    Hallo Guenni007,

    mit is_single() kann ich einzelne Portfolio-Seiten zum Logo-tausch. VIELEN DANK!

    Ich habe gestern versucht, mit is_category(), is_tag() und anderen eine generische Lösung zu bauen. Geht nach wie vor nicht.
    Die Funktionen arbeiten an dieser Stelle nicht wie erwartet. Weder bei Blog noch bei Portfolio-Artikeln.

    Aktuell überlege ich den permalink mit infos fürs Logo zu maskieren, wie z.B. “./seitenname-logo1”. Vielleicht funktioniert an dieser Stelle the_title() zum Auslesen des Portfolio-Seiten-Namens?

    Nochmals besten Dank,

    Gruß
    Ralf

    • This reply was modified 7 years, 6 months ago by RSTAC.

    Hallo Guenni007,

    prima Lösung, klappt bei Seiten super, danke!

    Ich nutze auch “Portfolio Einträge” die ich individuellen Logo anzeigen möchte.

    Die Funktionen is_page(), is_category(), etc. greifen bei Portfolio Einträgen nicht.

    Was ist zu tun, um die gleiche Funktionalität auf Portfolio Einträge anwenden zu können.

    Danke vorab,

    Gruß
    Ralf

    • This reply was modified 7 years, 6 months ago by RSTAC.

    Hallo Andy,

    die Liste bin ich durch gegangen. Da ist leider keinerlei Logo PlugIn enthalten.

    Ich habe auch bei der PlugIn Recherche keines gefunden, was seitenweise das Logo individuell austauschen kann.
    Die PlugIns tauschen grundsätzlich oder nach technischen Attributen das Logo aus.

    Muß mann hier vielleicht doch mit Programmierung und Short Codes in den Seiten ran?

    Gruß
    Ralf

    Hi Andy,

    welches Plugin würde denn beispielsweise mit Kriesi-Enfold gut zusammen arbeiten?

    Danke im Voraus

    Gruß
    Ralf

    in reply to: URGENT – Problems after wordpress 4.5 update #614541

    Hi,

    I have the same problem. After running the 4.5 WP update, many controls didn’t work (content slider, Tab, number,..).
    After an full file backup, WP and Enfold works korrekt.

    I’ ve repeat the installation, and the same. Directly after installing the wp 4.5 update many controls doesn’ t work.

    Ralf

    in reply to: Font weight lighter doesn't work without WordPress Login #596275

    Hi,
    i will add a further information.

    If the first website of the multidomain installation isn’t logged in,the chrome browser shows an error.
    ?dm=4d9ca13d581759fc5c6744ac50d837ec&action=load&blogid=2&siteid=1&t=728894550&back=http%3A%2F%2Fai…:1
    Uncaught SyntaxError: Unexpected token <
    I havn’t found the problem, but I think it isn’t the matter for the “lighter-font-weight” failure.
    When the Maintenance-mode on the first installed website is switched off, the error disappears.

    Best regards,
    Ralf

    in reply to: Font weight lighter doesn't work without WordPress Login #596261

    Hi,

    thanks for request. Please look at the changes in the content.

    Best regards,
    Ralf

    Hi,

    I checked it with the font-weight “bold”, it works without failures.

    Ralf

Viewing 17 posts - 1 through 17 (of 17 total)