Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the update.
You have to modify the includes > loop-index.php file. Look for this code around line 292:
echo "<time class='date-container minor-meta updated' >".get_the_time(get_option('date_format'))."</time>";Best regards,
IsmaelHi,
Thank you for the update.
The comparison symbol “<" breaks the layout because the builder assumes it's an html tag. Please replace it with a text or remove it completely.
Best regards,
IsmaelHi,
For the centered blockquote text is it also possible to align the vertical green solid directly alongside the quote (on the right)?
Yes, that’s possible. Try this css in the Quick CSS field.
blockquote { display: table; margin: 0 auto; }You add a separator/whitespace element below the author name to create a separation between the content and the featured image.
Best regards,
IsmaelHey!
UPDATE: The upload is done. You can now disable the current theme and activate the beta version.
Best regards,
IsmaelHi,
Thank you for the update.
We added a snippet in the functions.php file but it didn’t work. Could you give us access to the file server? Please post the FTP login details in the private field.
Best regards,
IsmaelHi,
Thank you for the update.
Can we have access to the dashboard? We would like to inspect the issue. Please include the WP abd FTP login details in the private field.
Best regards,
IsmaelHi,
Thank you for the update.
That is the default behavior of the header on mobile devices — sticky headers are disabled by default. It’s not really recommended to keep a fixed header because there’s a limited space on mobile devices. Also, users can immediately access the navigation by tapping their devices, so it’s not really necessary if the purpose is convenience.
Best regards,
IsmaelAugust 20, 2019 at 1:40 am in reply to: IE 11 and Legacy Browser Animated Images & Forms Not Displaying. #1129058Hi,
@stimmungshoch: There is an unsupported JS function that is causing an error in IE. If you can open a new thread, we’ll give you the beta version containing the patch.Best regards,
IsmaelHi,
Thank you for the update.
Are you using the grid layout? Please provide the login details in the private field so that we can check the setup.
Best regards,
IsmaelHi,
Thank you for the update.
We are now uploading the theme named “enfold_latest” to the site. We’ll let you know when it’s done.
Best regards,
IsmaelAugust 20, 2019 at 1:16 am in reply to: Play button overlay on video preview image goes tiny #1129055Hi,
Thank you for the update.
The gray play button is center aligned — checked it on MS Edge. Could you provide a screenshot of the issue?
Best regards,
IsmaelHi,
The plugin is disabled, because it ruins my site in the frontend and also in the backend.
Yes, we know that. It overrides the translations. Did you try the suggestion above?
Thank you for the update.Best regards,
IsmaelHi,
Thank you for the inquiry.
Which language did you translate the site to? Please check install the Loco Translate plugin, search for the string or text and then try to translate it manually. You can also use the POEdit software if you prefer.
// https://wordpress.org/plugins/loco-translate/
Please create a new thread when you have the time. Thank you.
Best regards,
IsmaelHi,
Yes, please post the data in the private field so that we can inspect the issue. An actual link to a test page will help.
Thank you for the update.
Best regards,
IsmaelHey Sievers,
Thank you for the inquiry.
We can reproduce the issue on IE but we don’t see any errors, so we are not really sure what causes it. We did fix an issue related to IE recently, which might be related to this one. The fix is included in the beta version. (see private field)
Best regards,
IsmaelHi,
Can I adjust the moment of animations sliding in?
Yes, that’ possible. You can adjust the offset value of the waypoints scripts. It’s in the js > shortcodes.js file. Look for this block around line 217 and replace the “80%” and “95%” offset value with “-50%” so that the animation triggers when the element is visible at the bottom of the screen.
function activate_waypoints(container) { //activates simple css animations of the content once the user scrolls to an elements if($.fn.avia_waypoints) { if(typeof container == 'undefined'){ container = 'body';}; $('.avia_animate_when_visible', container).avia_waypoints(); $('.avia_animate_when_almost_visible', container).avia_waypoints({ offset: '80%'}); if(container == 'body') container = '.avia_desktop body'; $('.av-animated-generic', container).avia_waypoints({ offset: '95%'}); } }Thank you for the update.
Best regards,
IsmaelAugust 19, 2019 at 3:16 pm in reply to: Contact Form 7 – reCaptcha v2 – reCaptcha Not shown on Mobile Version #1128925Hi,
Thank you for the update.
Does it work on desktop view? Please note that the version 4.4 is not compatible with the latest version of WordPress. You have to upgrade the theme to the latest version 4.5.7 or to the beta version. It contains improvements for the spam protection. (see private field)
Best regards,
IsmaelHi,
Thank you for using Enfold.
@michaelH: He’s probably referring to the AJAX search.
@flocco21: You can use this filter to increase the number of posts shown in the AJAX search.add_filter('avf_ajax_search_query', 'avf_modify_ajax_search_query', 10, 1); function avf_modify_ajax_search_query($search_parameters) { parse_str($search_parameters, $params); $params['numberposts'] = 15; $search_parameters = http_build_query($params); return $search_parameters; }Default value is 5. We increased it to 15.
Best regards,
IsmaelHi,
Thank you for the update.
You can add this snippet in the functions.php file to include the “support” post type in the list of supported post type by the ALB.
function avf_alb_supported_post_types_mod( array $supported_post_types ) { $supported_post_types[] = 'support'; return $supported_post_types; } add_filter('avf_alb_supported_post_types', 'avf_alb_supported_post_types_mod', 10, 1);Best regards,
IsmaelHi,
Thank you for the update.
We’ve recently encountered an issue like this and provided a snippet to exclude the “acf-field-group” post type from the query. We’re not really sure if it worked because the user didn’t respond. You can try this code in the functions.php file.
add_filter('avia_blog_post_query', 'avia_blog_post_query_mod', 10, 2); function avia_blog_post_query_mod($query, $params) { foreach($query['post_type'] as $key => $value) { if( $value == 'acf-field-group' ) { unset($query['post_type'][$key]); } } return $query; }Best regards,
IsmaelHi,
Thank you for the update.
You can use the following snippet to add the “attachment” post type to the search.
function attachment_search( $query ) { if ( $query->is_search ) { $query->set( 'post_type', array( 'post', 'attachment', 'product', 'portfolio' ) ); $query->set( 'post_status', array( 'publish', 'inherit' ) ); } return $query; } add_filter( 'pre_get_posts', 'attachment_search' )Best regards,
IsmaelHi,
Thank you for the update.
You have to adjust the default size of the “masonry” thumbnail. The following plugin should help.
// https://wordpress.org/plugins/simple-image-sizes/
After the plugin activation, go to the Settings > Media panel and look for the “masonry” thumbnail. Adjust it to the desired size, update, save and then regenerate thumbnails. However, please note that even if you managed to use the desired thumbnail size for the masonry, the image might not display in full because it has to resize the image to keep its aspect ratio therefore parts of image may overflow outside the masonry container. You can adjust that using css but it will probably distort the image or create white space around the container.
Best regards,
IsmaelHi,
Thank you for the update.
The strings or text in the theme options are not translated in the “Strings Translation” panel. For example, if you look for the text “General Styling” you’ll see that it has no translation. Please try to import the latest de_DE.po file in “Strings Translation” > .po Import section.
// https://wpml.org/documentation/getting-started-guide/string-translation/#import-export-po
The .po file is located in the wp-content > themes > enfold > lang folder.
Best regards,
IsmaelHey Haus- und Landarztpraxis Alexander Schladitz,
Thank you for the inquiry.
Are you having issue updating the theme manually via FTP? The old automatic update process will not work on versions older than 4.4.2, so you have to update the theme manually via FTP to version 4.5.7. The latest version contains the automatic update process linked to the new Envato API. For that, you’ll need an API token which can be generated from the Envato site. For more info on how to generate the token, please refer to the documentation.
// https://kriesi.at/documentation/enfold/theme-registration/#how-to-generate-a-envato-personal-token
All premium themes that were using the old Envato API were affected by this update, not just Enfold.
Best regards,
IsmaelAugust 19, 2019 at 3:40 am in reply to: Svg logo full width and full height of header centered above menu #1128787Hi,
Thank you for the update.
Can you give us a screenshot of the issue? The following css modification applies a minimum height to the header container creating a huge black space underneath the logo.
.responsive.html_mobile_menu_tablet #top #wrap_all .av-logo-container { padding: 0px !important; background: #000 !important; }*side note: In the about page we found this unused shortcode.
[envira-gallery id=”257″]Best regards,
IsmaelHi,
Thank you for the update.
We can’t reproduce the same layout issues on our end. Are you sure you’re not looking on a cached version of the page? Please check it on incognito mode.
Screenshot: https://imgur.com/a/q2n7EGd
Best regards,
IsmaelAugust 19, 2019 at 3:26 am in reply to: Contact form: how to change 'from' name and email address? #1128782Hi,
Thank you for the update.
Glad to know it’s fixed. We’ll keep the thread open.
Best regards,
IsmaelAugust 19, 2019 at 3:19 am in reply to: IE 11 and Legacy Browser Animated Images & Forms Not Displaying. #1128779Hi,
Thank you for the update.
We were able to reproduce the issue on IE11 but we didn’t find any errors, so we don’t know what’s actually causing the issue. We did encounter an IE issue recently which might be related to this. The solution or patch was added in the beta version of the theme. (see private field)
Let us know if that helps.
Best regards,
IsmaelHi,
Thank you for the update.
Its either too big or has black bars on the side.
That is normal because the video has to be resized in order to keep its aspect ratio. If you don’t want it to look too big or overflow outside the slider area, set the “Video Display” to the first option but then again it will have the black bars, which is actually the same when you play it the video directly on vimeo. (see private field)
Best regards,
IsmaelHey Moaaaaya,
Thank you for using Enfold.
We found a css code in the following documentation, which might help sharpen the images a bit.
// https://developer.mozilla.org/en-US/docs/web/css/image-rendering
.av-masonry-image-container { image-rendering: -webkit-optimize-contrast; }You can also set the value to “high-quality”, but it’s still experimental.
.av-masonry-image-container { image-rendering: high-quality; }Best regards,
Ismael -
AuthorPosts
