Forum Replies Created

Viewing 30 posts - 1 through 30 (of 50 total)
  • Author
    Posts
  • in reply to: Code Element WPML issue #1471649

    Hi,

    Sorry for the late response.

    I don’t want to use string translation for that. I’m using the classic wpml translation und just adding the codeblock element to the translated page. You can try it on your test install. I tried it on different projects and it’s the same bug everywhere.

    Regards,
    Patrick

    in reply to: Code Element WPML issue #1470332

    Hi Ismael,

    Sorry, I updated the two url’s. We are using the codeblock element and the setting is set to “Display codeblock as code snippet”. I’ve inserted them below the post thumbnail. On the translated page (english page) the tags are removed on the frontend.

    Regards,
    Patrick

    in reply to: Youtube shorts in iframe not working #1468705

    Hi Rikard,

    Thank you. Indeed that helped :)

    Maybe you can take that into the core and check if it’s a short or not and handle that case in background so it’s more convenient to just copy and paste the link without the need of changing the url and adding the iframe param.

    All the best,
    Patrick

    in reply to: Toggler Element #1463401

    You can close it. Thanks.

    in reply to: Toggler Element #1463335

    Thank you :)

    in reply to: Accessibility issue with icon element #1462834

    Hi Günter,

    Sorry for the late answer.

    Thanks for the update. The animation thing is also fixed. Don’t know if it was just an issue on my side or if you did something.

    All the best,
    Patrick

    in reply to: Awesome #1460881

    Hi Günther,

    Maybe an option in the enfold footer settings where you can switch to another markup would be an idea?

    But I’m currently not sure if my markup idea is 100% right. I did some research and some sources state that only the socket should be wrapped in <footer> and others state that that the whole footer part can be wrapped. We also had no explicit feedback on the footer in the accessibility check so maybe leave it like it is for now and I reach back when I have more information.

    All the best,
    Patrick

    in reply to: Change google maps styling #1441405

    Hi Ismael,

    It was here https://kriesi.at/support/topic/change-google-maps-styling/#post-1440344

    Günter also said it would be a nice feature.

    All the best,
    Patrick

    in reply to: Change google maps styling #1440762

    Great news, thank you.

    Anything new on the Borlabs thing?

    All the best,
    Patrick

    in reply to: Change google maps styling #1440491

    Thanks Ismael,

    Keep me updated please.

    All the best,
    Patrick

    in reply to: Change google maps styling #1440473

    Ok, dann hab ich es missverstanden 😅

    Yes, the ternary operator should be save for the changes in core and borlabs implementation would be great.

    Thanks,
    Patrick

    in reply to: Change google maps styling #1440369

    Hallo Günter,

    Ich wechsel kurz auf Deutsch weil ich mich da besser Ausdrücken kann :D

    Den Code den du mir jetzt geschickt hast ist ja schon der Code den ich so in Verwendung habe und der funktioniert auch. Ismael hatte nur Änderungen in im javascript gemacht (https://kriesi.at/support/topic/change-google-maps-styling/#post-1440336) und ich wollte nur wissen ob ihr diese Änderungen dann in den Core übernehmen könnt mit dem nächsten Update. Kann es sein, dass du https://kriesi.at/support/topic/change-google-maps-styling/#post-1440337 nicht gelesen hast? :D

    Oder reden wir gerade aneinander vorbei?

    Liebe Grüße
    Patrick

    in reply to: Change google maps styling #1440354

    I got a json file:

    [
        {
            "featureType": "all",
            "elementType": "geometry",
            "stylers": [
                {
                    "hue": "#006cff"
                }
            ]
        },
        {
            "featureType": "all",
            "elementType": "geometry.fill",
            "stylers": [
                {
                    "hue": "#006cff"
                }
            ]
        },
        {
            "featureType": "all",
            "elementType": "labels.text",
            "stylers": [
                {
                    "hue": "#006cff"
                }
            ]
        },
        {
            "featureType": "all",
            "elementType": "labels.icon",
            "stylers": [
                {
                    "hue": "#006cff"
                }
            ]
        },
        {
            "featureType": "landscape.man_made",
            "elementType": "geometry",
            "stylers": [
                {
                    "hue": "#006cff"
                },
                {
                    "saturation": "100"
                }
            ]
        },
        {
            "featureType": "poi",
            "elementType": "all",
            "stylers": [
                {
                    "visibility": "off"
                }
            ]
        },
        {
            "featureType": "road",
            "elementType": "geometry",
            "stylers": [
                {
                    "lightness": 50
                },
                {
                    "visibility": "simplified"
                }
            ]
        },
        {
            "featureType": "road",
            "elementType": "labels",
            "stylers": [
                {
                    "visibility": "simplified"
                }
            ]
        },
        {
            "featureType": "transit",
            "elementType": "labels.text",
            "stylers": [
                {
                    "visibility": "off"
                }
            ]
        }
    ]

    I added that first as a string in the filter but it didn’t work. So i changed it to array only. Did I miss something?

    in reply to: Change google maps styling #1440344

    Hi Ismael,

    I have another question. Is it possible to make the google map to work with borlabs cookie? I added the borlabs cookie shortcode arround the google map via the avf_in_shortcode_handler_prepare_content. If I don’t allow the cookie the map gets nicely blocked. When i press allow the map doesn’t load. I have to refresh the whole page so that the map loads again. Is there a way to fix that?

    You can check on the website I sent you before. There are two versions. One is added via a google iframe which works. The second is the enfold element. Would be nice if it work with the enfold element too.

    All the best,
    Patrick

    in reply to: Change google maps styling #1440337

    Hi Ismael,

    Thank you. It works :)
    Possible you put the changes into core with the next update?

    Thanks,
    Patrick

    in reply to: Change google maps styling #1440292

    Hi Mike,

    I want to add snazzy map styles which is done by setting the styles attribute of google maps.

    add_filter( 'avf_gmap_vars', function($maps) {
        $snazzy = [
            [
                "featureType" => "all",
                "elementType" => "geometry",
                "stylers"     => [
                    [
                        "hue" => "#006cff"
                    ]
                ]
            ],
            [
                "featureType" => "all",
                "elementType" => "geometry.fill",
                "stylers"     => [
                    [
                        "hue" => "#006cff"
                    ]
                ]
            ],
            [
                "featureType" => "all",
                "elementType" => "labels.text",
                "stylers"     => [
                    [
                        "hue" => "#006cff"
                    ]
                ]
            ],
            [
                "featureType" => "all",
                "elementType" => "labels.icon",
                "stylers"     => [
                    [
                        "hue" => "#006cff"
                    ]
                ]
            ],
            [
                "featureType" => "landscape.man_made",
                "elementType" => "geometry",
                "stylers"     => [
                    [
                        "hue" => "#006cff"
                    ],
                    [
                        "saturation" => "100"
                    ]
                ]
            ],
            [
                "featureType" => "poi",
                "elementType" => "all",
                "stylers"     => [
                    [
                        "visibility" => "off"
                    ]
                ]
            ],
            [
                "featureType" => "road",
                "elementType" => "geometry",
                "stylers"     => [
                    [
                        "lightness" => 50
                    ],
                    [
                        "visibility" => "simplified"
                    ]
                ]
            ],
            [
                "featureType" => "road",
                "elementType" => "labels",
                "stylers"     => [
                    [
                        "visibility" => "simplified"
                    ]
                ]
            ],
            [
                "featureType" => "transit",
                "elementType" => "labels.text",
                "stylers"     => [
                    [
                        "visibility" => "off"
                    ]
                ]
            ]
        ];
    
        $maps['av_google_map']['av_gmap_0']['styles'] = $snazzy;
        return $maps;
    } );

    When I check window.av_google_map in dev tools everything is there correctly but it seems like it doesn’t get initialized.

    in reply to: Change google maps styling #1440253

    It writes the zoom level, etc. so I assumed that I can also set the styles attribute because it’s on the same level when the map gets initialized.

    All the best,
    Patrick

    in reply to: Filter input in iconfont #1437259

    Works like a charm :) Really appreciate it. Thank You!

    All the best,
    Patrick

    in reply to: Filter input in iconfont #1435561

    Perfekt, danke.

    Jetzt wo ich über meine erste Nachricht drüber lese, habe ich mich glaube ich ein wenig falsch aus ausgedrückt. Was wir benötigen und was unser Code macht ist, dass wir ein Suchfeld in der Iconauswahl hinzugefügt haben um die Auswahl einzuschränken wenn man viele Icons hat. Dafür haben wir eben ein Suchfeld hinzugefügt und dem Icon-HTML noch ein data-attr mit dem Icon-Namen von Fontello gegeben.

    Liebe Grüße
    Patrick

    in reply to: Font Uploader #1431358

    Thank you Günter,

    Will there be any changes in the future to the font manager stuff because I saw some new classes that you made (aviaFontManagementBase)?

    in reply to: Font Uploader #1431332

    Yes, sure it would help. It was like that before. But it’s enfold code so you would have to change it.
    We did a workaround and created a custom class with a public function that extends your class and calls the zip_flatten function. So it’s working for now.

    in reply to: Special Character Translation plugin link not working #1402987

    Thank you :)

    All the best,
    Patrick

    in reply to: Custom enfold element tiny_mce #1344723

    Hi Günter,

    That’s what I thought :/ Thanks for your answer. So I’ll have to use a normal textfield.

    All the best,
    Patrick

    in reply to: Changelog missing for 4.8.7 #1327797

    I know that I can add classes but thats a no go for our customers.

    It’s not so hard to implement margin and padding for all Elements. I can do it on my own but it’s not update safe because I have to copy all shortcode files.

    So just pass it as a feature request to your developers :)

    All the best,
    Patrick

    in reply to: Changelog missing for 4.8.7 #1327594

    Thank you,
    I didn’t look at the update notes the last time and it crashed our logos because of the svg change :D
    That’s why I need the update notes from now on :)

    Btw, really great work with the last updates. It’s getting better and better. We love it!

    Maybe you could implement margin and padding setting for all element (eg. textbox) and implement it like the column settings in the masonry element so that we can change this setting for mobile, tablet and desktop.

    All the best,
    Patrick

    in reply to: Filter the color_sets array for custom color sections #1317321

    Thank you, great :) That will help a lot.

    All the best,
    Patrick

    in reply to: Fullwidth Slider not full width #1267051

    Hi Victoria,
    I reinstalled the theme and it’s working again. So maybe there was a problem while updating.
    All the best,
    Patrick

    in reply to: Transparent Header on WooCommerce Product Page #1224884

    You can filter the enfold header classes to enable transparent headers on woocommerce pages.

    /**
     * Add transparent header on woocommerce pages
     */
    add_filter('avf_header_setting_filter', function ($header) {
        if (is_shop()) { // use check for your need
            $header['header_transparency'] = 'header_transparency';
            $header['header_title_bar'] = 'hidden_title_bar';
            $header['header_class'] = $header['header_class'] . ' av_header_transparency';
        }
        return $header;
    }, 1);
    in reply to: Please contribute and translate Enfold #1175291

    Hi,

    Please use de_DE for de_DE_formal. The translations in de_DE are formal. I exported the translation file correctly and uploaded the po and mo files here http://www.mediafire.com/file/t3a5su62kjt5m60/de_DE_formal.zip/file.

    Best,
    Patrick

    in reply to: This element was disabled in your theme settings #1141690

    Well, today the problem was gone by itself :S

    But I updated the code anyways, thank you. I will get back if the problem returns.

    Have a nice day :)

Viewing 30 posts - 1 through 30 (of 50 total)