Forum Replies Created
-
AuthorPosts
-
May 28, 2024 at 10:28 pm in reply to: The Events Calendar – Recurring Events, every event visible #1446880
Hi,
As I understand the issue was because the theme has a max limit of 100 events, is this correct?
You say that you are using the Pro version and that it has a setting to disable this in the plugin, this would not change the theme options.
Unfortunately I don’t have a Pro version and I can’t read the text in your screenshot.
If I understand correctly can you switch the English and take another screenshot and I will submit to the Dev Team for review.
As I understand now this is solved, but if the Dev Team could address this setting it would be a benefit, so if you could submit a screenshot I will post to the Dev Team.
If I have misunderstood please explain further.Best regards,
MikeMay 28, 2024 at 10:17 pm in reply to: New page – starting page frontend not visible correct #1446877Hi,
Glad to hear that you have this sorted out, it is very strange that their support couldn’t help and instead wanted to sell you a service in order to “disable it”, nonetheless glad that you have it 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,
MikeHey divinecurio,
We can make some of your images fullwidth on mobile, to ensure that this only effects the images that you want please add a custom class to those images ▸ fullwidth-on-mobile, then add this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (max-width: 767px) { .fullwidth-on-mobile .avia-image-overlay-wrap { width: 100vw !important; position: relative !important; left: calc(-50vw + 50%) !important; } }
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
After applying the css, please clear your browser cache and check.Best regards,
MikeMay 28, 2024 at 12:01 pm in reply to: Search box background color CSS no working after update #1446832Hey Lupine-andy,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top .header_color #s { background-color: #ffffff; }
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 Aeroviews,
I believe that you are referring to this section:
Please include an admin login in the Private Content area so we can check.
Have you tried editing the page in the Avia Layout Builder Debugger tool under the ALB area?
Sometimes editing the code directly can cause issues if fragments are left behind, the builder will then try to automatically fix the broken page, unsuccessfully, in this case you may need to build a new page.
If you didn’t do this and you don’t have any code block elements with broken shortcode or HTML on the page then perhaps it will be an easy fix, we will be happy to take a look.Best regards,
MikeHey northorie,
Thank you for the link to your site, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (max-width: 767px) { #top.home .flex_column.av_three_fifth.avia-builder-el-17 { transform: scale(1); } }
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
After applying the css, please clear your browser cache and check.Best regards,
MikeHey GaWi,
Thank you for the link to your site, I believe that this is due to server caching: IONOS Performance,
So you need to disable the built in cache or the CDN that is showing the Twenty Twenty-Four theme.
You will need to ask your host to help you as it must be done from the host backend, not from the WordPress site.BTW, I disabled your Classic Editor plugin since this is a theme option and you don’t need the plugin.
Best regards,
MikeHey marco593,
The doughtnut chart will size itself to the space that you place it in, and the screen size.
Please create a test page so we can see what you are tring to achieve so we can advice, but when I test on my site changing the doughtnut chart width will resize it.
So for example if you what it 50% smaller on mobile use a media query@media only screen and (max-width: 767px) { .av-chart-doughnut { width: 50%; } }
or you can set a exact width
@media only screen and (max-width: 767px) { .av-chart-doughnut { width: 100px; } }
If this doesn’t help please create a test page so we can see what you are tring to achieve so we can advice.
Best regards,
MikeMay 27, 2024 at 1:10 pm in reply to: Gutenberg / Spectra Full Width Not Working. Avia Advanced Layout Button Missing #1446707Hi,
It looks like your Chatgpt 4o css is not working well, please remove it all and once the table is back to normal explain what is not right.
The break points that you talk about should be the default break points.Best regards,
MikeMay 26, 2024 at 11:27 pm in reply to: Avia Layout Builder uneditable on some but not all pages #1446617Hey craig374,
To use two columns you can add the image as a background and select Equal Height and No Space Between Columns and set a min height
I added a background color to the second columns to show that there is no space between them, the space on the right and left is the page content width:
another way would be to use the Grid Row element and add your background image and the min height, this is a full width element so it fills the screen:
Best regards,
MikeMay 26, 2024 at 8:20 pm in reply to: customizing the button shortcode in footer widget custom html object #1446549Hey Tanja,
Try using the shortcode wand
which will let you use the button element to build your button like your others so they match.
Or you could use Avia Layout Builder Debugger so you can view the shortcode of the other buttons.
The shortcode that you used above doesn’t have all of the attributes for the colors, size, etc.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,
MikeMay 26, 2024 at 7:49 pm in reply to: How can the gridrow content text be vertically centred to the icon? #1446538Hi,
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,
Unfortunately pseudo-elements can not be links so we will need to start over, so remove the other css. I couldn’t login so try to follow these steps.
If you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
and ensure that it is activated, then add this code and save.function custom_floatingBadge_script() { ?> <script> document.addEventListener('DOMContentLoaded', function() { var badge = document.createElement('div'); badge.id = 'floatingBadge'; badge.className = 'floating-badge'; document.body.appendChild(badge); badge.addEventListener('click', function() { window.open('https://www.example.com', '_blank'); // Replace with your desired URL }); }); </script> <?php } add_action( 'wp_footer', 'custom_floatingBadge_script', 99 );
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted, and then change the link to suit.
Then add this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.floating-badge { position: fixed; right: 10px; bottom: 10px; width: 170px; height: 100px; background-image: url(https://www.idea-innovation-consulting.com/wp-content/uploads/2024/05/ISO_9001_farbe_de.png); z-index: 99; background-size: contain; background-repeat: no-repeat; cursor: pointer; }
Best regards,
MikeMay 26, 2024 at 6:58 pm in reply to: Page Changes not visible with Enfold/AVIA in Combination with WordPress API #1446515Hi,
Glad to hear that you have this sorted out, we will leave this open for now in case someone has another idea. Thank you for using Enfold.Best regards,
MikeMay 26, 2024 at 6:33 pm in reply to: widget ordering ( f.e.”Displayed Everywhere” widget area on top) #1446502Hey Guenter,
It looks like the avf_sidebar_position is a filter for either a “right side” or “left side” position, not for the oder of the dynamic sidebars.
The only way I could find was to add a custom sidebar.php to your child theme by moving lines 135-139 to line 77
Otherwise perhaps a new filter could be added try submiting a Github Feature RequestBest regards,
MikeMay 26, 2024 at 6:11 pm in reply to: Page Changes not visible with Enfold/AVIA in Combination with WordPress API #1446491Hi,
The pagination link doesn’t have a rel=canonical, only the page, and this is not a new page so it would not change.
So you would like to see the page change the canonical when the pagination is used, what do you think that it should change to.
Please explain an I will open a Github Feature Request for you, if you don’t want to.Best regards,
MikeHey birte5,
Thanks for your patience, with I check your video “Roar”, linked below, on Android mobile the video will play in screen with the fullscreen button, this video is not autoplay:
I don’t have a iPhone so I don’t know if it is different. Please check this page and see if this is the same for you.Best regards,
MikeHey Anne,
I believe that you are referring to this highlighting button:
These will work on pages created with the WordPress Editor but not on pages created with the Advanced Layout Builder because it can not highlight text inside of elements.
I don’t know of any other plugins with this feature.
For some features you will need to ensure that the Enfold Theme Options ▸ SEO Support ▸ Preprocessing Shortcodes In Header ▸ allow to preprocess shortcodes is enabled.
Best regards,
MikeMay 26, 2024 at 4:56 pm in reply to: Page Changes not visible with Enfold/AVIA in Combination with WordPress API #1446459Hey terra3110,
Thanks for your question the Dev Team writes:
Updating only page content for an ALB page does not work because the ALB content is stored in post meta and on saving an ALB post page content is updated from that post meta.Best regards,
MikeHey Guenter,
Thank you for sharing, I left the page empty so the visual sitemap is centered in the page.
But my install automatically creates /wp-sitemap.xml like this https://kriesi.at/themes/enfold-2017/wp-sitemap.xml
will Google Search Console not accept that link?Best regards,
MikeHi,
Thanks for the link, it recommends using ?page=n for pagination, this is their example:
we use ?avia-element-paging=n it is the same, it doesn’t have to be the word page.
If you feel this is still an error you can submit a request to the Dev Team in their Github Feature Request for the Dev Team to review it.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,
Glad to hear that you have this sorted out, 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,
MikeMay 26, 2024 at 1:29 pm in reply to: Avia Layout Builder uneditable on some but not all pages #1446409Hey JoeSurf,
Thank you for the link to your site while checking your pages I found this error:
Deferred exception: $(…).pointer is not a function TypeError: $(…).pointer is not a function
which seem to be from your Classic Editor so I disabled it, since you already have this option in the theme settings.
All of your pages have these errors even if the backend loads:
https://my.yoast.com/api/downloads/file/morphology-v2?plugin_version=11.5&site=https%3A%2F%2Fwww.yoursite.com 403 (Forbidden)
https://www.yoursite.com/wp-admin/admin-ajax.php 500 (Internal Server Error)
so for the Yoast plugin I guess you need to activate your Yoast SEO Premium subscription, and that would solve the first error
But I don’t know what is causing the /admin-ajax.php 500 (Internal Server Error) error.
Try enabling WP Debugging on your site and this might help track this down.Best regards,
MikeMay 25, 2024 at 11:05 pm in reply to: Correct way to render excerpt on custom post template #1446146Hi,
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