Forum Replies Created
-
AuthorPosts
-
Hi,
The advance layout builder is still not compatible with Gutenberg and I don’t think it will ever be because they are completely different. You will, however, have the option to choose between the theme’s builder or Gutenberg.
Best regards,
IsmaelHi,
Thanks for the update. You can use this css code to adjust the map background size.
.avia-google-map-container { background-size: contain !important; }
Did you opt out of the maps via the privacy consent message? Try to remove the cookies in your browser.
Best regards,
IsmaelHi,
Great! Glad we could help!
Please take a moment to review our theme and show your support https://themeforest.net/downloads
Don’t forget to bookmark Enfold Documentation for future reference.Thank you for using Enfold :)
Best regards,
IsmaelHi,
You can try this code.
function change_pr_logo_path( array $avia_elements = array() ) { $old = AVIA_BASE_URL."images/layout/logo_modern.png"; $new = 'http://localhost/kriesi/enfold/wp-content/uploads/2018/10/splash-orange-3.png'; /** Find index of element to change*/ foreach( $avia_elements as $key => $element ){ if( ((isset( $element['id'] ) && ( $element['id'] == 'main_menu_preview' ) && isset( $element['slug'] ) && ( $element['slug'] == 'menu'))) || ((isset( $element['id'] ) && ( $element['id'] == 'default_header_target' ) && isset( $element['slug'] ) && ( $element['slug'] == 'header'))) ) { $avia_elements[$key]['std'] = str_replace("<img id='pr-logo' src='".$old."' alt=''/>", "<img id='pr-logo' src='".$new."' alt='MyLogo'/>", $avia_elements[$key]['std']); } } /*** Return modified */ return $avia_elements; } add_filter( 'avf_option_page_data_init', 'change_pr_logo_path', 10, 1 );
Just change the $new logo url.
Best regards,
IsmaelHi,
What do you mean by “attach css editor”? Please add the code in the Enfold > General Styling > Quick CSS field or the child theme’s style.css file.
Best regards,
IsmaelHi,
Cool. Glad it’s working. Please feel free to open a new thread if you encounter any issues. :)
Best regards,
IsmaelOctober 8, 2018 at 2:57 am in reply to: Checkout-Returning customer/create an account fields are disappearing in chrome #1018763Hi,
That is happening only in Chrome as i said.
Yes, I know. I just tested it on other browsers. I can’t reproduce the issue even on Chrome.
Best regards,
IsmaelOctober 8, 2018 at 2:55 am in reply to: galleries opening duplicate image on top of lightbox #1018762Hi,
Thanks for the update.
This is all I get when I click the image.
Screenshot: https://imgur.com/a/Vdt5ohx
Where are you testing this? Which browser?
Best regards,
IsmaelHi,
@BSHosts: Please create a new thread with the site url and the login credentials. Review the docs when you have the time.// https://kriesi.at/documentation/enfold/google-map/
Best regards,
IsmaelHi,
Did you try setting it to 15 or any number? Again, the sorting widget is based on that value.
Best regards,
IsmaelHi,
Can you give us an example of the rating widget that you’re trying to create?
Best regards,
IsmaelHi,
This is the html code.
<img class="wp-image-2186 alignleft" src="http://shedoesitcoaching.com/wp-content/uploads/2018/09/Boekje-van-weggever-273x300.png" alt="" width="126" height="138"/> <h3 class="text-center">15 FREE TIPS which improve your work-life balance immediately</h3>
Best regards,
IsmaelHi,
Are you using the advance layout builder (ALB) for your posts? The content of the ALB will not display on the blog overview page by default. You need to add an excerpt to the posts manually. Edit one of the posts and then enable the “Excerpt” box from the “Screen Options”. The Screen Options is located at the top right corner of the post editor page.
Best regards,
IsmaelOctober 8, 2018 at 2:42 am in reply to: need to remove color section but some matter came up. #1018756Hi,
This css code should help but it will affect all 1/4 columns.
@media only screen and (max-width: 767px) { .responsive #top #wrap_all .flex_column.av_one_fourth { margin: 20px 1% 0 0; float: left; width: 49%; } }
Turn on the custom css class field if you want to apply this modification for specific columns.
Best regards,
IsmaelHi,
I’ve forwarded the issue to my teammates. Please wait for their response.
Best regards,
IsmaelOctober 8, 2018 at 2:33 am in reply to: copyright info for images inside a post and for post thumbnail #1018754Hi,
Where did you add the custom shortcode? It’s not in the functions.php file.
Best regards,
IsmaelHi,
Try to replace this line.
jQuery(window).load(function(){
with:
jQuery(document).ready(function(){
Best regards,
IsmaelHi,
You may need to do this yourself because we can’t help you track back your own modifications.
Best regards,
IsmaelHi,
The mobile menu should close automatically when you click on any items. I found this error in the console.
jquery.js?ver=1.12.4:2 Uncaught Error: Syntax error, unrecognized expression: #schulgeb%C3%BChren-australien
Please remove the special character “ü” from the menu item “Schulgebühren”.
Best regards,
IsmaelHi,
Thank you for using Enfold.
You can change the portfolio base permalink in the Settings > Permalinks panel. You won’t be able to remove it though.
Best regards,
IsmaelHi!
Thanks for the update. This is what I see on my end.
Screenshot: https://imgur.com/a/zJF9F88
I don’t see that notice.
Cheers!
IsmaelHi,
Thanks for the update.
Adjust the code a bit.
.single-post h1 { font-size: 16px !important; }
You can set the font in the Enfold > General Styling > Fonts panel.
Best regards,
IsmaelHey slekiz,
Thank you for using Enfold.
That is the maximum size of the marker by default. You can use a filter to add new marker size options.
// https://kriesi.at/support/topic/custom-map-marker-image-size-wont-display-at-80x80px/#post-1002535
Best regards,
IsmaelHi,
Thanks for the update. Are you using the “Separator/Whitespace” element to create spaces between the elements? Please edit the elements and then look for the “Screen Options”. Adjust the settings accordingly so that they’re not visible on mobile view.
Best regards,
IsmaelHi,
Thanks for the update.
Use this filter in the functions.php file to unset the parent trail.
add_filter( 'avia_breadcrumbs_trail', 'avia_breadcrumbs_trail_mod', 50, 2 ); function avia_breadcrumbs_trail_mod( $trail, $args ) { if(is_tax('product_cat')) { unset($trail[1]); } return $trail; }
Best regards,
IsmaelHi,
The css code works when I add it via the browser inspector. Please set the user role to “admin” so that we can access the theme options.
Best regards,
IsmaelHey AWZ,
Thank you for using Enfold.
You don´t know, when you will exceed the credit.
You can actually find the usage or API calls equivalent of the $200 free credit in their pricing plan table. You’ll know that you have exceeded the limit when your map stats or requests are over the specified calls for a certain API. Look out for the “Dynamic Maps” API requests.
// https://cloud.google.com/maps-platform/pricing/sheet/
Activate Maps Embed API and Maps JavaScript API. Not activate a billing method. It works until now.
The Embed API is free but you can only use basic modes like “view” and “place” without any markers or directions. The “Javascript or Dynamic API” requires a billing account.
// https://developers.google.com/maps/documentation/embed/usage-and-billing
Do you plan an intagration of embed API like in this screenshot?
The development team is planning to integrate a new map library like “leafletjs” and “openlayers”, both using data from “openstreetmap”. This is not sure yet.
Best regards,
IsmaelHi,
Can we access the site? We would like to check the API code.
You may need to upgrade the theme from 4.0.5 to version 4.4.1.Best regards,
IsmaelHi,
Great! Glad that it worked. Please feel free to open a new thread if you need anything else. :)
Best regards,
IsmaelHi,
Do you want the slider to move to the next slide after a certain period? Try to enable the autorotation and then edit the config-templatebuilder > aviashortcodes > slideshow > slideshow.js file and then look for this code around line 860:
currentSlide.on('av-video-play-executed', function(){ setTimeout(function(){ self.pause() }, 100); });
Comment that line out or remove it.
Best regards,
Ismael -
AuthorPosts