Forum Replies Created
-
AuthorPosts
-
Hi,
We are happy that Ismael could help you out! :)
For your information, you can take a look at Enfold documentation here – https://kriesi.at/documentation/enfold/
If you have any other questions or issues, feel free to start a new thread under Enfold sub forum and we will gladly try to help you :)
Enjoy the rest of your day!
Best regards,
YigitHey,
Thanks for contacting us!
It was related to header.php file in your child theme. I updated header.php file on your child theme and moved your modifications into it. I attached the old header.php file in private content field below.
Please review your website :)
Best regards,
YigitHey Mabludo,
Thanks for contacting us!
Yes, you can use the images included in demos in your Enfold based websites :)
Let us know if you have any other questions and enjoy the rest of your day!
Best regards,
YigitFebruary 17, 2022 at 1:04 pm in reply to: portfolio masonry gallery load more button doesn't work #1341133Hi Nadja,
You are welcome! :)
For your information, you can take a look at Enfold documentation here – https://kriesi.at/documentation/enfold/
If you have any other questions or issues, feel free to start a new thread under Enfold sub forum and we will gladly try to help you :)
Enjoy the rest of your day!
Best regards,
YigitHi,
That was also related to your custom CSS.
I commented out following code in Appearance > Customize > Additional CSS
@media all and (max-width: 989px){ .av-burger-menu-main.menu-item-avia-special .av-hamburger{ right: 50px; } .html_burger_menu_active #top #wrap_all #menu-item-search > a{ height: 80px; top: 42px; right: 25px; } .html_burger_menu_active #top #wrap_all #header #avia-menu .av-burger-menu-main.menu-item-avia-special > a{ right: 70px; } }
and changed following code in Quick CSS field from
.av-hamburger span { top: 13px; }
to following
@media only screen and (min-width: 990px) { .av-hamburger span { top: 13px; } }
Please review your website :)
Best regards,
YigitHey Fabiana,
Thanks for contacting us!
1- Could you please point out the page where we can see the issue? Also, please go to Enfold theme options > Performance and disable CSS file merging and compression, save theme options, clear cache and check if that helps
2- You can add following code to bottom of functions.php file of your child theme (https://kriesi.at/documentation/enfold/child-theme/) in Appearance > Editor and change “LOGO TEXT” to your title :)
//------------------------------- // function - Text Logos //------------------------------- add_filter('avf_logo_final_output', 'avf_text_logo_final_output'); function avf_text_logo_final_output($logo) { $link = apply_filters('avf_logo_link', home_url('/')); $logotext = "LOGO TEXT"; $logo = "<span class='logo'><h1><a href='".$link."'>".$logotext."</a></h1></span>"; return $logo; }
If you have any other questions or issues, please register to our support forum – https://kriesi.at/support/register/ using your purchase code and start new threads under Enfold sub forum :)
Regards,
YigitHey,
You are currently using Enfold version 4.7.4. You can simply refer to this post – https://kriesi.at/documentation/enfold/theme-registration/#how-to-generate-a-envato-personal-token, generate a Personal Token and insert it in Enfold theme options to receive auto updates in WP dashboard. If that does not work, please create temporary admin logins and post them here privately.
You can register to our support forum – https://kriesi.at/support/register/ using your purchase code and start new threads under Enfold sub forum :)
Regards,
YigitFebruary 17, 2022 at 12:34 pm in reply to: Hotfix for fixed: problem with uploaded google fonts not working after 4.8.9.1 #1341116Hi @greenmarketers,
Thanks for your input! Would you like us to email you the latest dev version of Enfold which includes the fix? :)
Best regards,
YigitHi,
Could you please try de-activating all active plugins, clearing cache and check if that helps? It seems like a plugin conflict.
Best regards,
YigitHey,
Thanks for contacting us!
Please add following code to Quick CSS field in Enfold theme options > General Styling tab
@media only screen and (max-width: 480px) { .responsive .logo img { padding: 10px 0; } }
Regards,
YigitHi,
You are welcome! Let us know if you have any other questions and enjoy the rest of your day :)
Best regards,
YigitHi Krzysztof,
Thanks for contacting us!
Please add following code to Quick CSS field in Enfold theme options > General Styling tab
.with_frm_style .frm_radio input[type="radio"], .with_frm_style .frm_checkbox input[type="checkbox"] { display: inline-block !important; }
Regards,
YigitHey Veronika,
Thanks for contacting us!
Please refer to this post – https://kriesi.at/documentation/enfold/header/#transparent-header-on-mobile :)
Regards,
YigitFebruary 15, 2022 at 8:36 pm in reply to: portfolio masonry gallery load more button doesn't work #1340785Hey,
Thanks for contacting us!
Could you please try adding following code to bottom of Functions.php file of your child theme (https://kriesi.at/documentation/enfold/child-theme/) in Appearance > Editor
add_filter('avf_title_args', 'av_custom_tax_title', 10, 2); function av_custom_tax_title($args,$id) { if ('is_singular') { $args['title'] = get_the_title($id); } return $args; }
Regards,
YigitHi Veronika,
That is related to your custom CSS.
I commented out following codes:
In Enfold theme options > General Styling > Quick CSS.av-burger-menu-main.menu-item-avia-special .av-hamburger { padding: 25px; position: fixed; right: 10px; top:0; } .html_burger_menu_active #top #wrap_all #header #avia-menu .av-burger-menu-main.menu-item-avia-special > a{ width: 58px; position: fixed; right: 20px; top:40px; }
In Design > Customize > Additional CSS
.av-hamburger { margin-right : 20px !important ; padding-top : 20px !important ; padding-right : 3px !important ; }
Please review your website :)
Regards,
YigitFebruary 15, 2022 at 6:56 pm in reply to: portfolio masonry gallery load more button doesn't work #1340765Hey Nadja,
Thanks for contacting us!
We are sorry for the inconvenience. Our devs already fixed the issue and it will be available in upcoming version.
If you would like us to apply the fix on your installation, please create temporary admin logins and post them here privately :)
Regards,
YigitHey Andreas,
Thanks for contacting us!
The issue is related to WordPress 5.9 and it will be fixed in upcoming version. You can read more here: https://core.trac.wordpress.org/ticket/54902
As a temporary solution, I added following code to bottom of Functions.php file of your child theme
function ava_custom_css_admin_mod() { echo '<style> .wp-core-ui .attachments:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; } </style>'; } add_action('admin_head', 'ava_custom_css_admin_mod');
Please review your website :)
Best regards,
YigitHey Megumi,
Thanks for contacting us!
You can login on ThemeForest with the account you purchased Enfold and then go to Enfold’s ThemeForest page – https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990 to renew support – https://imgur.com/a/y9Uwdm3
After renewing support, you can login on our support forum and go to https://kriesi.at/support/forum/enfold#new-post to re-validate your purchase code :)
Regards,
YigitHi,
I have added the code to the bottom of Functions.php file and it helped with gallery sorting issue.
Could you please point out the Color Section element you would like to edit on your homepage? :)
Best regards,
YigitHi Veronika,
I realized that I made a typo. I edited my post and updated the code. Could you please try updated code? :)
Best regards,
YigitHi,
You are welcome! Let us know if you have any other questions and enjoy the rest of your day :)
Best regards,
YigitHey,
Please add following code to Quick CSS field in Enfold theme options > General Styling tab and adjust it as needed
#top #header .av-main-nav > li#menu-item-224 > a { padding-right: 30px; }
Default value is 13px :)
Regards,
YigitHi,
Thanks for contacting us!
Please add following code to Quick CSS field in Enfold theme options > General Styling tab
.avia_transform #top a:hover .image-overlay { opacity: 0.3 !important; }
By default opacity is set to 0.7. You can set it between 0-1
Regards,
Yigit-
This reply was modified 3 years, 5 months ago by
Yigit.
Hi,
You are welcome! Let us know if you have any other questions and enjoy the rest of your day :)
Best regards,
YigitHi,
Thanks for contacting us!
I added following code to Style.css file of your child theme
#top #header .av-main-nav > li.menu-item-language > a { padding: 0 4px; }
Please review your website :)
Regards,
YigitHi,
You can add it to the bottom of the file. If you would like us to add it for you, please create temporary admin logins and post them here privately :)
Best regards,
YigitFebruary 15, 2022 at 1:04 pm in reply to: Hotfix for fixed: problem with uploaded google fonts not working after 4.8.9.1 #1340683 -
This reply was modified 3 years, 5 months ago by
-
AuthorPosts