Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the update.
This css code should resize the background image on mobile view.
@media only screen and (max-width: 767px) { .header_color .header_bg { background-attachment: scroll; background-size: contain; } }
Please don’t forget to toggle the Performance > File Compression settings after adding the code.
Best regards,
IsmaelHi,
Glad everything is working as it should. Please don’t hesitate to open a new thread if you need anything else.
Is there anyway to make it scaling down and show on mobile
We get a blank page with a text “error” whenever we check the site. And we can’t login using the credentials above. Please check the info carefully.
Best regards,
IsmaelHi,
Thank you for the update.
The login credentials seem to be invalid. We can’t login. Please check the info carefully.
We can’t reproduce the issue on a browser desktop and device emulations.
Best regards,
IsmaelHi,
Thank you for the update.
The following snippet should work. It will add a container below the header. Of course, you can include more content if necessary.
add_action('ava_after_main_container', function() { $output = "<div class='below-header'>This is a content below the header.</div>"; echo $output; }, 10);
You can then use the following css to style the container.
.below-header { display: block; width: 100%; height: 100px; background: red; }
Best regards,
IsmaelHi,
The solution in that thread will not work. Instagram now requires users to be properly authenticated in order to access the API. Unfortunately, this authentication flow is not yet added in the theme. You will have to use the plugins suggested above for now.
// https://kriesi.at/support/topic/problems-with-api-updating-theme-and-ig/#post-1145644
Best regards,
IsmaelHi,
Did you add the “with-title” custom css class name to the color sections containing the title? Please review our previous suggestion here.
// https://kriesi.at/support/topic/church-theme-title-on-mobile-without-space/#post-1147052
You need to add the custom css class name “with-title” to the color sections.
Best regards,
IsmaelHi,
Thank you for the update.
How do you enable it?
You can modify the wp-config.php file and set the “DISALLOW_FILE_EDIT” constant to false.
Here is the SFTP info
Are you sure it’s the right one? The name of the first site is “ufcw5”. not “svminc”.
Best regards,
IsmaelHi,
Thank you for the update.
We adjusted the breakpoint to 1366px to prevent the menu from going below the logo. That’s the easiest workaround that we can think of. Unfortunately, we can’t modify the main style of the menu, so you need to contact the plugin developer for that.
This is the css code:
@media only screen and (max-width: 1366px) { .ubermenu-responsive.ubermenu-responsive-collapse { max-height: 0; overflow: hidden !important; visibility: hidden; } .ubermenu-responsive.ubermenu-responsive-collapse:not(.ubermenu-in-transition) { border-top-width: 0; border-bottom-width: 0; } .ubermenu-responsive-toggle { display: block; } .ubermenu-responsive.ubermenu .ubermenu-nav { display: block; } .ubermenu-responsive.ubermenu-responsive-single-column .ubermenu-item-level-0 { float: none; clear: both; width: 100%; } .ubermenu-skin-blue-silver.ubermenu-responsive-toggle { top: 20px; position: relative; } .ubermenu-responsive-toggle { display: block !important; } .ubermenu-responsive.ubermenu-responsive-collapse { display: none !important; } }
Best regards,
IsmaelHi,
I WANT BANNER ABOVE LOGO AND MENU LIKE IT IS IN THIS EXAMPLE. EXACTLY THE SAME.
Sorry for the confusion. The widget or banner is already above the logo, and the position of the header elements (logo, menu, icons) is the same as in the documentation. What else do you need to adjust? If you want you adjust the size of the banner so that it isn’t full width, try this css code.
.responsive #top #header #header_main .inner-container .widget > div { width: 50vw; } .responsive #top #header #header_main .inner-container .widget { margin: 20px 0 40px 0; }
Please provide a screenshot of the final header layout that you want so that we can understand your request better.
Best regards,
IsmaelOctober 18, 2019 at 6:24 am in reply to: WP caught error in admin-ajax after upgrading to 4.6.2? #1149119Hi,
Thank you for the update.
The account worked, but it doesn’t have access to the root directory of the WP installation.
Screenshot: https://imgur.com/a/nhCslYC
Please create another FTP account with the correct permissions. Your hosting provider should be able to help you with it.
Best regards,
IsmaelOctober 18, 2019 at 6:17 am in reply to: Contact form issue: 'no-reply@mydomain.com' at the top of sent messages #1149115Hi,
Yes, you can use the snippet above to replace the previous one, or the filter you posted above. Let us know how it goes.
Thank you for the update.
Best regards,
IsmaelOctober 18, 2019 at 6:12 am in reply to: Enfold and ACF Google Maps location suggestions not working #1149112Hi,
Thank you for following up.
Do you see any errors in the console when you’re on the ACF map interface or settings? It is possible that the map API is loaded twice. If that is the case, then you can use the following snippet to disable any map related scripts added by the theme.
add_filter('avf_gmap_vars', 'avf_gmap_vars_disable', 10, 1); function avf_gmap_vars_disable($map) { $map = null; return $map; } add_filter('avf_load_google_map_api_prohibited', 'avf_load_google_map_api_prohibited_true', 10, 1); function avf_load_google_map_api_prohibited_true($prohibited) { if( is_admin() ) $prohibited = true; return $prohibited; } add_action('init', 'ava_deregister_gmaps', 9999); function ava_deregister_gmaps() { if(is_admin()) { wp_deregister_script( 'avia-google-maps-api' ); wp_deregister_script( 'avia_google_maps_front_script' ); wp_deregister_script( 'avia_google_maps_api_script' ); wp_deregister_script( 'avia_google_maps_widget_admin_script' ); } }
You can also try this filter.
add_filter( 'avf_load_google_map_api', '__return_false' );
Best regards,
IsmaelHi,
Thank you for the update.
What do you mean by “another cookie banner“? Are you using a plugin? The spam protection or the Google reCAPTCHA option in the theme will only work with the default contact form.
Best regards,
IsmaelOctober 18, 2019 at 6:00 am in reply to: Child Theme Does not Acknowledge CDN Rewrite Since Latest Upgrade #1149109Hi,
Thank you for the update.
Can we access the dashboard and the file server? We have to check the settings and edit a few files in order to debug the issue. Please provide the WP and FTP login details in the private field.
Best regards,
IsmaelHi,
Thank you for the update.
The insert shortcode icon is located in the the default or standard editor’s toolbar. Please check the screenshot below.
Screenshot: http://i.imgur.com/n4KXkdm.jpg
Moreovern, in a simple gallery, is there a way to deactivate borders around thumbnails ?
Which gallery? Yes, it is possible with css. Give us a link to the page where the gallery is, then we’ll provide the css.
Best regards,
IsmaelHi,
Thank you for the update.
Did you modify the magazine.php file before? Try to look for the another $excerpt variable in the magazine.php file and once again, try to remove the dots in the “avia_backend_truncate” function. Maybe that is where the dots are coming from.
Best regards,
IsmaelHi,
We are still getting the same error. Did you block certain countries’ access to the site? Is there a security plugin installed? If so, please deactivate it temporarily.
Thank you for the update.
Best regards,
IsmaelHi,
Sorry for the delay. Could you give us a screenshot of the layout that you want for the lightbox? You can upload it to imgur or dropbox. I think our suggestions and @Guenni007’s got mixed up, which is why the solutions don’t work.
Best regards,
IsmaelHey aledef,
Thank you for the update
How does the post look like initially? Try to update the post right after you created them.
// https://codex.wordpress.org/Function_Reference/wp_update_post
Or build the shortcode tree during the post creation.
$tree = ShortcodeHelper::build_shortcode_tree( $_POST['content'] ); Avia_Builder()->save_shortcode_tree( $post_id, $tree);
Best regards,
IsmaelHey smsutton,
Thank you for the inquiry.
There is a compatibility fix added for IE in the latest release of the theme. Please upgrade the theme from v4.5.7 to the latest version, which is v4.6.3.1. Don’t forget to toggle the Enfold > Performance > File Compression settings after the upgrade.
Best regards,
IsmaelOctober 17, 2019 at 10:34 am in reply to: Creating blog, wrong posts showing on hosting page #1148859Hi,
Thank you for the update.
We can only see one post in the “blog-format-test-page” page now. Did you set this page as posts page in the Settings > Reading panel? If so, please reset those options back to default and make sure that it is only set as blog in the Enfold > Theme Options panel.
Best regards,
IsmaelHi,
Thank you for the update.
The layer slider in the home page seems to be displaying properly now. Is it fixed?
We can’t access the site because the login page always redirects to the home page. What is the login URL?
Best regards,
IsmaelHi,
Thank you for the update.
It’s not really an issue with the layer slider. The error, which is not directly related to the “parallax” issue, is from a custom script added in the head tag.
See: https://pastebin.com/pdWQuWfR
This is a quick fix for the parallax background:
.home #av_section_3 .av-parallax.active-parallax.enabled-parallax { top: -350px !important; }
The css code should pull the parallax background upwards. You can also try to use a larger background image.
Best regards,
IsmaelOctober 17, 2019 at 6:13 am in reply to: Paypal payment – confirmation page: … wurde fehlerhaft aufgerufen #1148786Hi,
Thank you for the update.
Did you add any custom modifications related to WooCommerce in any of the template files? According to the error report, the order properties (billing_first_name) should NOT be accessed directly in the template. You need to use the appropriate function to get those info. The error originates in the page.php template, so you probably added a custom shortcode in a page, or the error is cause by a plugin.
Best regards,
IsmaelHi,
@COLORIT: The Appearance > Editor panel is not accessible, so we can’t edit the files and add the necessary snippets. If possible, please create a new thread/ticket and include the details in the private field. We’ll continue there.Best regards,
IsmaelHi,
@jdiehl: Where can we see the issue? Please create a new ticket and post the necessary details in the private field so that we can check the problem. We’ll close this thread for now. Thank you for your patience.Best regards,
IsmaelHi,
Sorry for the delay. The following css code should help prevent scrolling in the main container when the burger overlay is active.
.av-burger-overlay-active #top, .av-burger-overlay-active { overflow: hidden; }
Please don’t forget to toggle the Performance > File Compression settings after adding the code.
Best regards,
IsmaelHi,
Sorry for the delay. The layout that you’re looking for is almost the same as the header in the hotel demo. In order to recreate that layout, you have to set the Enfold > Header > Menu and Logo Position to “Logo center, menu below”, then add the header background in the General Styling > Logo Area > Background Image settings. You should then upload the actual logo image as a separate element from the header banner.
More instructions can be found in the documentation.
// https://kriesi.at/documentation/enfold/example-of-widget-left-logo-center-widget-right-menu-below/
Best regards,
IsmaelHi,
Thank you for the update.
The default style of the cookie bar overrides the advanced styling. Please use the following css code temporarily to change the background color of the consent bar.
#top .avia-cookie-consent { background-color: #0011ff; }
We’ll forward the issue to the dev team.
Best regards,
IsmaelOctober 17, 2019 at 4:22 am in reply to: Layerslider – arrow navigation (next previous) size #1148762Hi,
Thank you for the update.
Do you want to decrease the size of the slider arrows on mobile view? If so, then the following css code should help.
@media only screen and (max-width: 767px) { #top .avia-layerslider .ls-nav-prev, #top .avia-layerslider .ls-nav-next { width: 30px; height: 30px; line-height: 32px; font-size: 18px; margin: -14px 7px 0; } #top .avia-layerslider .ls-nav-prev::before, #top .avia-layerslider .ls-nav-next::before { line-height: 32px; } }
Best regards,
Ismael -
AuthorPosts