Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the update.
Did you set the blog page in the Settings > Reading panel? Please reset those options to default and then adjust the blog layout settings in theme options again. The account above has no admin rights so we were not able to edit the settings.
Best regards,
IsmaelHi,
Thanks for the info.
You should use the “tribe_events_cat” as the taxonomy value instead of “category”.
// exclude events in blogposts add_filter('avia_blog_post_query', 'avia_blog_post_query_mod', 10, 2); function avia_blog_post_query_mod($query, $params) { $query['tax_query'][] = [ 'taxonomy' => 'tribe_events_cat', 'field' => 'name', 'terms' => 'termin', 'operator' => 'NOT IN', ]; return $query; }Best regards,
IsmaelMay 30, 2019 at 2:38 pm in reply to: Title Bar with Page Title and breadcrumbs navigation disappear with WPML plugin #1105427Hi,
Thanks for the update.
Install the following plugin and use it to adjust the text translation.
// https://wordpress.org/plugins/loco-translate/
You can also edit the language file manually using the POEdit software if you prefer.
Best regards,
IsmaelMay 30, 2019 at 7:30 am in reply to: adding or amending directory listings within ENFOLD theme #1105380Hi,
Thank you for the update.
It seems to be working properly. Check the test post in the private field. Are you adding the info in the custom fields? The plugin has an actual meta box for the university info at very bottom of the editor. You should use that instead. We disabled the custom fields temporarily.
Best regards,
IsmaelHi,
Thanks for the update.
Do you need the animation or fade in effect of the milestones? If you don’t need to see the animation, use this css code.
.avia_transform.avia_desktop .av-milestone.av-animated-generic { opacity: 1; }Best regards,
IsmaelHi,
Thank you for the update.
Try to wrap the second word inside a span tag. Example:
Getting<span class="s_line">Started</span>And then add this css code.
.s_line { position: absolute; top: 18px; left: 13px; }Best regards,
IsmaelHi,
Sorry for the delay.
1-2.) Use this css code to adjust the height of the top bar.
#header_meta { min-height: 60px; }You may need to adjust the line height of the elements inside that container as well.
#header_meta .phone-info { line-height: 60px; font-size: 18px; }That code also increases the font size of the phone number.
3.) It’s possible to add a widget inside the header.
// https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area
If you want to put the widget in the top bar, replace the “ava_after_main_menu” with “avia_meta_header” hook.
4-5.) The following article should help:
// https://css-tricks.com/the-current-state-of-telephone-links/
We don’t usually entertain multiple questions in a single thread because it makes it quite confusing for other users who may be looking for the same answer. Please open a single thread for each of your inquiry next time. Thank you for understanding.
Best regards,
IsmaelHey Enfold-User,
Thank you for using Enfold.
We translated your inquiry from German to English but the translation is a bit unclear, so we can’t understand it. Can you provide a screenshot of the issue? You can upload the screenshot to imgur or dropbox.
Best regards,
IsmaelHi,
Thanks for the update.
The AJAX search seems to be working properly, displaying the appropriate posts in the search results page. Is this fixed? Did you disable the SearchWP plugin?
Best regards,
IsmaelHey Tobias,
Thank you for using Enfold.
You can edit the includes > loop-index.php file. Look for this code around line 181:
$blog_meta_output = "<a href='{$link}' class='post-author-format-type'><span class='rounded-container'>".$gravatar.$icon."</span></a>";Set the href attribute to “get_permalink()”. Or replace the code with:
$link = get_permalink(); $blog_meta_output = "<a href='{$link}' class='post-author-format-type'><span class='rounded-container'>".$gravatar.$icon."</span></a>";Best regards,
IsmaelHi,
Thank you for the update.
Did you go to the “https://build.envato.com/create-token/” page to generate a token? That token should cover every theme or item that you own. Make sure that you check the required permissions.
View and search Envato sites (checked by default)
View your Envato account username
View your email address
View your account profile details
Download your purchased items
Verify purchases of your item
List purchases you’ve madeBest regards,
IsmaelHi,
We would like to apologize for the delay.
The height of the iframe is set to 522px. Have you tried removing that attribute so that iframe height is set based on its content?
Best regards,
IsmaelHi,
Thank you for the update.
Did you apply a background image to the section after the first one? The background attachment is set to parallax, but there is no background image. You should reset the “Background Attachment” settings to “Scroll”.
Best regards,
IsmaelHi,
That is a fixed background. Add a color section element, set the minimum height to 100% and add a section background. Set the “Background Attachment” settings to either parallax or fixed.
If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Thanks!
Best regards,
IsmaelHi,
Thank you for the update.
The following plugin is an extension of the default category widget. You can use that instead.
// https://wordpress.org/plugins/extended-categories-widget/
If you prefer not to use that, try this one to adjust the sort order of the taxonomy terms.
// https://wordpress.org/plugins/taxonomy-terms-order/
Best regards,
IsmaelHey betaphase,
Thanks for the update.
We are currently improving the reCATPCHA option in the theme. Are you using it for your contact form? The following line will only be executed if the option is enabled.
if( $this->is_recaptcha() ) { $proceed = $this->check_recaptcha_token( $new_post['label_input'] ); // <--- this line renders any change to the value of $proceed in the callback filter useless! if( $proceed ) { delete_transient( 'avia_recaptcha_transient_' . $proceed ); } }Best regards,
IsmaelHi,
1.) The css code above should add a focus state to every link in the page.
Add :focus (tab) styling to all links (primarily an issue in the site’s footer)
a:focus { text-decoration:underline !important; }2.) Just make sure that there are no elements with the same ID in the page.
Make sure that all“id” attributes are unique on every page
3.) Use the “avf_social_media_icon_aria_label_value” and “avf_social_share_links_aria_label_value” the to add an aria-label attribute to the social icons.
Add appropriate “aria-label” attributes to links that do not have discernible text (primarily for the social media links in the footer)
4.) This should be editable in the header.php file.
Remove the “maximum-scale=1” attribute from “” tag
Look for this line.
if( strpos($responsive, 'responsive') !== false ) echo '<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">';5.) This might take a while to implement.
Make sure all site content is contained within “landmark” regions (, , , )
// https://www.w3.org/WAI/GL/wiki/Using_ARIA_landmarks_to_identify_regions_of_a_page
6.) You should check your design and make sure that the color or theme has the right contrast.
Ensure that all elements have sufficient color contrast
This plugin might help: https://getkontrast.now.sh
7.) Edit the footer.php file and look for this code.
ARIA hidden element must not contain focusable elements
<a href='#top' title='<?php _e('Scroll to top','avia_framework'); ?>' id='scroll-top-link' aria-hidden='true' <?php echo av_icon_string( 'scrolltop' ); ?>><span class="avia_hidden_link_text"><?php _e('Scroll to top','avia_framework'); ?></span></a>Add the aria-hidden=”true” attribute.
8-9.) The heading tags (h1-h6) should be added in the page in a consecutive manner. You shouldn’t add an h4 after an h2 or h3 after an h1.
Make sure that all headings (H1-H6) are contextually appropriate, and ordered correctly
Make sure that heading levels only increase by one (H1 followed by H2, never H1 followed by H4)
Try to follow this guideline:
// https://www.w3.org/TR/WCAG20-TECHS/ARIA12.html
If you don’t want to use the special heading element, you can add an element manually using a text or code block and then add the role=”heading” and “aria-level” attribute to it.
// https://www.w3.org/TR/WCAG20-TECHS/ARIA12.html
10.) Add an h1 special heading element in every page.
Make sure that all pages contain a top-level H1 tag
11.) Make sure that every image in the Media > Library contains a description, alt and title attribute.
Best regards,
IsmaelHi,
Thanks for the update.
Those pages seem to be loading the Open Sans ExtraBold font instead of the Open Sans SemiBold font even though the font weight is set to 700. Try to deactivate the “Google Fonts for WordPress” plugin temporarily.
Best regards,
IsmaelHi,
Thanks for the update.
The current layer slider in the “Programme” page looks different from the previous one. Did you change it?
// https://imgur.com/a/b4Zu6YE
Best regards,
IsmaelMay 30, 2019 at 4:11 am in reply to: Image not aligned anymore when setting the min width as 100% browser window #1105324Hey transformmedia,
Thanks for the update.
We set the minimum width to 100% and added this css code in the Quick CSS field to align the elements at the bottom of the section.
.home #main #av_section_1.avia-section .template-page { padding: 0 !important; vertical-align: bottom; }Apply a unique Section ID to the color section if necessary.
Best regards,
IsmaelHey Ikyo,
Thank you for using Enfold.
That is the default value of the post_type parameter in the query of the posts elements (magazine, blogs posts, portfolio grid etc). It doesn’t necessarily mean that it will fetch all posts from every post type in the list because the query also contains the “tax_query” parameter.
// https://codex.wordpress.org/Class_Reference/WP_Query#Taxonomy_Parameters
The post types could share the same taxonomy, so this is an easier way to return posts from those post types when necessary.
Best regards,
IsmaelHey Michael,
Thank you for using Enfold.
That is the scrollspy script for the main menu items. It’s in the js > avia.js file.
//scrollspy for main menu. must be located before smoothscrolling if($.fn.avia_scrollspy) { if(container == 'body') { $('body').avia_scrollspy({target:'.main_menu .menu li > a'}); } else { $('body').avia_scrollspy('refresh'); } }You can disable that script but it will also affect the smooth scroll option.
Best regards,
IsmaelHi,
Thank you for the update.
You can use the wp_is_mobile function to load the appropriate URL pattern for desktop and mobile device.
// set whatsapp url pattern add_filter('avia_social_share_link_arguments', 'avia_social_share_link_arguments_mod', 10, 1); function avia_social_share_link_arguments_mod($args) { $pattern = 'https://web.whatsapp.com/send?text=[permalink]'; if ( wp_is_mobile() ) { $pattern = 'whatsapp://send?text=[permalink]'; } $args['whatsapp'] = array("encode"=>true, "encode_urls"=>false, "pattern" => $pattern, 'label' => __("Deel via WhatsApp",'avia_framework')); return $args; }Best regards,
IsmaelMay 30, 2019 at 3:26 am in reply to: Masonry – Portfolio Entry Displayed Although It Doesn't Meet Condition #1105316Hey rainert,
Thank you for using Enfold.
The post navigation is based on the get_adjacent_post function, so it returns the next or previous post in the order they were published. It doesn’t matter which category the posts belong to. If you want to filter out or exclude posts from different categories, use the “avf_post_nav_settings” filter and set the “same_category” parameter to true.
/* * $same_category: return posts from the same taxonomy term */ add_filter('avf_post_nav_settings','avf_post_nav_settings_mod', 10, 1); function avf_post_nav_settings_mod($settings){ $settings['same_category'] = true; return $settings; }Best regards,
IsmaelHi,
Thanks for the update.
Are you using the latest version (4.5.7) of the theme? A fix was included in the latest version.
You can also try the following css code.
// https://kriesi.at/support/topic/blurry-images-and-text-on-blopg-post-grid/#post-1079913
Best regards,
IsmaelHi,
Did you add the following css code? That limits the height of the container and constrain the overlay wrapper.
@media (orientation: portrait) { #av_section_1 .container { height: 70vw!important; } }We would like to apologize for the late response. We’ll try to reply to this thread as soon as possible.
Best regards,
IsmaelMay 29, 2019 at 5:41 am in reply to: Video: Lazy Load does not work (non-rendered shortcode only) #1105045Hi,
Thanks for the update.
The m4v is not included in the list supported formats by the video shortcode. You can only use mp4, ogg, web and ogv. You can also upload the video to youtube or vimeo.
If you want to disable the loop, edit the framework > php > function-set-avia-frontend.php file. Look for the code inside the “avia_html5_video_embed” function around line 616:
$loop = $attributes['loop'] == 1 ? 'loop' : '';Best regards,
IsmaelHi,
Sorry for the late reply. Looks like you removed the search icon from the secondary menu. Could you post another login account? The one above seems to be invalid.
Best regards,
IsmaelHey Chris_85,
Thank you for using Enfold.
You can use the “woocommerce_before_shop_loop” hook to insert additional content above the product grid. An example can be found in the following link.
// http://hookr.io/actions/woocommerce_before_shop_loop/
Best regards,
IsmaelMay 29, 2019 at 5:15 am in reply to: Transparent header on mobile devices and customisation of colors? #1105042Hey SocialView,
Thank you for using Enfold.
1.) That is the default header style on mobile view. The transparent and fixed header options are disabled by default. It can be adjusted using css but it’s not recommended.
Example here: https://kriesi.at/support/topic/sticky-header-mobile-2/#post-686480
2-3.) We can’t get past the maintenance mode page even when we try to access the login page. Did you change the login url?
We would like to apologize for the late response.
Best regards,
Ismael -
AuthorPosts
