Forum Replies Created

Viewing 30 posts - 91 through 120 (of 581 total)
  • Author
    Posts
  • in reply to: Accordion same link but different behaviour #1105362

    Hey Ismael

    Thank you very much for your reply – I appreciate it.

    I commented that part of the file avia.js out, but unfortunately this does not do anything.
    I located the file inside my child theme in js -> avia.js but as I said, it is still scrolling like before.

    What am I missing? Pretty sure it is not caching.

    Best regards
    Michael

    in reply to: Update PHP and Enfold #1105091

    Hallo Joel

    HTTPS hat geklappt. Wo kann ich das Protokoll HTTP/2 einstellen? Im Panel vom Hosting?

    Eigentlich ja, aber frage doch direkt mal bei green nach, ob sie HTTP/2 überhaupt unterstützen. Von anderen Hostern weiss ich, dass Sie dies (noch) nicht unterstützen und alle Anfragen deshalb stets via HTTP/1.1 gehen, was um einiges langsamer ist.

    Viele Grüsse
    Michi

    in reply to: Update PHP and Enfold #1105081

    Hallo Joel

    Ich mache hier mal auf Deutsch weiter ;)

    Ah perfekt, wenn du direkt den Code im File anpassen konntest. Vermutlich wird die Warnung dann aber wieder erscheinen, wenn du das Plugin aktualisierst, nicht?

    Bezüglich PageSpeed:
    Ich vermute es handelt sich um die Website http://sutergerteis.ch – korrekt? Dass Google dort niedrige Werte anzeigt, kann zahlreiche Ursachen haben. Das Theme an sich ist aus meiner Sicht aber ziemlich schnell.

    Dinge, die mir grad in den Sinn kommen dazu:
    a) Bei welchem Hoster bist du denn? Green vermutlich…
    b) Stelle sicher, dass HTTPS die Standard-URL ist und das Protokoll HTTP/2 verwendet wird.
    c) Welche PHP-Version verwendest du?
    d) In den Debug-Infos sehe ich, dass du die JS- sowie CSS-Kompression nicht aktiv hast. Hat dies einen bestimmten Grund?
    Compress: CSS:disabled - JS:disabled

    Viele Grüsse aus Frauenfeld
    Michi

    in reply to: Update PHP and Enfold #1104984

    Great – I guess you just deleted this plugin ;)

    in reply to: Website not working properly with IE 11 #1104983

    @logerber:
    I guess IE11 does not like that you chose “parallax” for your photo slider.

    @cg:
    Totally agree with you about this browser, unfortunately within the B2B area it is still quite common to use it.
    Or people just don’t know that this browser is from 2013 because it still comes with Windows by default in some cases.

    in reply to: child theme after I already created the website #1104761

    Hi Eman

    Sure – that’s possible.
    Please check my reply here.

    There is also an option to export your parent theme settings before you switch to the child theme. Afterwards you can import them to your child theme again and you have the same settings as before with your parent theme (Enfold).

    Best regards
    Michael

    in reply to: Website not working properly with IE 11 #1104760

    Hi logerber

    IE11 debugging is nasty, I know. It works pretty much always totally different in this browser than in the others which are more modern.

    Anyway, have you also read my reply here?
    This might help you as well and if not, could you post the website URL here?

    Also, in case you are using position:fixed; you always need a height attribute as well otherwise IE will be confused ;)

    Cheers
    Michael

    in reply to: Enfold not updating #1104757

    Hi xansdesign

    I don’t know what this plugin does, but as far as I know even with the API you still have to click the update button in order to update Enfold.
    I am not aware of Enfold updating automatically (maybe I am wrong).

    Cheers from another participant
    Michael

    in reply to: URGENT homepage images have disappeared #1104756

    Hi messmeriza

    I inspected your slider in the frontend – looks good to me. The sliders such as https://www.pointgreyfiesta.org/wp-content/uploads/2019/04/slider-1.png are there and should be displayed.

    You probably have to wait for a moderator to reply here (I am just a participant like you) because without backend access it is quite difficult to judge why the images are not displayed correctly.

    In addition, I don’t see any differences between the links you posted. They are the same for me.

    Cheers
    Michael

    in reply to: Update PHP and Enfold #1104754

    Hey Joel

    It is very likely that the issue is due to the old version of the Enfold theme.

    I would solve your issue like that:
    a) Make a full backup of your website via a plugin such as UpdraftPlus.
    b) Update your PHP version via your hoster.
    c) Install the newest Enfold version via FTP (delete the existing enfold folder before so you don’t have any old files left).

    I hope that helps. Otherwise just post again here.

    Gruess
    Michi

    P.S.: I am just a participant like you and can’t see any private data you might have posted here.

    Hi KEL

    How exactly did you scan it? With https://sitecheck.sucuri.net/ and it says it’s alright or not?

    Secondly I would change all passwords (WP, FTP).
    If this still does not help you can only start from scratch in my opinion. Otherwise you can’t really be sure that all bad code is gone.

    Another option is that you have some leftovers in your database – have you checked that? Can be very time consuming though…

    And maybe suggest to your customer to switch to a good hoster ;)

    Cheers
    Michael

    in reply to: child theme function #1101916

    Hi webmanu

    I use a child theme for all of my projects. Coming to your questions:

    for a child theme there is nothing written in the functions.php. Is that an old download?

    Possibly. The code I use in functions.php is at the least the following (very similar to the one you posted above):

    <?php
    function my_theme_enqueue_styles() {
    
        $parent_style = 'parent-style'; // This is 'enfold-style' for the Enfold theme.
    
        wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
        wp_enqueue_style( 'child-style',
            get_stylesheet_directory_uri() . '/style.css',
            array( $parent_style ),
            wp_get_theme()->get('Version')
        );
    }
    ?>

    I don’t have to include the CSS files of the enfold theme like that – I can use the child-theme folder as it is on your documentation page…

    I would include it like I described above. In addition to that, you should have a file style.css as well. This file should have at least something like that:

    /*
    Theme Name: Enfold Child
    Theme URI: https://kriesi.at
    Description: Child theme for [your project name here]
    Author: webmanu
    Author URI: https://webmanu.com
    Template: enfold
    Version: 1.0.0
    License: GNU General Public License v2 or later
    License URI: http://www.gnu.org/licenses/gpl-2.0.html
    */

    Important: Do not change the value “enfold” for “Template”. Otherwise WordPress will not recognize that you built a child theme based on Enfold.

    Last but not least:
    If you want a nice snapshot of your child theme if you head over to “Design” in the backend, just upload a file called screenshot.png (700x467px) to your child theme folder.

    I hope that helps.

    Cheers and have fun!
    Michael

    Thanks, but I can’t see private content because I am a participant like you.
    Only moderators and you as the creator of this thread can see private content here…

    Suggestion: Post it publicly here and as soon as I see it I will let you know (and you can delete the comment again). If that’s an option for you.

    Hi duncand

    WP 5.2 and Enfold 4.5.7 work great together!
    Just make sure you are using PHP 7.1 at least and you should be fine (and make a full backup before as always before updating core or the theme).

    I did not have any major issues since upgrading to WP 5.2.

    Cheers
    Michael

    As I already mentioned:
    Without the URL it is quite hard to say what’s wrong, I am sorry.

    Maybe this helps:

    .avia-content-slider .slide-entry-title {
    font-size: 35px !important;
    }

    Hi mela1989

    I think you can activate the option “Show element options for developers” if you go to Enfold => Layout Builder.
    Afterwards you should be able to set a class for one slide only and target it with a bigger font-size like this.

    I am not 100% if this works as I rarely use sliders.
    if it does not work it would be great if you can share the website URL here so I can take a closer look.

    Best,
    Michael

    I am a participant like you. Only you and moderators can see private content in this thread ;)
    Otherwise I would not have made my previous comment.

    Anyway, you might find a solution to contact me in a different way. It’s kind of an Easter egg on this page.

    Hi KEL

    Alright, I see. Well I don’t know how I could sign in if you can’t share the credentials here…
    So if it worked before I would consider downgrading to WP 5.1.1.

    Cheers
    Michael

    in reply to: Revolution Slider doesn't show up #1101488

    Hey raphaelperis

    Disable Autoptimize for a moment and try again. I see an error associated to it in the browser console:
    TypeError: i.src is undefined

    I am not sure if this solves it, but it is worth a try. Just make a backup first to be sure.

    Cheers
    Michael

    Hi KEL

    First of all: Do you have a backup in place?

    If you want to have help as soon as possible, you might want to consider to at least share the website URL in a normal comment (not private) here. As you can see there is a lot going on here in the forum :)
    In addition, your webhoster might be able to help you as well.

    Do you know why it happened? Just after you updated WP or after updating Enfold?

    Best regards
    Michael

    in reply to: WebP Google Image Format #1101415

    Hi

    Do plugins such as https://wordpress.org/plugins/webp-express/ not work for you?
    I haven’t tried it myself.

    Cheers
    Michael

    Hi Günter

    Thank you very much – really appreciate your help.

    Interesting fact: It works again, even without changing some of the code from the files you described. Maybe some kind of caching (just a guess).
    Well the good thing is that if this happens again I know how to get rid of it (if the error message is the same).

    Thanks and have a great day
    Michael

    Thanks for the tip Ismael.

    I will leave it like it is for the moment, as I have invested so many hours in IE11 debugging already…

    in reply to: Wrong API – API can’t be changed. #1101309

    Hi

    Just paste the new API key there and save it.
    This should fix it.

    Cheers
    Michael

    Hi Snerp

    I am using SVG support as well and it works like a charm.
    Guessing it is something with your server config. Maybe there is a message about it in the server log as well if you try to upload it.

    Cheers
    Michael

    in reply to: Errors after updating to WP version 5.2 #1101300

    Hi

    My error message looks a bit different than the one from Julian, but I think the problem is the same at the end.
    Posted details here.

    Thanks a lot
    Michael

    Hi Rikard

    Just want to let you guys know that me and quite some other people (I guess) are having the same issue since updating to WP 5.2.
    I am using PHP 7.3 currently and Enfold 4.5.7.

    Error details:
    An error of type E_ERROR was caused in line 212 of the file /home/wp/disk/wordpress/wp-content/themes/enfold/framework/php/auto-updates/class-avia-envato-base-api.php. Error message: Uncaught TypeError: Argument 2 passed to Avia_Envato_Base_API::add_envato_api_error() must be of the type array, null given, called in /home/wp/disk/wordpress/wp-content/themes/enfold/framework/php/auto-updates/class-avia-envato-base-api.php on line 440 and defined in /home/wp/disk/wordpress/wp-content/themes/enfold/framework/php/auto-updates/class-avia-envato-base-api.php:212 Stack trace: #0 /home/wp/disk/wordpress/wp-content/themes/enfold/framework/php/auto-updates/class-avia-envato-base-api.php(440): Avia_Envato_Base_API->add_envato_api_error(Array, NULL, 'Get Product Ver...') #1 /home/wp/disk/wordpress/wp-content/themes/enfold/framework/php/auto-updates/class-avia-theme-updater.php(301): Avia_Envato_Base_API->get_product_infos(Array) #2 /home/wp/disk/wordpress/wp-includes/class-wp-hook.php(288): Avia_Theme_Updater->handler_pre_set_site_transient_update_themes(Object(stdClass)) #3 /home/wp/disk/wordpress/wp-includes/plugin.php(208): WP_Hook->apply_filters(Object(stdClass), Array) #4 /home/wp/disk/wordpress

    To me this looks very much like an API connection issue with Envato/themeforest.
    Any advice or hotfix that makes it possible again to update via Dashboard -> Updates?

    Thanks a lot
    Michael

    I also added this within the <head> tag. Unfortunately no changes:
    <meta http-equiv="X-UA-Compatible" content="IE=edge">

    in reply to: Google Maps 100% height #1100859

    Hi Rikard

    As it was urgent, I had to look around for other ways to solve it.
    It’s done like this right now and works cross-browsers:

    .av-hide-on-mobile .flex_cell_inner,
    .av-hide-on-mobile .avia_codeblock_section,
    .av-hide-on-mobile .google-maps-neu,
    .av-hide-on-mobile .maps-iframe {
    height: 100% !important;
    }
    

    You can close this thread please.

    It would be great if you could also check my reply in this older thread. Maybe there is a general solution for that.

    Cheers
    Michael

    Hi Rikard

    In my case, this fix does not help unfortunately.
    The accordion does not open at all in IE11.

    I also checked the thread here but I am using the “InPrivate mode” in IE so it is not a caching issue.

    Do you have any other ideas what could solve this nasty IE bug?

    EDIT: Solved :) The thing which IE11 did not like was that my grid was defined as min-height:100% (the theme element), so I changed it back to “custom value in pixel” and tadaaa it works in IE11. Really really (really) weird, but it works now so I am super glad.

    Thanks a lot
    Michael

Viewing 30 posts - 91 through 120 (of 581 total)