Forum Replies Created
-
AuthorPosts
-
May 26, 2024 at 6:11 pm in reply to: Page Changes not visible with Enfold/AVIA in Combination with WordPress API #1446491
Hi,
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,
MikeHi,
Oh no, there are no silly questions, I hope that I didn’t sound like that, I was just saying where it came from.
Glad we were able to help and have a good weekend, 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 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 Yaphoon,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.main_color input[type='submit'].wpcf7-submit:hover { background-color: #e94a3f; color: #ffffff; border-color: #c7281d; }
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
feel free to adjust to suit.Best regards,
MikeMay 25, 2024 at 8:49 pm in reply to: Gutenberg / Spectra Full Width Not Working. Avia Advanced Layout Button Missing #1446092Hi,
For your pricing page try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.page-id-2429 .template-page.content.av-content-full.av-main-page { padding: 0; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
This color is from your browser, you will alos notice that it occurs on your logo and burger menu icon, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field to remove it:.av-active-burger-items, #header_main .logo, #header_main .av-burger-menu-main { -webkit-tap-highlight-color: transparent; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .av-active-burger-items:focus, #header_main .logo:focus, #header_main .av-burger-menu-main:focus { outline: none !important; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHey Julie,
Thank you for the link to your site, first I added the custom class click-to-close to your flipbox
Then I added this code to the end of your child theme functions.php file in Appearance ▸ Editor:function custom_click_to_close_flipbox_script() { ?> <script> jQuery(document).ready(function($) { $('.click-to-close .avia-icongrid-flipbox .av-icon-cell-item').hover( function() { var $flipback = $(this).find('.avia-icongrid-flipback'); // Check if the transform is rotateY(0deg) if ($flipback.css('transform') == 'matrix(1, 0, 0, 1, 0, 0)') { $(this).addClass('avia-hover'); console.log('avia-hover class added'); } } ); // Function to handle clicks outside the element $(document).on('click', function(event) { if (!$(event.target).closest('.click-to-close .avia-icongrid-flipbox .av-icon-cell-item').length) { $('.click-to-close .avia-icongrid-flipbox .av-icon-cell-item').removeClass('avia-hover'); console.log('avia-hover class removed'); } }); // Prevent clicks inside the element from triggering the document click handler $('.click-to-close .avia-icongrid-flipbox .av-icon-cell-item').on('click', function(event) { event.stopPropagation(); }); }); </script> <?php } add_action( 'wp_footer', 'custom_click_to_close_flipbox_script', 99 );
Now when you hover over the flipbox and it flips the class avia-hover is added to it so that it won’t flip back, until you click outside of the element, in which the class is removed.
please clear your browser cache and check.Best regards,
MikeHi,
When I check your site on my Android the Contact & Schedule mobile menu link works for me, it also works on my desktop emulating as a mobile device.Best regards,
MikeHi,
Thank you for the link to your site, I don’t know how to correct this in your vendor function, but this javascript will change the div into a H1.
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function cision_title_heading() { ?> <script> (function($){ var el = document.querySelector('.single-cision_block_post .entry-content-header .av-heading-wrapper'); el.outerHTML = '<h1 class="av-heading-wrapper ">' + el.innerHTML + '</h1>'; })(jQuery); </script> <?php } add_action( 'wp_footer', 'cision_title_heading', 99 );
Best regards,
MikeMay 25, 2024 at 6:18 pm in reply to: How can the gridrow content text be vertically centred to the icon? #1446042Hi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field, it will make the icon larger and center vertically:.iconbox_left .iconbox_content { display: grid; grid-template-columns: auto auto; grid-template-rows: 1fr; grid-auto-columns: auto 1fr; gap: 0px 0px; grid-auto-flow: column; align-items: center; justify-content: center; } .iconbox_left .iconbox_content .entry-content-header .iconbox_icon { height: 60px; width: 60px; font-size: 40px; top: 0; left: 0; align-content: center; } .iconbox_left .iconbox_content .entry-content-header { justify-self: center; } .iconbox_left .iconbox_content .iconbox_content_container p { margin-top: 0; }
Best regards,
MikeMay 25, 2024 at 4:59 pm in reply to: Background video in color section conflicts with Seedprod YouTube Feed plug-in #1446015Hi,
When I check your page I see errors for your videos
Refused to load the script ‘https://www.youtube.com/iframe_api’ because it violates the following Content Security Policy directive: “script-src-elem ‘self’ ‘unsafe-inline'”.
Refused to frame ‘https://player.vimeo.com/’ because it violates the following Content Security Policy directive: “frame-src ‘self’ blob:”.
I have not see this kind of error before but it seems that your plugin is causing a violation since you posted above the when it is disabled the videos work fine.Best regards,
MikeHi,
Thank you for your patience I see that you have both v5.2.1 & v5.7.1 with the same Theme Name so I’m not sure how you have it setup to enable which parent theme is used, I see that v5.2.1 is currently loading. I also see that you have a custom header.php & footer.php in the child theme, we do not recommend adding these files to your child theme, it is the most common reason for errors when updating. Try removing these and see if this solves. You could replacing these with the header.php & footer.php from the v5.7.1 parent theme, but then you would need to manually update these with each update. I recommend removing these and any customizations you wish to make should be done in your child theme functions.php instead.
If this doesn’t help then I would recommend looking at your custom avia-shortcodes files as it looks like you have created customized elements and I assume they were based on the older v5.2.1 elements:
The theme has changed a lot since then so you may need to review the elements from v5.7.1 and update your custom elements to suit.Best regards,
MikeMay 25, 2024 at 3:28 pm in reply to: Video fallback image causing enormous performance issues on mobile devices. #1445976Hi,
You will see that those items are from two of your plugin when you examine the file path:
/wp-content/cache/fvm/
/wp-content/plugins/ewww-image-optimizer/
and the last one is your google tag manager, so you will probably want to leave all of these as is, since you already stated that your site is even slower without these plugins.Best regards,
MikeHey Morgan,
Thanks for your patience, typically the feedback we receive is positive and once in a while we are asked to address small issues. We don’t have a WCAG 2.0 testing account or a screen reader to test with, but you are welcome to test our demo.Best regards,
MikeHey ajaxkls,
Thank you for your patience, I checked your site on Mac in Safari and the mp in the sidebar played correctly, I double checked in Windows and it played the same.
I only have a Mac desktop, are you seeing this error on a mobile device?
I know that some iPads & iPhones can not update their Safari browsers, try posting your device model and the device Safari version number so we can try to reproduce the error.Best regards,
MikeMay 23, 2024 at 9:46 pm in reply to: The Events Calendar – Recurring Events, every event visible #1445415Hey Robert,
Thanks for your patience, it seems that showing all of the recurring events would be the correct behavior.
I checked both pages but they seem to show the same items, the only difference that I see is that the ALB page is sorted by Date then title ASC, and the shortcode page is by Date title DESC, but both show all of the items by date.
Did you also update the events calendar version, perhaps the change is in the plugin? Are you using the Pro version?
Please try rolling back the plugin version and see of that helps.Best regards,
Mike -
AuthorPosts