Forum Replies Created
-
AuthorPosts
-
April 19, 2016 at 8:26 am in reply to: advanced menu toggle on desktop seems to be an anchor tag #617207
Hi!
Please add the following to functions.php
function removeScrollToTop(){ ?> <script> jQuery(document).scroll(function() { jQuery("#advanced_menu_toggle").removeAttr("href"); jQuery("#advanced_menu_hide").removeAttr("href"); }); </script> <?php } add_action('wp_head', 'removeScrollToTop');
Best regards,
VinayHi!
As @rikard mentioned above Layer Slider is still throwing errors. The theme is not correctly re-installed or some files were not replaced correctly. this is the reason you are getting this error. Please upload a copy of the latest theme from themeforest on your server and give us the FTP details so we can take a look at this issue.
Cheers!
VinayHi!
We are working on your ticket please wait while we update the results here soon.
We added the below CSS
/* Center align 3 button*/ .inline-block { display:inline-block!important; margin:0 10px; } .align-center{ display:flex; justify-content:center; }
And the below shortcode.
[av_section min_height='' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' id='' color='main_color' custom_bg='' src='http://localhost/_proj/enfold/wp-content/uploads/2016/03/travel-banner-1-1500x430.jpg' attachment='376' attachment_size='featured' attach='scroll' position='top left' repeat='stretch' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' custom_class=''] [av_one_full first min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='' custom_class='align-center'] [av_button label='Click me' link='manually,http://' link_target='' size='small' position='center' icon_select='yes' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff' custom_class='inline-block'] [av_button label='Click me' link='manually,http://' link_target='' size='small' position='center' icon_select='yes' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff' custom_class='inline-block'] [av_button label='Click me' link='manually,http://' link_target='' size='small' position='center' icon_select='yes' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff' custom_class='inline-block'] [/av_one_full][/av_section]
Please check the page in private content. some custom class names are added to advance layout elements to buttons and 1/1 col to achieve this.
Cheers!
Vinay-
This reply was modified 9 years, 2 months ago by
Vinay.
Hey!
Please add the below code in functions.php
function modify_jquery() { if (!is_admin()) { wp_deregister_script('jquery'); wp_register_script('jquery', 'https://code.jquery.com/jquery-1.11.3.min.js'); wp_enqueue_script('jquery'); } } add_action('init', 'modify_jquery');
Regards,
VinayHi creatiffco!
Please add the below CSS in Enfold > General Styling > Quick CSS
@media only screen and (max-width: 1255px) { nav.main_menu {display:none !important;} #advanced_menu_toggle, #advanced_menu_hide {display:block !important; } }
Best regards,
VinayHi!
The site looks good on my end please see screenshot attached. Try to hard reload and empty browser cache and review the site again.
To do a hard refresh… First press F12 to open the Chrome Dev Tools then hold down Ctrl and click on the Reload button.
Best regards,
VinayHey ghettro!
Please add the below code in Quick CSS under general styling in Enfold options :)
.sub_menu .menu-item a { font-size: 20px!important; }
Best regards,
VinayApril 19, 2016 at 5:03 am in reply to: after updated the theme yesterday there are problems: not display some images #617066Hi!
@mindimer Glad everythign is working fine for you now.
@gruppmarketing I see that your site is loading fine and there are no errors in console. :) Please check the screenshot in the private content.It seem to be a caching issue on your end. Clear the cache and review the site it should work fine for you too… First press F12 to open the Chrome Dev Tools then hold down Ctrl and click on the Reload button.
Best regards,
VinayHi!
Please create a new ticket and point us to the link where we can see the example you have mentioned.
However Image caption on a featured image in a single post can be added in image options in media library but that will show up as an alt text this is useful in the case where you don’t want to highlight the caption but only use it for SEO purpose. Apart from this if you like the caption to be highlighted an alternate solution is to add a image element manually to the post using Advanced layout builder and set up a caption in image edit options.
Best regards,
VinayHey goldcube!
Everything worked fine on my end when I select different product options and check out. Please elaborate the issue.
Best regards,
VinayApril 18, 2016 at 3:06 pm in reply to: Color Section background Video isn't full width on load #616549Hi!
Sorry for the delay.
We checked for the issue again but it seem to happen by default. By default this should not happen unless some custom code is overwriting the default styles.
To find out what is causing the problem please disable any custom styles and check for the issue. If you still get the black space on the sides of the video please disable child theme and check with the enfold main theme and let us know.
Regards,
VinayHey!
The plugins may perform differently on different sites as each site share different settings and how it performs on the number of images a site has that is the reason we cannot vouch for any third party plugins.
Regards,
VinayHey condonpb!
Sorry for the delay.
We are working on your ticket please wait while we update the results here soon.You can use CSS to target 1st 2nd and so on… any number of hotspots.
Change the number in nth-child(1) to 2, 3 and so on… to target the second, third etc…
.av-hotspot-container-inner-wrap .av-image-hotspot:nth-child(1){ background: url(https://kriesi.at/wp-content/themes/kriesi/images/logo.png)50% 50%!important; }
Cheers!
Vinay-
This reply was modified 9 years, 2 months ago by
Vinay.
Hey!
We tried to access your site but google say’s the site contains malware
please get in touch with your hosting company and run a scan on the site to fix the issue and let us know so we can trouble shoot further.
Best regards,
VinayApril 18, 2016 at 1:35 pm in reply to: removing background image from colour section for mobile #616444Hey!
Thank you for your patience.
Please add the below code to functions.php
// Remove color section background function external_links(){ ?> <script> jQuery(window).load(function(){ if (jQuery(window).width() < 768) { jQuery("#bg-desktop-only").css("background-image", ""); } }); </script> <?php } add_action('wp_footer', 'external_links');
Add custom ID “bg-desktop-only” to the color section and add your background image.
The script works when the page is loaded for example if you load the page on mobile it will remove the bg image. But if you re-size the window it will not execute.
Regards,
VinayHi!
Sorry for the delay.
Mailchimp has changed a few things on their end. We would be interested to know what they have to say about this.
We will keep this ticket open so you can update it here and we can work on it further.
Best regards,
VinayHey!
To make a equal spaced menu like the attached screenshot
Remove the below code
.avia-menu.av-main-nav-wrap { margin-left: 15%; }
Add the below CSS in Quick CSS
/* Equal Spaced Menu */ .av-main-nav { display:flex; justify-content: space-between; }
Regards,
VinayHey endanight!
You can add custom ID for the color section and add css in Enfold > General Styling > Quick CSS
#custom-id { margin-top: 100px; }
If you have any questions please provide us the link to your site and a mockup of what you are trying to achieve so we can help you better.
Cheers!
VinayHey Manuel!
You can easily add the background image in enfold like the example site but to make it clickable you need to write some custom code. Add a background image and send us a link to your site and we will see what best we can do for you.
Best regards,
VinayHi!
We have reported this issue to Kriesi and it will be fixed asap but at the moment we do not have any ETA. Please bare with us a little more time.
in the meantime if you like to try out a workaround please follow this thread https://kriesi.at/support/topic/sidebar-navigation-highlight-anchor-when-user-scrolls/#post-605702
Regards,
VinayApril 18, 2016 at 7:40 am in reply to: All my header, portfolio item and some text content are missing after update! #616130Hi!
Glad we could help you :) We have put together some useful info about enfold theme please feel free to check it out here – http://kriesi.at/documentation/enfold/
Best regards,
VinayHey!
Glad we could help! We have put together some useful info about enfold theme please feel free to check it out here – http://kriesi.at/documentation/enfold/
Regards,
VinayHey!
Have you updated to latest version 3.5.2 ? It might be a caching issue on your end. The site looks good on my end please see screenshot attached. Try to hard reload and empty browser cache and review the site again.
To do a hard refresh… First press F12 to open the Chrome Dev Tools then hold down Ctrl and click on the Reload button.
Regards,
VinayHi!
Glad you got it resolved :) We have put together some useful info about enfold theme please feel free to check it out here – http://kriesi.at/documentation/enfold/
Regards,
VinayHi!
The site looks good on my end please see screenshot attached. Try to hard reload and empty browser cache and review the site again.
To do a hard refresh… First press F12 to open the Chrome Dev Tools then hold down Ctrl and click on the Reload button.
Best regards,
Vinay-
This reply was modified 9 years, 2 months ago by
Vinay.
April 18, 2016 at 5:54 am in reply to: Lost configuration in Enfold Child after updated version 3.5 #616034Hi Alexia R.!
Please share the link to the page where we can inspect the element in question and help you resolve it :)
If you notice that the enfold version is now updated to 3.5.2 and stills ee errors on the website then it is mostly caching issue on the browser. Try to hard reload and empty browser cache and review the site again.
To do a hard refresh… First press F12 to open the Chrome Dev Tools then hold down Ctrl and click on the Reload button.
Cheers!
VinayHey Jeff!
Your site show up fine on my end. However i see a js error in console it might be due to a plugin conflict.
To find the plugin in conflict please follow the below steps1. Goto plugins page > Deactivate all active Plugins
2. Updated WordPress and Enfold to latest version if you have not.
3. Activate one plugin at a time… refresh the page and check for the issue.
4. Make sure the plugins are all updatedRegards,
VinayHey!
As an alternate solution please try this plugin https://wordpress.org/plugins/easy-google-fonts/There was an error in the code as you removed “return $fonts;” we have corrected it and added in the function.php on top. Please review the site now. :)
Cheers!
Vinay-
This reply was modified 9 years, 2 months ago by
Vinay.
Hi!
@tremblayly Did you try the suggestion provided by @Yigit if you still have any issue please create a new ticket and share the link to the page where we can inspect the element in question and we might also need admin access to check for the issue :)Cheers!
VinayHey marcelhochman!
Are you using the latest version of enfold 3.5.2 ? Please share the link to the page where we can inspect the element in question and help you resolve it :)
Regards,
Vinay -
This reply was modified 9 years, 2 months ago by
-
AuthorPosts