Forum Replies Created
-
AuthorPosts
-
February 18, 2023 at 11:08 pm in reply to: Mobile view transparent glassy header – columns move up under the menu #1398499
Hey studiovene,
Thanks for the link to your site, it looks like you have this custom css:@media only screen and (max-width: 767px){ .responsive #top #main { padding-top: 0 !important; margin: 0; } } .html_header_transparency #main { padding-top: 0 !important; }This is interfering with the #main top padding for mobile devices, try removing this custom css.
Best regards,
MikeHey jeel147,
Please try this css:@media only screen and (min-width: 1024px) { #full_slider_1 .caption_left .slideshow_caption { left: 40px; } }please adjust the number to suit and clear your browser cache and check.
Best regards,
MikeHey jeel147,
Please try this css:.avia_textblock ul li::marker { color: red!important; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHey doug123,
For your icon the font family was tiktok and the icon number was ue802
This is the corrected code:function avia_add_custom_icon($icons) { $icons['tiktok'] = array( 'font' =>'tiktok', 'icon' => 'ue802'); return $icons; } add_filter('avf_default_icons','avia_add_custom_icon', 10, 1); // Add new icon as an option for social icons function avia_add_custom_social_icon($icons) { $icons['TikTok'] = 'tiktok'; return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);I also added the css for you:
#top #wrap_all .av-social-link-tiktok:hover a, #top #wrap_all .av-social-link-tiktok a:focus { background-color: pink; color: white; }please clear your browser cache and check.
Best regards,
MikeHey Createve_Solutions,
This is because your logo shifts for the text menu with this css:@media only screen and (min-width: 780px){ #header .logo { left: 48%; transform: translateX(-40%); z-index: 999; } }but your text menu doesn’t show until 990px, so the above css should be changed to at least 990px and not 780px.
But if you look at 990px your text menu is too large for the screen at 990px so I would recommend not showing the text menu until 1440px when it will fit correctly.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,
MikeFebruary 18, 2023 at 10:11 pm in reply to: Hover color in portfolio categories /portfolio grid #1398493Hey tom_on_wheels,
Thanks for the link to your site to change the color of the portfolio grid links on hover please try this css:.main_color #js_sort_items a:hover{ color: #499F99; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHey tom_on_wheels,
Thanks for the link to your site, instead of font-family: ‘Ubuntu Condensed’, sans-serif;, try font-family: ‘ubuntu-condensed’, sans-serif;
After applying the css, please clear your browser cache and check.Best regards,
MikeHey tom_on_wheels,
Thanks for the link to your site, instead of font-family: ‘Ubuntu Condensed’, sans-serif;, try font-family: ‘ubuntu-condensed’, sans-serif;
After applying the css, please clear your browser cache and check.Best regards,
MikeHi,
Sorry, we don’t have a chat option, please check your email and reset your password then once you log in, open a new thread with the url to the page in question and a admin login so we can investigate.
The contact form email is not appropriate for support questions, if you didn’t get the password reset email, please let us know and we will send it again, or check your spam folder.Best regards,
MikeHi,
Glad to hear that you have this sorted out, and thanks for sharing the solution. 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 your function on my demo site for the top menu avia2 for my demo site the patient page portfolio and all of it child pages show [‘menu’] = ’11’; and for the parent page elements and all of it child pages show [‘menu’] = ’36’;, all other page show [‘menu’] = ’37’;.
This is the code that worked for me:function my_custom_wp_nav_menu_args( $args = '' ) { if($args['theme_location'] === 'avia2') if ( is_child( 'portfolio' ) ) { $args['menu'] = '11'; } elseif ( is_child( 'elements' ) ) { $args['menu'] = '36'; } else { //* otherwise set the default as defined in the enfold-child theme as Main Menu $args['menu'] = '37'; } return $args; }try using the menu IDs instead of the names, that is the only difference I see from your code.
This is the full code I used:function register_my_menus() { register_nav_menus( array( 'patient-menu' => __( 'Patient Menu' ), 'HCP-menu' => __( 'HCP Menu' ) ) ); } add_action( 'init', 'register_my_menus' ); /** * Child page conditional * @ Accept's page ID, page slug or page title as parameters * https://sridharkatakam.com/useful-functions-checking-pages-sub-pages-wordpress/ */ function is_child( $parent = '' ) { global $post; $parent_obj = get_page( $post->post_parent, ARRAY_A ); $parent = (string) $parent; $parent_array = (array) $parent; if ( in_array( (string) $parent_obj['ID'], $parent_array ) ) { return true; } elseif ( in_array( (string) $parent_obj['post_title'], $parent_array ) ) { return true; } elseif ( in_array( (string) $parent_obj['post_name'], $parent_array ) ) { return true; } else { return false; } } add_filter( 'wp_nav_menu_args', 'my_custom_wp_nav_menu_args' ); /** * CManu switch based on page/parent relationship for HCP, Patient or others * @ Accept's page ID, page slug or page title as parameters * PJE – RESOLVE */ function my_custom_wp_nav_menu_args( $args = '' ) { if($args['theme_location'] === 'avia2') if ( is_child( 'portfolio' ) ) { $args['menu'] = '11'; } elseif ( is_child( 'elements' ) ) { $args['menu'] = '36'; } else { //* otherwise set the default as defined in the enfold-child theme as Main Menu $args['menu'] = '37'; } return $args; }Best regards,
MikeFebruary 18, 2023 at 8:44 pm in reply to: Dots Menu (Fullwidth submenu element) with current class #1398481Hi,
Thanks for the link to your site but I don’t see a Fullwidth submenu element on your homepage, is it on a different page?
I see that you linked to the Dots Menu documentation I checked a few of your pages and didn’t find this?Best regards,
MikeHi,
Thanks for your patience, I assume that you are following the instructions here for loading Google fonts locally. If not please try these steps, if this doesn’t work for you please include an admin login so we can examine the issue.Best regards,
MikeHi,
Thanks for the login, I see that on your contact form was hidden and your cookie settings didn’t reload the page when the user accepted the cookies, I set this for you and when testing in a incognito window the ReCAPTCHA shows:

I hid the contact form for you again after testing.
Please check.Best regards,
MikeHey sarthakchoudhary,
Thanks for your question, the animated icons will not work by uploading them to the Enfold Theme Options ▸ Import/Export ▸ Iconfont Manager because the theme uses icon fonts, which is different but you could add the animated icons with css, please see this solution for using gif’s.Best regards,
MikeHi,
Thanks for your feedback, unfortunately in the past, OVH has told their customers that they will not change the PHP settings, I asked because OVH disables the set_time_limit() function used by WordPress so the import function won’t timeout, we use the basic WordPress import function, nothing fancy.
If you must use OVH and can’t use a webhost that enables basic PHP functions, try importing your demo on a localhost install and using the Duplicator plugin to migrate/clone it to your OVH host.Best regards,
MikeHey sitibus,
Thank you for your patience and the links to your sites, to change the sidebar background color & the sidebar heading font & font-color, and the list item color and the link color add this css to your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.sidebar { background-color: #3d3d7d; } .sidebar .widgettitle { font: bold 13px/15px Georgia, "Times New Roman", Times, serif; color: #ffd800; } .sidebar li, .main_color .sidebar li a { font: 11px/18px Georgia, "Times New Roman", Times, serif; color: #fff; }After applying the css, please clear your browser cache and check.
Please see the screenshot in the Private Content area of the expected results.Best regards,
MikeHi,
Thanks for the link to your site but your login page gives me a Error 403 – Forbidden error, do you have a custom login page or are you blocking users by IP?
If so please disable your security plugins so we are sure this is not also affecting your Mailerlite.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,
Thanks for the login, I see that you are getting the error:cURL error 28: Connection timed outare you using the webhost OVH?
This error could be because your PHP time limit is low at 165, ask your webhost to change to about 300
This could also be because your webhost is blocking our domain: kriesi.at plase ask your webhost to check and possibly white list.
If this doesn’t help try our documentation for manually installing the demo.Best regards,
MikeHey Gagik Vardanian,
Thanks for your question, I see your email address is for the user “webbxnu” I have sent the Password reset link, please check your email.
Then once you login, open a new thread with the url to the page in question and your question.Best regards,
MikeHi,
Thanks for the login, please go to the slider then click the slide, then go to the advanced tab ▸ overlay and remove or change:

If you need further help please open a new thread as the email contact form is not appropriate for support. Thanks for understanding.Best regards,
MikeHi,
Glad to hear this helped, I have not seen this error before, but the first one is for the core WordPress functions.php, and the second is for the plugin really-simple-ssl
I assume that your core WordPress is up-to-date? Try disabling your plugins.
If this doesn’t help please include an admin login so we can check.Best regards,
MikeHi,
Thank you for your patience, I didn’t see a test page on your site for this issue so I created one linked below, I then added a text element with some of the text in red bold:

when I publish and checked the frontend it shows as red bold:

please check and try your method on this test page, perhaps you are doing something different that I didn’t understand.Best regards,
MikeHi,
Thank you for your patience, Please try this code in the General Styling ▸ Quick CSS field:.mfp-content .mfp-title { display: none; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHey Diana,
Thank you for your patience, I don’t have an actual tablet but I tested on browserstack.com with a remote iPad 12 and on my Mac in Safari responsive design mode emulating an iPad and the background image showed, but I see that the background image is fixed, try changing to scroll and see if you get the same issue, I think I recall a Safari issue with fixed or parallax images a while back. What version of iPad are you using and what browser, have you tried other browsers?Best regards,
MikeHey satucker,
Thank you for your patience, I found a javascript error in the browser console
Uncaught SyntaxError: Unexpected token '!'
Since the javascript was minified I couldn’t tell where it was coming from, once I disabled your Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and cleared your Purge SG Cache the error was solved, including your other images on the page.
I don’t see any custom javascript on your site and I don’t see the error now so I assume that the two caches were double minifying causing an error, but I’m not sure.
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,
Mike -
AuthorPosts
