Forum Replies Created
-
AuthorPosts
-
February 6, 2020 at 5:30 pm in reply to: Enfold 4.7.2 deletes woocommerce cookies even with default "accept cookies on" #1182055
Patched it for myself, since i have no time for waiting on 4.7.3
What I did:
with js i set
“aviaPrivacyEssentialCookiesEnabled=true; max-age=216000; path=/;”in php:
only remove if this cookie is not set.now i can wait for the update… even if its not the safest option.
Please enfold. we all know legal cookie handling is a difficult topic. if you provide a banner for that, please check how to do implement this legally correct and not do affect existent functionality.
People are frustrated with this gdpr thing, please dont make it worse with providing a half secure and unstable solution.February 6, 2020 at 3:40 pm in reply to: Enfold 4.7.2 deletes woocommerce cookies even with default "accept cookies on" #1182031Hello,
did you get my support request? This is really urgent!Hey Victoria,
thanks for the reply.Thats why i wanted to use a separate template which would overwrite the css rule or the css file. But it didnt work.
I ended up patching enfold directly in the grid.css. After changing it directly in the grid.css i didnt see any problems in my pages and articles.
Could you consider changing this in enfold theme directly and maybe check if there are some after effects on this change, which i didnt see?
I simply changed the html min-width property from 910px to auto in the grid.css file.
Best regards
ArekHi,
me again. I figured out that it is this css-rule in the grid.css, which break the responsiveness:
html { min-width: 910px; }
I tried to replace this rule to the site template, child theme style.css / custom.css but it will be ignored. do you have any recommendation to overwrite this rule with this (only for my landing pages with. thrive themes).
html { min-width: auto !important; }
Hello,
i have the same problem. I am using Thrive Architect for landing pages and with enfold they are not responsive. Tried with the default WordPress Theme and there it is responsive and working correctly.I figured out, that the grid.css in Enfold is in conflict with thrive architect (dont know which css selector). When i remove the grid.css link in DevTools everything looks fine and is responsive.
I tried to build a template in my endfold-child which will deregister the grid.css but it is not working. can you give me a hint for not loading the avia-grid in my template?
i tried this as as a template file (nogrid.php):
<?php /** Template Name: Content Only (No Enfold Grid) */ ?> <html> <head> <title><?php wp_title( '|', true, 'right' ); bloginfo('url'); ?></title> </head> <body> <?php while (have_posts()) : the_post(); ?> <?php the_content(); endwhile; ?> </body> </html> <?php function dequeue_grid_css() { wp_dequeue_style('avia-grid'); wp_deregister_style('avia-grid'); } // add a priority if you need it add_action('wp_enqueue_scripts','dequeue_grid_css',9999); add_action('wp_head', 'dequeue_grid_css', 9999); ?>
Can you help me on this? The grid.css will be still loaded by enfold, how can i get rid of this?
Best regards
ArekHey folks,
the videos on my site are also broken. Using the video shortcode.
All my videos will not be shown in the right size and worst: the fullscreen video just shows a micro sized video.
I have clients paying for this videos, and they will request a refund if my videos are not working. Guess who is in trouble now. So I need a fix for this immediately.Please provide first a solution on how to roll back the last versions.
Need your help ASAP.
Ps. Just an idea, what about reverting the buggy code to a previous version?Pps. Tried to use video element, but it seems avia layout editor lets wordpress run its magic after saving. This means, that controlsList=”nodownload” will be removed, so everywhere a download button is shown… not a workaround.
update 3: tried to roll back to 4.2.3 problem stays and is still there.
update 4 and workaround:
Patched it for myself. In shortcodes.css (Line:3728) you define a max-height:30px for .mejscontainer
#top .mejs-container{height: 30px; max-height: 30px}
Dumped this property and now it works, could you please fix your code:
#top .mejs-container{height: 30px;}
This one made me very angry, next time i have to patch this theme, i will just dump it and buy a better one. Sad but true.
- This reply was modified 6 years, 8 months ago by Arek.
Hi Rikard,
we fixed it for ourself. No problem with the layout editor. We use some additional div tags, and forgot to add some div-Endtags. WordPress or the Layout editor try to fix that with appending the end tags to the end of the content. this confuses the layout editor.
Lessons learned: Check the Content Source Code before contacting the support :-)Thanks anyways!
Best regards
ArekHello,
i think i have a similar issue. Is there a fix available?
Please find my screenshot attached. Duplication of the page does not work. I will try now to extract the page with shortcodes for continuing my work.Please let me know if you need some more informations.
Best Regards
Arek -
AuthorPosts