Forum Replies Created
-
AuthorPosts
-
March 27, 2023 at 7:31 pm in reply to: Gravity Forms “Add Form” not appearing on classic editor when Enfold installed #1402669
Hi,
Thank you for your patience, so the issue only occurs when the Enfold option at Enfold Theme Options ▸ Select Your Editor ▸ Classic Editor is enabled, but not with the Block Editor option?
If the Classic Editor plugin is used instead of the theme option the issue doesn’t occur?Best regards,
MikeHi,
This is your homepage that page is /forside/ the theme sets it’s path to domainname.dk/ but the Yoast SEO plugin sees the backend path domainname.dk/forside/ so this advanced option fixes the path, all of your other pages use their original path so this is not needed.Best regards,
MikeHi,
@orthomedtherapyro, Oh, I see this is not your thread…
To adjust the negative margin for the 3 columns for mobile, go to the first column Edit Column ▸ Row Settings ▸ Row Margins where the default value for the top margin is -200px:
then select the mobile option and enter a different value:
This will move the column down, but your slider captions have too much text to show well on mobile you will probably want to create a second slider to only show on mobile with much less text or use a different slider element for mobile.
If you have any further questions please create a new thread as each user and issue should have its own thread and this thread is already very long.Best regards,
MikeHi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
@deposted this would not be easy and require you to make some customizations, the theme doesn’t support this automatically, see the Polylang documentation: Add a language switcher anywhere.
If you have further questions please create a new thread, since this is not your thread posting your login here will not be private and you will not see anything we write in the Private Content area.Best regards,
MikeMarch 26, 2023 at 10:59 pm in reply to: The vertical padding around text in columns is inconsistent on mobile. #1402583Hi,
If you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Glad Nikko was able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeMarch 26, 2023 at 10:57 pm in reply to: Updated to latest version of enfold and it has Broken my full screen slider #1402581Hi,
Thanks for the feedback, if your other sites are mirrors with the same HTML in the fields and show the red warnings as in the screenshots above, please remove the HTML as I explained above.Best regards,
MikeMarch 26, 2023 at 10:49 pm in reply to: My Avia Advanced editor won’t save content (most of the time). #1402580Hi,
Thanks for the video, I tried to recreate this on my test site and was not able to, please see the video in the Private Content area.
While I see this is occurring on your site I imagine it is due to a possible plugin conflict, try disabling all of your plugins and clearing your server cache. If that resolves the issue, reactivate each one individually until you find the cause.
I also recommend checking if this is occurring to “published” pages, where you make a change and then publish, view the frontend, then return to the backend via the admin link in the toolbar, not the browser back button, and check the backend.
If this works correctly it could allow you to continue working without removing the conflict.Best regards,
MikeHi,
Glad Nikko was able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Thanks for the feedback, at the end of your css above there is a rouge */:
please remove this if it is in your css.
But this didn’t affect your site for my mobile Android, as I found no issues like in your screenshots:
If you are still seeing the error try clearing your browser cache following these steps for Safari and note step 4 where you will Clear the History.Best regards,
MikeHey ballindigital,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.main_color .avia_ajax_form input[type='submit'].button { color: #444; } .main_color .avia_ajax_form input[type='submit'].button:hover { color: #fff; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHey schweg33,
On the first page, the target page, add a unique ID to each span to create the anchor, for example:
<span id="bischa" style="color: #ff0000;">bischa</span>
On the second page create your links using the ID like this:
<a href="/text-fuer-einen-test#bischa">link to bischa on other page</a>
Please note that you need to use the full url and ID to the first page.Best regards,
MikeHi,
Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHey Monika,
Thank you for the link to your site, I see that you have columns and rows of text block elements creating a grid, in a section with the ID #av-extra-columns, each text block contains minimal information and you would like these blocks to open into a popup with more information.
First try adding some “hidden” text in your text block element, to hide the text add the class hidden to the paragraph tag like this:
<p class="hidden">This is hidden text</p>
, you may wish to edit the text elements in the “text” tab instead of the “visual” tab so you can see the paragraph tags. Now that your extra information is added to the text blocks try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.mfp-content { display: inline-flex !important; } .copyBlock-popup { position: relative; background: transparent; padding: 20px; width: auto; max-width: 800px; margin: 20px auto; } .copyBlock-popup .avia_textblock { min-width: 300px; float: left; margin: 0 20px 10px 0 } .copyBlock-popup .avia_textblock { width: 100%; color: #000; } .copyBlock-popup .mfp-close { right: 10px; top: 10px; } #av-extra-columns .avia_textblock .hidden { display: none; } .copyBlock-popup .avia_textblock .hidden { display: block; position: relative; visibility: visible; } #av-extra-columns .av_textblock_section:hover { cursor: pointer; }
Then add this code to the end of your child theme functions.php file in Appearance ▸ Editor:
function custom_popup_script() { ?> <script> window.addEventListener('DOMContentLoaded', function() { (function($){ $('#av-extra-columns .av_textblock_section').each(function () { var copyBlock = $(this).clone().html(); $(this).magnificPopup({ items: { src: $('<div class="copyBlock-popup">'+copyBlock+'</div>'), }, type: 'inline' }); }); })(jQuery); }); </script> <?php } add_action('wp_footer', 'custom_popup_script');
Now when you click on the blocks they will open in a popup and show the extra information.
Best regards,
MikeHey Monika,
Thank you for the link to your site, Try this CSS instead:#main #av-extra-columns .column-top-margin { margin-top: 0 !important; } #main #av-extra-columns .flex_column { width: 16%; flex-basis: 16%; margin: auto; margin-top: 20px!important; } #main #av-extra-columns .flex_column.first { clear: none!important; margin: auto; } /* Two columns in mobile */ @media only screen and (max-width: 768px) { .responsive #top #wrap_all #av-extra-columns .flex_column { margin-bottom: 20px!important; margin-top: 20px!important; margin: auto; flex-basis: 44%; } .responsive #top #wrap_all #av-extra-columns > .container { width: 100%; max-width: 100%; } }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHey Monika,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#av-extra-columns > .container { mix-blend-mode: multiply; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHey thetmz,
Try blocking the directories via robot.txt
Perhaps like this:User-agent: * Disallow: /cgi-bin Disallow: /wp-admin Disallow: /wp-includes Disallow: /wp-content/plugins Disallow: /wp-content/cache Disallow: /wp-content/themes Disallow: /*?* Disallow: /*? Allow: /wp-content/uploads
One possible cause could be your server using mod_autoindex see this Google Support Thread
Best regards,
MikeHi,
It’s been three months now so we will assume that this is sorted out now, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeMarch 26, 2023 at 2:39 pm in reply to: Problem after change string before author in blog article #1402547Hi,
It’s been two months now so we will assume that this is sorted out now, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Thanks for your patience, I tested the temporary solution of adding the custom class custom-parallax to the two top columns in the Parallax demo that had the issue of growing larger when slightly scrolling up & down on mobile, and adding this css in the WordPress ▸ Customize ▸ Additional CSS@media only screen and (max-width: 767px) { .custom-parallax { height: auto!important; }}
On this test page, please check this on your mobile device and compare to this version of the same page without the custom class.
On my Android device the first page with the custom class & css seems to be corrected.
But when I try the same steps on your page it doesn’t seem to solve the issue. I then tried creating a new /parallax-demo/ test page on your site with the original settings that your homepage is based on, I imagine the only difference is the images, text, and perhaps some minimal settings such as colors, I also included the custom class solution and it works on this page. Which I don’t know why.
Please test this page also after clearing your browser cache and see if you get the same result, if you do try comparing the /parallax-demo/ page with your homepage and see if you notice any differences that I missed between the two, or try duplicating the page and start to modified it like your homepage to see what change might cause the issue?
Best regards,
MikeHi,
Thank you for the link to your site, I found that you had the Classic Editor plugin installed, this is not needed as the theme has this option at Enfold Theme Options ▸ Select Your Editor I disabled your plugin and enabled the theme option and cleared the site cache and the toggle seems to be working correctly now.
Please clear your browser cache and check.Best regards,
MikeMarch 26, 2023 at 12:14 pm in reply to: Blog posts: Default Editor vs. Advanced Layout Builder #1402536Hi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
Mike -
AuthorPosts