Forum Replies Created
-
AuthorPosts
-
Hey tonyiatridis,
Thanks for the link to your page, as I read your post I see that you say about the hot topics: ideally I want them to disappear when on page 2 and so on
so the solution is to hide the Hot Topics section when pagination is used.
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function hide_section_when_paging() { ?> <script> (function($){ if (window.location.href.indexOf("avia-element-paging") > -1) { $("#top.home #topics").css({ 'display': 'none' }); } else {} })(jQuery); </script> <?php } add_action('wp_footer', 'hide_section_when_paging');Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
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,
MikeDecember 17, 2022 at 5:08 pm in reply to: Website crashing when I activate Enfold Version 5.2.1. #1376484December 17, 2022 at 4:55 pm in reply to: Google Maps JavaScript API warning retired-version #1376483Hey Jaro,
I have reported this to the Dev Team and they will probably update in the future, if they have any specific comments I will report here.
Thank you for your patience and for using Enfold.Best regards,
MikeDecember 17, 2022 at 4:41 pm in reply to: Legacy javascript Array.isArray and plugin-transform-classes on mobile #1376480Hi,
Please see this StackOverflow thread it seems this is a known limitation since 2016 that jQuery can’t add support to passive listeners.
I tested the solution it recommends:jQuery.event.special.touchstart = { setup: function( _, ns, handle ) { this.addEventListener("touchstart", handle, { passive: !ns.includes("noPreventDefault") }); } }; jQuery.event.special.touchmove = { setup: function( _, ns, handle ) { this.addEventListener("touchmove", handle, { passive: !ns.includes("noPreventDefault") }); } }; jQuery.event.special.wheel = { setup: function( _, ns, handle ){ this.addEventListener("wheel", handle, { passive: true }); } }; jQuery.event.special.mousewheel = { setup: function( _, ns, handle ){ this.addEventListener("mousewheel", handle, { passive: true }); } };as a WPCode Code Snippet:

and it passed the Pagespeed report:

Please give this a try.Best regards,
MikeHi,
Glad to hear that you have this sorted out, both sites look alike to me.
Unless there is anything else we can assist with on this issue, shall we close this then?Best regards,
MikeHi,
You will need to log in to your Theme Forest account in order to create a Token it can not be created if you can not log into your Theme Forest account.
You can also download the latest version of the theme from your Theme Forest account without creating a Token.
If you have forgotten your Theme Forest login Theme Forest can help you create a new password and login.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,
This is because you are using a boxed layout, the space on the right and left is the background of the page.
Try this css:#top #main .container_wrap_first.sidebar_right { background: linear-gradient( to right, #ffffff 0%, #ffffff 50%, #F1F7F8 50%, #F1F7F8 100% ); } #top #main main { background: #fff; }After applying the css, please clear your browser cache and check.
Best regards,
MikeDecember 16, 2022 at 1:26 pm in reply to: enfold saving didnt work! please reload the page and try again! #1376405Hi,
Ok, 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,
Try deactivating the Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and activating Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files and the clearing your browser and any plugin cache.
If you continue to have trouble, please create a new staging copy of your main site with no child theme and post the admin login in the Private Content area so we can add the child theme and import the theme settings to see why it is not working as expected.Best regards,
MikeHi,
Try deactivating the Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and activating Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files and the clearing your browser and any plugin cache.
If you continue to have trouble, please create a new staging copy of your main site with no child theme and post the admin login in the Private Content area so we can add the child theme and import the theme settings to see why it is not working as expected.Best regards,
MikeHi,
Read about using a Child Theme, when you install the child theme and go to the theme import / export options it will ask you if you want to import the parent theme settings, then all settings and customizations will be added to the child theme.
If this is for a live site and you are worried about the outcome, try first creating a staging site to test on, most cPanel webhosts have a staging site option, some in the dashboard:

Others add the option in the Softaculous WordPress Management

There may be other staging site options in different cPanel servers, these are the two that I have seen.Best regards,
MikeHi,
PHP 7.4 is the minimum version for WordPress, the error message above is pointing to the plugin all-in-one-wp-migration receiving an error with PHP 7.3
There is a good chance that other plugins won’t support PHP 7.3.
You may need to run the website that requires PHP 7.3 on a host by its self.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,
MikeHi,
Correct you will need to use a child theme, your PHP mod looks good.
Unless there is anything else we can assist with on this issue, shall we close this then?Best regards,
MikeHi,
To add dashes befor and after your subtext try changing this line in your code:
$subtext = "<span class='subtext'>$subtext</span>";
to this:
$subtext = "<span class='subtext'>-" + $subtext + "-</span>";Best regards,
MikeHi,
Please try this css to change the size of the date:#top #wrap_all .all_colors h2.av-milestone-date { font-size: 23px; }adjust the number to suit.
After applying the css, please clear your browser cache and check.Best regards,
MikeHi,
You will want to use a child theme otherwise the modification will be lost with each update.Best regards,
MikeHi,
hgschaffler Please open 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. It gets confusing when we are working on more than one site per thread. Thanks for understanding.Best regards,
MikeHi,
As I understood you had already modified the loop-search.php to get your current results, correct?
The change is the same line of code with a link added, isn’t it? Please check your modification carefully.
Please copy your php file to DropBox and link to it so we can check, also include the css needed for the customization in your DropBox link.Best regards,
MikeHi,
To add a link to the image please see this thread that Ismael linked to above, Guenni007 shared adding a link.Best regards,
MikeDecember 15, 2022 at 1:49 pm in reply to: Error: Trying to access array offset on value of type null #1376267Hi,
Thank you for your patience, the Dev Team has replied that the only way to disable the hidden element “avia-loader-nonce” from the post type is to hack the core files:
config-templatebuilder\avia-template-builder\php\class-template-builder.php functions visual_editor() and handler_wp_dbx_post_sidebar()
but this is part of all ajax security checks – so this will most likely to break everything.
So unfortunately this is not something that we can do.Best regards,
MikeDecember 15, 2022 at 1:27 pm in reply to: Woocommerce checkout and cart looks just wrong on mobile #1376262Hi,
Glad to hear that you have found a solution, the reason the Dev Team doesn’t show these fields on mobile is because it takes up too much room on mobile, and not all users want this cramped layout. But I will bring this to the attention of the Dev Team as a feature request for them to consider.
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







