Forum Replies Created
-
AuthorPosts
-
October 30, 2018 at 2:28 am in reply to: Overview for really all ENFOLD elements at one place? #1027801
Hi,
I think those styles are not implemented yet. There are no style options in the widget. I’ll ask the dev team.
Best regards,
IsmaelHi,
Thanks for the info.
I’ve added this code in the Quick CSS field.
#top .sticky_placeholder { z-index: -1; }Please remove the browser cache prior to checking the page.
Best regards,
IsmaelOctober 29, 2018 at 3:56 pm in reply to: Postslider.php – how to switch title and category? #1027605Hey Gitte,
Thank you for using Enfold.
You can use this script to move the categories before the post title..
add_action('wp_footer', 'ava_custom_script_move_blog_info'); function ava_custom_script_move_blog_info(){ ?> <script type="text/javascript"> (function() { const posts = document.querySelectorAll('.slide-entry'); if( posts ) { posts.forEach( post => { const cat = post.querySelector('.blog-categories'); const title = post.querySelector('.slide-entry-title'); cat.parentNode.insertBefore(title, cat.nextSibling); }); } })(); </script> <?php }Best regards,
IsmaelHey Carsten,
Thank you for using Enfold.
Did you add this css code?
.avia-image-overlay-wrap a.avia_image .image-overlay { -webkit-transform: scale(1.5); -ms-transform: scale(1.5); transform: scale(1.5); }That css code enlarges the overlay.
Best regards,
IsmaelHey Papergena,
Thank you for using Enfld.
1-2.) You need to add the “Product Purchase Button” manually in the advance layout builder. It’s under the “Plugins Additions” panel.
3.) Did you create products variations?
Again, you may need to add the “Product Purchase Button” element if you’re using the advance layout builder for the variable product.
Best regards,
IsmaelHey heiratenmitstil,
Thank you for using Enfold.
It actually depends on the site’s specifications. The theme will automatically resize the logo based on the current header height value. You can also set the header height to a custom pixel value based on the size of the logo.
Best regards,
IsmaelHey Charlotte,
Thank you for using Enfold.
I don’t see anything unusual with that menu item. How do you want it to look?
Best regards,
IsmaelHi,
You should be able to change the breaking point with that same css code.
@media only screen and (max-width: 1500px) { .responsive #top #wrap_all .flex_column.av-break-at-tablet, .responsive #top #wrap_all .av-break-at-tablet .flex_cell { margin: 0px; margin-bottom: 0px !important; width: 100%; display: block; } }Best regards,
IsmaelHi,
Thanks for the update.
You can use this css code to increase the width of the lightbox container.
.mfp-iframe-holder .mfp-content { width: 100%; max-width: 80vw; }Best regards,
IsmaelHi,
Are you using an old API key from an old project? It might still be using the deprecated v2 version of the API. Please delete the project and then create a new one. Make sure that the url of the corresponding websites are specified in the Application Restrictions section.
If you are loading Maps JavaScript API from the deprecated v2 path with an old v2 key, you will get the NoApiKeys warning, even if you specified the key parameter. Please check the v2 to v3 upgrade guide and migrate your application to Maps JavaScript API v3.
// https://developers.google.com/maps/documentation/javascript/error-messages#no-api-keys
Best regards,
IsmaelHi,
Have you tried using the layer slider instead? Video backgrounds in the theme’s sliders are disabled by default and you will have to modify the core files in order to make it work, so it’s not recommended.
Best regards,
IsmaelOctober 29, 2018 at 8:06 am in reply to: "Slightly increase the image on hover" not workin after update to 4.5 #1027395Hi,
Thanks for the update.
Can we access the dashboard? Did you modify the shortcode file in your child theme? Please post the login details in the private field.
Best regards,
IsmaelOctober 29, 2018 at 8:04 am in reply to: Table of contents widget: how to show it on top of the content of a post or page #1027394Hi,
This is possible but you have to modify the single.php file.
Add this code:
$args = array ( 'name' => 'Displayed Everywhere', 'id' => 'av_everywhere', 'description' => '', 'class' => '', 'before_widget' => '<section id="avia_auto_toc-2" class="widget clearfix avia_auto_toc">', 'after_widget' => '<span class="seperator extralight-border"></span></section>', 'before_title' => '', 'after_title' => '', 'widget_id' => 'avia_auto_toc_custom', 'widget_name' => 'Enfold Child Table of Contents', ); $instance = array ( 'title' => 'Toc', 'exclude' => '', 'style' => '', 'level' => 'h1', 'single_only' => 1, 'indent' => 1, 'smoothscroll' => 1, ); $toc = new avia_auto_toc; $toc->widget($args, $instance);Above line 41:
get_template_part( 'includes/loop', 'index' );Yes, you can create a custom shortcode from that.
Best regards,
IsmaelHi,
Thanks for the update. You can edit the framework > php > class-htmlhelper, line 1570:
$locations = get_registered_nav_menus(); $menu_locations = array_flip( get_nav_menu_locations() );Replace it with:
$locations = get_registered_nav_menus(); $nav_menu = get_nav_menu_locations(); foreach($nav_menu as $key => $value) { unset($nav_menu[$key]); $nav_menu[$value] = $key; } $menu_locations = $nav_menu;Let us know if it helps.
Best regards,
IsmaelOctober 29, 2018 at 7:19 am in reply to: LayerSlider – How can First Slide appear only once? #1027389Hi,
Can we access the site? Have you tried deleting the white background? Or add the drone in the second slide and set it not to transition out.
Best regards,
IsmaelHey buero-36,
Thank you for using Enfold.
Use this css code to center align the alternate logo.
.av_header_transparency .logo img.alternate { opacity: 1; left: 50%; -webkit-transform: translate(-50%, 0); -ms-transform: translate(-50%, 0); transform: translate(-50%, 0); }Best regards,
IsmaelOctober 29, 2018 at 7:01 am in reply to: Testimonials not displaying properly after theme update #1027386Hi,
The testimonials shortcode has been modified in the child theme. Please get the latest version of the file and redo the modifications.
Best regards,
IsmaelHi,
I will ask the team to check this on Mac. Please wait for their response.
Best regards,
IsmaelHi,
Replace the “woocommerce_after_single_product_summary” with “woocommerce_single_product_summary” and set the priority from 19 to 65.
Best regards,
IsmaelOctober 29, 2018 at 6:43 am in reply to: Blog Grid View Not Showing Dates or Showing Incorrect Dates #1027383Hi,
Thanks for the update. Can we access your file server? Please post the FTP details in the private field.
Best regards,
IsmaelHi,
@locke95: The login token has expired. Can you generate another? We would like to check the dashboard again.Best regards,
IsmaelHi,
Thanks for the update.
I’ll ask the team to check it on Safari. Please wait for their response.
Best regards,
IsmaelOctober 29, 2018 at 5:48 am in reply to: Error in structure data (Error: SomeProducts is not a known valid target type) #1027378Hi,
Sorry about that. There was a minor syntax error in the code. I updated it. Please try it again.
Best regards,
IsmaelOctober 29, 2018 at 5:44 am in reply to: Multiple Enfold purchases and Token doesn't seem to work #1027377Hi,
1.) Have you tried to delete the old token and generate another? Please post the login details and the new API key in the private field, so that we can test it. Make sure that the Appearance > Editor panel is accessible and working. I will also tag @guenter to check the thread.
2.) If I am not mistaken, you can use a single token for every site that was purchased on the same account. Again, I’ll notify @guenter for confirmation.
Related threads:
// https://kriesi.at/support/topic/update-4-5-warning-imossible-to-update/
// https://kriesi.at/support/topic/enfold-4-5-theme-update-update-failed-download-failed-a-valid-url-was-not-pro/page/2/Best regards,
IsmaelHi,
That info takes me a to blank directory in your file server. Please make sure that it has access to the WP root directory or the public_html folder. You should contact your hosting provider.
Best regards,
IsmaelHi,
I can’t get inside the “bizdoktor” site. The login credentials are invalid.
The search function is working properly in the “herbalcenter” site.Best regards,
IsmaelHi,
Sorry for the late response. I had to disable the srcset attribute and set the Enfold > Shop Options > Product gallery to the default WooCommerce gallery to adjust the thumbnails. The gallery is using the “portfolio” thumbnail now.
Best regards,
IsmaelHi,
Did you add the custom css class attribute “av-full-slider-custom-size” to the full screen slider element? You have to enable the custom css class field first.
Please open a new thread for new topics and inquiries. We’ll close this one now.
Best regards,
IsmaelOctober 29, 2018 at 4:37 am in reply to: Checkout-Returning customer/create an account fields are disappearing in chrome #1027368 -
AuthorPosts
