Forum Replies Created
-
AuthorPosts
-
Hello,
You can try decreasing the width by adding the following CSS to the Enfold theme options > General Styling > Quick CSS:
@media only screen and (max-width: 767px) { #custom_html-4 img { max-width: 150px; } }
Regards,
YigitHello,
That is because you have the following custom CSS code:
@media only screen and (max-width: 989px) { .responsive #top #wrap_all #header { height: 50px !important; max-height: 50px !important; } }
Try changing it to the following:
@media only screen and (max-width: 989px) { .responsive #top #wrap_all #header { height: 90px !important; max-height: 90px !important; } }
Best regards,
YigitHello,
You can refer to this post https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area and add a widget area to the header.
Then, you can add an Image widget to your Header widget area and link it to an email ( https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#linking_to_an_email_address ).
Best regards,
YigitHello,
To use Enfold’s Mailchimp Signup element, please refer to this post: https://kriesi.at/documentation/enfold/mailchimp-signup/.
Enfold doesn’t have a built-in popup. If that’s something you’d like to see in Enfold, please feel free to request it at https://github.com/KriesiMedia/Enfold-Feature-Requests.
If you’d like to set up a popup, you’ll need to use a third-party plugin.
Regards,
YigitHi,
Please try using the code as the following:
function av_custom_inline_script() { // apply inputmode to datepicker wp_add_inline_script( 'jquery', " (function($) { $('.avia_datepicker').attr('inputmode', 'none'); $('body').on('av_resize_finished', function() { $('.avia_ajax_form + .ajaxresponse').scrollTo(-50); }); })(jQuery); " ); } add_action( 'wp_enqueue_scripts', 'av_custom_inline_script' );
Our developers addressed this issue and the fix will be included in the upcoming version.
Best regards,
YigitHey Fazius,
Thanks for reaching out to us.
You can purchase an Enfold license at https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990.
After that, you can generate a Personal Token ( https://kriesi.at/documentation/enfold/theme-registration/#how-to-generate-a-envato-personal-token ) and insert it in Enfold theme options to receive auto updates.
If that doesn’t work, you can try using the Envato Market ( https://www.envato.com/lp/market-plugin/ ) plugin to update the theme.
If that doesn’t work either, please update the theme via FTP ( https://kriesi.at/documentation/enfold/theme-update/ ).
I hope this helps. Let us know if you have any other questions.
Best regards,
YigitHey,
You have the following custom CSS code
#top #header_meta, #top #header_meta nav ul ul li, #top #header_meta nav ul ul a, #top #header_meta nav ul ul{background-color: #000000 !important;}
Please change it to the following:
@media only screen and (min-width: 768px) { #top #header_meta, #top #header_meta nav ul ul li, #top #header_meta nav ul ul a, #top #header_meta nav ul ul{background-color: #000000 !important;} }
If you have any other questions, please start new threads under Enfold subforum ( https://kriesi.at/support/forum/enfold#new-post ).
Regards,
YigitHi,
No, the size is incorrect. The favicon must be 48px square ( https://developers.google.com/search/docs/appearance/favicon-in-search#guidelines ).
Regards,
YigitHey,
You have a custom function in the functions.php file of your child theme that overrides the default link. Please remove the snippet from the functions.php file.
Best regards,
YigitHey BlutVampir,
Thanks for your help!
Just to note, the Twitter icon will be replaced with the new X icon in Enfold 5.6.7.
Regards,
YigitHey,
I checked your website on my iPhone 14 and I couldn’t reproduce the issue. I shared a screen recording in the private content field.
Were you able to reproduce this issue on newer iPhones?
Regards,
YigitHi Bianca,
Sure, we can help!
Please register to our support forum ( https://kriesi.at/support/register/ ) using your purchase code ( https://kriesi.at/wp-content/uploads/2013/09/registration_steps.jpg ).
Then, start a new thread in https://kriesi.at/support/forum/enfold#new-post, and share WordPress admin logins and FTP logins in the private content field so we can install Enfold for you.
Regards,
YigitHi Ilaria,
Thanks for reaching out to us!
I attached two different versions of the logo in the private content field. I hope one of these work for you!
Regards,
YigitHi,
Unfortunately, it isn’t possible to display the caption on the first click and navigate to the link on the second click on mobile. By default, the caption is displayed or hidden on hover.
If you’d like such feature in Enfold, please feel free to request it at https://github.com/KriesiMedia/Enfold-Feature-Requests.
Best regards,
YigitHey,
It looks like you replied to the wrong thread. You have a separate thread for that here https://kriesi.at/support/topic/customization-x-button/.
Regards,
YigitHi,
Please add the following to the bottom of Functions.php file of your child theme ( https://kriesi.at/documentation/enfold/child-theme/ ) or as a new snippet using the Code Snippets ( https://wordpress.org/plugins/code-snippets/ ) plugin:
add_action('ava_after_main_container', 'new_ava_after_main_container'); function new_ava_after_main_container(){ if(is_page(8779)){ echo '<div class="custom-back-button"><span class="av_font_icon av-lm7ig98k-65ba33b015b6384fd3901ea03a4bd5d6 avia_animate_when_visible av-icon-style- avia-icon-pos-left av-no-color avia-icon-animate avia_start_animation avia_start_delayed_animation"><a href="LINK_TO_YOUR_HOMEPAGE" class="av-icon-char" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></a></span></div>'; } }
You can use the “is_page” condition to target your Boats page. The “8779” is ID of the page you shared in your initial post. If you want to display the button on another page, you’ll need to update the “8779” in the code.
Then, you’ll need to update the “LINK_TO_YOUR_HOMEPAGE” in the snippet to the link of your homepage.
After that, add the following code to the bottom of the Quick CSS field in Enfold theme options > General Styling
.custom-back-button { position: fixed; top: 50px; left: 20px; z-index: 99; background-color: #1a1a1a; opacity: 0.7; padding: 90px 30px 40px 30px; } .custom-back-button .av_font_icon { font-size: 80px; margin: 0; }
You’ll need to use jQuery to hide/display the button when scroll down/up.
We cannot help you fine-tune this. If you need further assistance, please consider to hire a freelance developer for the task.
Best regards,
YigitHi,
You can see an example here https://kriesi.at/themes/enfold/portfolio/portfolio-ajax/.
Best regards,
YigitHey Marc,
Thanks for the information.
I added the following code to the bottom of the Quick CSS field in the Enfold theme options > General Styling tab and that helped
@media only screen and (max-width: 480px) { #rev_slider_3_1 a.rs-layer { max-width: none !important; } }
Please review your website.
Best regards,
YigitHi Charlie,
Thanks for reporting this! We will pass the information over to our developers so they can investigate :)
Edit: Please use the search form ( https://i.imgur.com/h7Uy8tw.png ) at https://kriesi.at/support. Issue seems to be with the search form in the header.
Regards,
Yigit- This reply was modified 1 year, 2 months ago by Yigit.
Hey Franz,
Thanks for reaching out to us!
That sounds great but we sell Enfold exclusively on Envato/ThemeForest and they don’t provide such a license. So, unfortunately, we cannot provide you with one.
While it’s not practical, I can email you or someone from your team the latest version of Enfold after each release. Let me know if that works for you!
Best regards,
YigitHi,
Please refer to this post https://kriesi.at/documentation/enfold/portfolio-grid/#creating-new-portfolio-items and check out the Ajax Portfolio Settings section. You can use Ajax Portfolio to display your boats on the same page.
Best regards,
YigitHi,
As noted in the favicon on the search page, updates can take a few days or longer to appear in search results.
Best regards,
YigitSeptember 4, 2023 at 7:17 pm in reply to: CSS to remove arrow “external link” icons on all target=blank links #1418100Hi,
The icon for external links may be for accessibility purposes but I’m not sure :)
Let us know if you have any other questions and enjoy the rest of your day!
Best regards,
YigitSeptember 4, 2023 at 4:46 pm in reply to: CSS to remove arrow “external link” icons on all target=blank links #1418079Hi,
I’m sorry, I thought you meant the arrow icon that shows up on linked images.
This arrow is coming from the WP External Links plugin. You should be able to disable it in plugin settings. Please feel free to contact plugin authors if you cannot find the option.
Or, you can add the following code to the bottom of the Quick CSS field in Enfold theme options > General Styling
#top .wpel-icon { display: none; }
Best regards,
YigitHi,
You can add a header widget area by referring to this post https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area, place a Custom HTML widget inside it, and add your custom button to it using HTML.
Unfortunately, such customization would be out of the scope of our support so we cannot help you with that.
Regards,
YigitSeptember 4, 2023 at 4:26 pm in reply to: support reactived – but not possible to ask support #1418073Hi,
Great! Let us know if you have any other questions or issues.
Best regards,
YigitSeptember 4, 2023 at 4:25 pm in reply to: CSS to remove arrow “external link” icons on all target=blank links #1418072Hey,
Please go to Enfold theme options > Advanced Styling, edit the Linked Image Overlay, and disable it ( https://i.imgur.com/3CsGvh4.png ).
Best regards,
YigitHey,
You can add a Masonry element to your page, select the categories you have for your boats, enable sorting in Masonry > Content > Sorting > Sortable?, and choose to display captions as a centered overlay in Masonry > Content > Captions > Element Title and Excerpt Styling.
Please make sure to choose one of the Perfect options in Masonry > Styling > Masonry Settings > Size Settings if you’d like to display the featured images in square format.
Best regards,
YigitSeptember 4, 2023 at 3:59 pm in reply to: support reactived – but not possible to ask support #1418066Hey,
Please go to https://kriesi.at/support/forum/enfold#new-post, insert your purchase code, and revalidate it. After that, you should be able to start new threads.
Let us know if that doesn’t work for you.
Cheers!
Yigit -
AuthorPosts