Forum Replies Created
-
AuthorPosts
-
Hey willemb2,
Thank you for the inquiry.
The theme automatically generates a thumbnail called “entry_without_sidebar” for single posts and the thumbnail has a maximum size of 845x321px. You can adjust it by editing the functions.php file directly or with the following plugin.
// https://wordpress.org/plugins/simple-image-sizes/
You can adjust and regenerate the thumbnails in the Settings > Media panel. The plugin is a bit old but it still works well.
Best regards,
IsmaelHi,
Yes, those versions are still available. Just sign up for an API key pair and place it in the theme options.
// https://developers.google.com/recaptcha/intro
Best regards,
IsmaelHi,
This article should show you exactly how this can be done in the robot.txt file.
// https://www.wpbeginner.com/wp-tutorials/how-to-optimize-your-wordpress-robots-txt-for-seo/
// https://yoast.com/ultimate-guide-robots-txt/Best regards,
IsmaelHi,
Does the coupon or discount work correctly when you remove the previous script? Have you tried asking the plugin authors for additional help?
The coupon field should be hidden by default but for some reason it is showing immediately in your installation, so we suggested the previous script. The initial issue might be due to a particular plugin or a custom script.
Best regards,
IsmaelHi,
Thank you for the inquiry.
The google analytics script seems to be working properly when we checked the site as shown in the screenshot below.
// https://postimg.cc/Cnwpxzss
This is a post request that sends data to google servers containing info about the current visit.
Best regards,
IsmaelHey nickname-superstar,
Thank you for the inquiry.
We are not yet sure what is causing the issue because we cannot find any errors in the browser. For the meantime, we disabled the “Disable Gutenberg” plugin and select the classic editor in the Theme Options > Select Your Editor settings. Please try to enable debugging in your installation and enable the error logs.
// https://wordpress.org/support/article/debugging-in-wordpress/#wp_debug_log
// https://wordpress.org/support/article/debugging-in-wordpress/#wp_debug_displayYou should also try and deactivate the plugins temporarily.
Best regards,
IsmaelHey nobletx,
Thank you for the inquiry.
You can use this function to register the stylesheet or css file.
// https://developer.wordpress.org/reference/functions/wp_enqueue_style/
Example:
/** /* adds stylesheet file to the end of the queue */ function wpdocs_override_stylesheets() { $dir = plugin_dir_url(__FILE__); wp_enqueue_style('theme-override', $dir . '/theme-overrides.css', array(), '0.1.0', 'all'); } add_action('wp_enqueue_scripts', 'wpdocs_override_stylesheets', PHP_INT_MAX);Best regards,
IsmaelHey JuLeS-NCfC-2021,
Thank you for the inquiry.
Looks like you have replaced vimeo with youtube, and now the play button displays on hover. Do you still require help with this?
Best regards,
IsmaelHey theartofcom,
Thank you for the inquiry.
Since the automatic update or upgrading from the dashboard is not possible with the current version, you will have to update the theme manually via FTP. Please check the following documentation for more info.
// https://kriesi.at/documentation/enfold/theme-update/
// https://kriesi.at/archives/the-complete-guide-to-updating-enfoldBest regards,
IsmaelHey newmediologo,
Thank you for the inquiry.
You can try this css code to adjust the space between the language flags.
.av-language-switch-item { margin-right: 10px; }Please toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code. Let us know if it helps.
Best regards,
IsmaelHey Telmore,
Thank you for the inquiry.
Are you trying to highlight the active category? If you are, then you can try this css code.
.bellows-submenu > .bellows-active.bellows-menu-item a { color: #ba659b !important; }Looks like you are using a third party plugin for the side menu.
Best regards,
IsmaelHey dradoering,
Thank you for the inquiry.
How would you like the header to display initially on mobile view? Looks like the mega menu is actually the whole header, which also contains the logo. We might not be able to separate the style of the two.
Best regards,
IsmaelHi,
Sorry about that. I thought you are referring to the custom font manager.
Did you get the icon font files from fontello or flaticon? If the icon fonts are from flaticon, please make sure that they are monocolored because colored icons are not acceptable.
Best regards,
IsmaelHi,
Thank you for the update.
It seems to be working properly on our end. We visited the link above with the psort parameter and the script activated the corresponding sort button properly. Please check the screenshot below.
Screenshot: https://imgur.com/Q5ng7pF
We did not have to refresh the page.
Best regards,
IsmaelJune 16, 2021 at 2:17 pm in reply to: Full width slider change options of position of text and buttons to center below #1306015Hi,
Thank you for the update.
Did you try the css code above? That should pull the caption upwards and align it to the center. You just need to adjust the bottom position value.
.caption_bottom .slideshow_caption .slideshow_inner_caption { bottom: 200px; }If you want to center align the caption horizontally, try to use this css code.
.caption_bottom .slideshow_caption .slideshow_inner_caption { text-align: center; }Best regards,
IsmaelHi,
This is not working because the layer is set to inherit the font used by the theme and the only available font weights for Open Sans, which is the current font set in the Enfold > General Styling, are 400 and 600. You are trying to set the font weight of the heading layer to 200.
You can add this filter in the functions.php file to register more font weight for Open Sans.
function avia_add_heading_font($fonts){ $fonts['Open Sans New'] = 'Open Sans:100,200,300,400,600,700'; return $fonts; } add_filter( 'avf_google_heading_font', 'avia_add_heading_font'); function avia_add_content_font($fonts){ $fonts['Open Sans New'] = 'Open Sans:200,300,400,600,700'; return $fonts; } add_filter( 'avf_google_content_font', 'avia_add_content_font');Make sure to select the new font called “Open Sans New” in the General Styling > Fonts panel.
Best regards,
IsmaelJune 16, 2021 at 1:55 pm in reply to: how can i move the js script avia_cookie_check_sessionStorage () in the footer? #1306002Hi,
Crawlers should be smart enough to ignore scripts that are not directly related to the content or at least assign priority on how they should be assessed, so having this small script within the head tag will not affect how search engines crawl the site.
You may need to keep the modification for now if you really need to move it to the footer.
Best regards,
IsmaelHi,
Which demo did you import? The section “why choose us” is not available in the construction demo. You can just ignore the text file and use the xml files to import the demo.
In the contact page, the Google Map element is used, which is under the Media Elements panel of the Advance Layout Builder. You will have to create an API key first. Please check the documentation for more info.
// https://kriesi.at/documentation/enfold/google-map/
Best regards,
IsmaelHi,
We understand. Please let us know if you have any questions regarding the theme.
Have a nice day.
Best regards,
IsmaelHi,
I was actually referring to the cropping option for registered thumbnails. Most of the thumbnails that are generated by the theme are automatically cropped to the exact dimension, while few others are not. But this does not matter anymore since both option that you tried is not working.
Did you install an image optimization plugin? What happens when you disable it?
Best regards,
IsmaelJune 16, 2021 at 1:17 pm in reply to: Number in Price table can not be seen on Apple device #1305989Hi,
Try to adjust the media query further or create another media queries for those devices. You can find examples of css media queries for different devices in the following article.
// https://css-tricks.com/snippets/css/media-queries-for-standard-devices/
Best regards,
IsmaelHey waterwalk,
Thank you for the inquiry.
1.) Would you mind providing a scenario or area of the site where this should be implemented? Generally, the click event listener is used when necessary.
2.) Yes, all fields in the contact form have an associated label by default. It can also be disabled or be replaced with a placeholder when required.
Best regards,
IsmaelHi,
Currently, we do not know what is actually causing the issue, so we cannot give you any solution. Have you tried using the theme’s sliders from the Advance Layout Builder?
Best regards,
IsmaelHi,
Thank you for the update.
We checked the theme options and the Privacy & Cookies > Cookie Handling > Default Cookie Behavior is set to the second option, which is why all external services are enabled by default. You have to set it to either the third or fourth option. And you should also update the theme to the latest version, 4.8.3.
Best regards,
IsmaelHi,
Thank you for the update.
It is working properly on our end. The first slider is displayed when the screen size is more than 767px. And the second slider only shows when the screen width is equal or less than 767px, the first slider at this point is hidden.
Best regards,
IsmaelJune 15, 2021 at 3:12 pm in reply to: Full width slider change options of position of text and buttons to center below #1305829Hi,
You might have forgotten to include the site URL. Please post it in the private field.
For the meantime, try to use this css code to adjust the position of the caption.
.caption_bottom .slideshow_caption { bottom: 50px; }Best regards,
IsmaelHey Intell,
Thank you for the inquiry.
Which font are you trying to upload? Please note that the font manager is intended for Google fonts, so uploading fonts from other sources might return unexpected results.
Best regards,
IsmaelHi,
Thank you for the inquiry.
The snippet is not working correctly because window.load function is no longer valid. Please try to replace the snippet with this one.
// activates a sort button based on the psort query parameter function ava_activate_sort_button() { if(!$_GET["psort"]) return; ?> <script> (function($){ $(document).ready(function() { <?php echo '$(".'. $_GET["psort"] .'_sort_button").trigger("click");'; ?> }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_activate_sort_button');Best regards,
IsmaelJune 15, 2021 at 2:19 pm in reply to: Social Share Xing missing after Update to Enfold 4.8.3 #1305821Hey!
Regarding the second filter, you might have to replace is_single with is_singular(“page”) and add this css code to adjust the width of the ul tag.
#top .av-share-box ul { width: 100%; }Replace the snippet with this one.
function avia_add_social_toolbar_template_builder($content = "") { if (is_singular("page")) { $content .= avia_social_share_links(array(), false, '', false); $content .= ''; } return $content; } add_filter('avf_template_builder_content', 'avia_add_social_toolbar_template_builder', 10, 1);Best regards,
IsmaelJune 15, 2021 at 11:49 am in reply to: Cannot add images to enfold gallery / masonry gallery #1305783 -
AuthorPosts
