Forum Replies Created
-
AuthorPosts
-
Hey Oliver,
Sorry for the late reply, please export your layerslider slide and link to it via DropBox. I would like to test it on my localhost to see if I get the same results.Best regards,
MikeHey jnightingale,
Sorry for the late reply, to add the “Shop Overview” sidebar to the shop page and the product archive pages, first, ensure that sidebars are enabled for archive pages:

Then edit line 99 in\wp-content\themes\enfold\archive.php
look for:$avia_config['currently_viewing'] = 'blog';and change to:$avia_config['currently_viewing'] = 'shop';Best regards,
MikeHey David,
Sorry for the late reply, hopefully, you mean that your test server is connected to the internet and can reach the demo server, if it can’t reach the demo server try adjusting your firewall to allow the connection.
You can’t just drop the demo files in place they need to be imported so they are in the database. The import files are at:\wp-content\themes\enfold\includes\admin\demo_files\band.xmlIf you download the images and place them in the correct folder you can then replace all of our urls with yours in the band.xml file and use it to import the files from your server instead of ours.
I can assure you that the demo server works fine, I typically import several demos a day to my localhost without issues.Best regards,
MikeHey vlamp,
I tested your code to create a sidebar with a hardcoded link in my child theme functions.php and it works for me:function my_register_custom_sidebars() { register_sidebar( array( 'id' => 'festival', 'name' => __( 'Festival Sidebar' ), 'description' => __( 'Custom sidebar for the festival pages' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '<div><a href="#">custom link goes here</a></div></div>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); } add_action( 'widgets_init', 'my_register_custom_sidebars' );
Please double check your code or include an admin login so we can take a look.Best regards,
MikeHey Cocoa,
To add a right sidebar to a woocommerce product page, please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:.single-product-main-image { width: 25%; } .single-product-summary { overflow: hidden; width: 45%; float: left; margin-right: 5%; } .single-product .sidebar { width: 25%; }Then add this code to the end of your functions.php file in Appearance > Editor:
add_action('init','ava534345953_init', 50); function ava534345953_init() { add_action( 'woocommerce_after_single_product_summary', 'avia_add_sidebar', 25); } function avia_close_image_div() { global $avia_config; echo "</div> "; } function avia_add_sidebar() { if(is_product()) { $avia_config['currently_viewing'] = "shop_single"; get_sidebar(); } }To add additional Avia Builder elements to a product page you will need to build the product page with the builder.
Best regards,
MikeHey wonderorsi,
Sorry for the late reply, I was able to login, but I couldn’t find your post, the link to it didn’t work.
What is the name of the post so we can search for it.Best regards,
MikeHi,
Sorry for the late reply, thanks for the link, please try disabling any cache, minifying, or lazyload plugins including Autoptimize, and disable Enfold Theme Options > Performance > JS & CSS file merging and compression then clear your browser cache and check.
If this doesn’t help, please include an admin login in the private content area so we can be of more assistance.Best regards,
MikeHey webprojektdonauwoerth,
Sorry for the late reply, to hide the theme options please try this css in the admin_head#avia_options_page { display: none !important; }This will show an empty page where the theme options were.
Best regards,
MikeHey ninasmith,
Sorry for the late reply, I don’t see a login to your site, I only see a password, please check.Best regards,
MikeHi,
It is the sort options:
“All
Life sciences
Mobile apps”
they are showing now, do you see them?Best regards,
MikeHi,
Sorry for the late reply, I was not able to login to your staging site, please check.Best regards,
MikeHi,
Sorry for the late reply, try adding this code to the end of your functions.php file in Appearance > Editor:function custom_skiplinks_script(){ ?> <script> (function($){ $(window).load(function() { $("#skiplinks a").click(function(){ setTimeout(function(){ $('#main').trigger("focus"); }, 200); }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_skiplinks_script');I tested by injecting this script into your site and pressing Tab to see the skiplink, then clicking the button or pressing Enter sets the #main as focus, pressing Tab again highlights the first slideshow button.
Since there is not an animation to alert the user that the page focus has changed, I put this together if you want to try it, it will create a white pulse from any links that are visible in the #main section, such as the two buttons on your home page.
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#main:focus > .container_wrap a { box-shadow: 0 0 0 rgba(255,255,255, 0.4); animation: pulse 2s 1; z-index: 9999 !important; position: relative; } @-webkit-keyframes pulse { 0% { -webkit-box-shadow: 0 0 0 0 rgba(255,255,255, 0.4); } 70% { -webkit-box-shadow: 0 0 0 100px rgba(255,255,255, 0); } 100% { -webkit-box-shadow: 0 0 0 0 rgba(255,255,255, 0); } } @keyframes pulse { 0% { -moz-box-shadow: 0 0 0 0 rgba(255,255,255, 0.4); box-shadow: 0 0 0 0 rgba(255,255,255, 0.4); } 70% { -moz-box-shadow: 0 0 0 100px rgba(255,255,255, 0); box-shadow: 0 0 0 100px rgba(255,255,255, 0); } 100% { -moz-box-shadow: 0 0 0 0 rgba(255,255,255, 0); box-shadow: 0 0 0 0 rgba(255,255,255, 0); } }After applying the css, Please clear your browser cache and check.
Best regards,
MikeHi,
Oh I see, sorry I misunderstood the issue, so please remove the code I posted earlier.
On my localhost I was able to publish a post using your title twice and the post showed fine, I see that you are using v4.7.2 so to rule out a bug in that version please try updating to v4.7.5
You will need to create an Envato Token to update, the API you are using will no longer work. Or you can update via FTP, but don’t try to overwrite the theme folder as it will leave old files behind and cause errors.Best regards,
MikeMay 31, 2020 at 7:22 pm in reply to: Switch secondary menu and telephone number on mobile and tablet #1218263Hi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)Best regards,
MikeHi,
The hotspot park image is a custom image map added via html code with custom hotspot javascript, this was created outside of Enfold. So yes, you could add this to your site, but you will have to find some software to do it or write the html yourself.
To have a button bounce please try this css, just replace the class.rev-btnwith the custom class of the button you use, as an example the class.rev-btnis the “See More” button on your slider now.
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:@keyframes fade { from { top:40px; } 50% { top:50px; } to { top:40px; } } @-webkit-keyframes fade { from { top:40px; } 50% { top:50px; } to { top:40px; } } .rev-btn { animation:fade 1000ms infinite; -webkit-animation:fade 1000ms infinite; }After applying the css, Please clear your browser cache and check.
Best regards,
MikeHi,
Thank you, I added the css and it seems to work, theΠροηγούμενοι Δήμαρχοιis hidden.
Please clear your browser cache and check.Best regards,
MikeHi,
For that page on the backend, I can see you have content, but I’m not seeing anything on the front end, is this intentional or a new issue?Best regards,
MikeHi,
Thanks for your explanation, I wrote this script to check the URL hash and then remove the menu highlighting class from one of the menu items. So for the is work please add hashes to your two menu items, for the sub-menu item “la-manga-club” under “VIP Teaching Weeks” change the hash to#vip, for the sub-menu item “la-manga-club” under “TOS Teaching Weeks” change the hash to#tos.
There are no anchors for #vip or #tos so the page will load at the top, but this will tell us which menu item the visitor clicked to get to the page.
Try adding this code to the end of your functions.php file in Appearance > Editor:function custom_landing_script(){ ?> <script> (function($){ $(document).ready(function(){ if (window.location.hash == '#vip'){ setTimeout(function(){ $("#top.page-id-497 #menu-item-6449").removeClass("current-menu-item"); },300); } else if (window.location.hash == '#tos'){ setTimeout(function(){ $("#top.page-id-497 #menu-item-1077").removeClass("current-menu-item"); },300); } else {} }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_landing_script');Then clear your browser cache and check.
Best regards,
MikeHi,
Thanks for the login, I was hoping to check your child theme structure and modified files, but your WordPress > Appearance > Editor is disabled, probably in yourwp-config.phpthere is this codedefine('DISALLOW_FILE_EDIT',true);if you are able to restore the theme editor or if you include FTP access we will be able to investigate further.Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)Best regards,
MikeHi,
Perhaps you have a previous css error, like a missing bracket, that is preventing this from working, please include an admin login in the Private Content area so we can check.Best regards,
MikeHi,
Sorry for the late reply, Try adding this code to the end of your functions.php file in Appearance > Editor:function max_title_length( $title ) { $max = 2000; if( strlen( $title ) > $max ) { return substr( $title, 0, $max ). " …"; } else { return $title; } } add_filter( 'the_title', 'max_title_length');I see that you tried some code, but perhaps it wasn’t the same as this.
Best regards,
MikeHi,
Glad to hear, sorry for the late reply and thanks for using Enfold.Best regards,
MikeHi,
Sorry for the late reply and thanks for the login, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#av-custom-submenu-1 li:hover,#av-custom-submenu-1 li:hover > a { background-color: #008000; color: #fff !important; } #av-custom-submenu-1 li.clicked,#av-custom-submenu-1 li.clicked > a { background-color: #008000; color: #fff !important; }Then add this code to the end of your functions.php file in Appearance > Editor:
function custom_script(){ ?> <script> (function($){ $(document).ready(function() { $("#av-custom-submenu-1 li").click(function() { $("#av-custom-submenu-1 li").not(this).removeClass('clicked'); $(this).addClass('clicked'); }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_script');Then clear your browser cache and check.
Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)Best regards,
MikeHey JMMCRIADO,
Do you want the widget in the footer? Please include an admin login in the Private Content area so we can take a look.
Do you have certain code to create the TripAdvisor widget?Best regards,
MikeHi,
Thanks for the link, to make the featured image not clickable on a single post you could try this css in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#top.single .big-preview.single-big { pointer-events: none !important; }After applying the css, Please clear your browser cache and check.
Best regards,
MikeMay 31, 2020 at 12:39 am in reply to: Switch secondary menu and telephone number on mobile and tablet #1218095Hey fcp,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:@media only screen and (max-width: 767px) { #header_meta > .container { display: flex !important; flex-wrap: wrap !important; } #header_meta > .container > .sub_menu { order: 2; } #header_meta > .container > .phone-info { order: 1; } }After applying the css, Please clear your browser cache and check.
Best regards,
Mike -
AuthorPosts

