Forum Replies Created
- 
		AuthorPosts
 - 
		
			
				
Hi,
Thank you for using Enfold.
Please use the following code in the functions.php file to set the excerpt on archive pages.
function change_blog_archive_style() { global $avia_config; if(!is_single()){ $avia_config['blog_content'] = "excerpt_read_more"; } } add_action('get_header', 'change_blog_archive_style');If you want to change the layout of the category and tag pages, add the following code.
// for category pages add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); function avia_change_category_blog_layout($layout, $context){ if($context == 'archive') $layout = 'single-small'; return $layout; } // for tag pages add_filter('avf_blog_style','avia_change_tag_blog_layout', 10, 2); function avia_change_tag_blog_layout($layout, $context){ if($context == 'tag') $layout = 'single-small'; return $layout; }Available layouts are single-small, single-big, blog-grid and multi-big.
Please refrain from bumping or replying to your own thread because it gets pushed back to the end of the queue and moderators won’t be able to provide a response immediately. Please be patient while we go through the rest of the queue. Thank you for your understanding.
Best regards,
IsmaelOctober 27, 2016 at 8:02 am in reply to: Transition of homepage sliders works in preview, but not when I visit the site #704700Hi,
We are very sorry for the late response. The slideshow is working when I checked the site on Chrome. Which slides are not working?
// http://communityresiliency.net/site-home/
Best regards,
IsmaelHi,
Thank you for the update. Is the site live? Did you add the logo manually? I think it’s better if you use the default logo and then add the other elements in the widget. Please post the site url so that we can inspect the element.
Best regards,
IsmaelHey evan_friedl,
Thank you for using Enfold.
Have you tried the fullwidth submenu element? You can use it as an anchor menu for that page.
This short tutorial should help as well. http://kriesi.at/documentation/enfold/add-anchors-to-your-page-for-single-page-navigation/
Best regards,
IsmaelOctober 27, 2016 at 7:28 am in reply to: Fullscreen Slider Video withouth Vimeo Overlay but Image Overlay #704687Hi,
Great! Glad that you found a workaround. This issue is not that common and I’m sure that users will be able to search for it in the forum. :)
Best regards,
IsmaelHi,
Yes, that is possible but, unfortunately, it will require modifications that are outside the scope of support. Please consider hiring a freelance developer or contact our partner, codeable.
// http://kriesi.at/contact/customization
Best regards,
IsmaelOctober 27, 2016 at 7:25 am in reply to: Enfold Fullscreen Slider images now clipped on top for web browsers. #704684Hi,
It’s the default settings of the background images inside the fullscreen slider ever since. Some images, depending on their focal point, might not be centred properly in the container becasue the background size property is set to “cover” (http://www.w3schools.com/cssref/css3_pr_background-size.asp). One solution is to adjust the background position until you find the best settings that works for most images. Or you can use the following css modification.
.avia-fullscreen-slider .avia-slideshow>ul>li { background-position: 50% 50% !important; }Best regards,
IsmaelHi,
We accessed the files via FTP and edited the .htaccess file but the htaccess authentication is not defined. This is the only content of the .htaccess file.
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress// http://www.htaccesstools.com/articles/password-protection/
Please ask your hosting provider where to find the login details.
Best regards,
IsmaelOctober 27, 2016 at 6:47 am in reply to: Megamenu column header title – how to link to a product category page? #704677Hey craigriches,
Thank you for using Enfold.
I would like to check the page but encountered an internal server error. Please check with your hosting provider.
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator at (Email address hidden if logged out) to inform them of the time this error occurred, and the actions you performed just before this error.
More information about this error may be available in the server error log.In the Appearance > Menus panel, are you using the Product Categories directly? Or are you creating the links manually?
Best regards,
IsmaelOctober 27, 2016 at 6:43 am in reply to: advanced layout for blog posts breaking archive category page layout #704676Hi,
We are sorry for the late response. We understand the problem perfectly but we’re just trying to tell you that the theme doesn’t work that way by default. The archive page should not display the shortcodes so you must have done something different, a plugin or a modification, that we don’t know of. This or any info can help us solve the issue. Why do you have a loop-index.php file in the child theme? What did you modify there?
Best regards,
IsmaelOctober 27, 2016 at 6:19 am in reply to: Unwanted content displayed under menu when using safari on the iphone #704669Hi,
I’m trying to fix the issue but the changes are not affecting the site so I deactivated the cache plugin. The site fails to load after the deactivation. Please disable the wp-content > plugins folder by renaming it temporarily. We are very sorry for the inconvenience.
Best regards,
IsmaelOctober 27, 2016 at 6:02 am in reply to: Media Element "Image" receives Error fetching content – #704662Hi,
The “admin-ajax.php” is probably being blocked by your server. Please ask your hosting provider to unblock it.
This is one of the responses from SO forum:
Yes finally the problem was that the hosting provider had blocked the admin-ajax.php file saying that this file was receiving too many request, and requests to this file bypasses cache , hence it was causing problems on server :)
So now i’ll have to ‘convince’ them to turn it back on.
Thank you all for helping..
Best regards,
IsmaelHi,
1.) The size of the favicon image should be 16x16px or 32x32px with 8-bit or 24-bit colors. The current image is 52x52px.
2.) We modified the code in the functions.php file.
add_action('after_setup_theme','avia_remove_main_menu_flags'); function avia_remove_main_menu_flags(){ remove_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 9998, 2 ); remove_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 9998, 2 ); remove_action( 'avia_meta_header', 'avia_wpml_language_switch', 10); }Best regards,
IsmaelOctober 27, 2016 at 5:34 am in reply to: Diverse Probleme bei Benutzung vonVollbild-Slider und Slide-Show volle Breite #704659Hey!
The “black bar” occurs because the slider has to keep the video’s aspect ratio. If you want remove the “black bars”, edit the video slide and then set the Video Display to “Stretch Video”.
Best regards,
IsmaelOctober 27, 2016 at 5:24 am in reply to: Some issues with full screen slider and full width slider on mobile #704654Hey brand4!
Duplicate thread. Please continue here: https://kriesi.at/support/topic/diverse-probleme-bei-benutzung-vonvollbild-slider-und-slide-show-volle-breite/
Cheers!
IsmaelOctober 27, 2016 at 5:22 am in reply to: Issues with the WPML plugin after updating to Enfold 3.8 #704652Hi,
UPDATE: Please ignore my posts above. I was caught up with the advance layout builder feature of the theme, focused on the blog posts element and I forgot the default index.php file. It is possible to display the posts if you set the blog as the blog page in the Enfold > Theme Options > Where do you want to display blog? settings. We set the blog page and it display the posts from the english language.
// http://mikeyoungacademy.dk/da/blog/
Best regards,
IsmaelOctober 27, 2016 at 5:16 am in reply to: Issues with the WPML plugin after updating to Enfold 3.8 #704650Hi,
Thank you for the update.
I understand your inquiry just fine. You can’t display the posts from a different language when you’re using the theme. This option will only work if you’re using a default theme like twentysixteen because it is using the index.php file. Unfortunately, the theme is not using that file to display posts so you have to translate the posts and its categories or custom taxonomies.Best regards,
IsmaelOctober 27, 2016 at 5:14 am in reply to: WooCommerce products price display when using avia layout architect #704648Hi,
Did you use the last filter?
add_filter( 'woocommerce_show_variation_price', 'mmx_always_display_variation_price', 10, 3 ); function mmx_always_display_variation_price( $bool, $product, $variation) { return 1; }Best regards,
IsmaelHi,
Please adjust the css media queries.
@media only screen and (max-width: 1024px) { .only-desktop { display: none !important; } } @media only screen and (min-width: 1024px) { .only-mobile { display: none !important; } }Best regards,
IsmaelHey info224,
Thank you for using Enfold.
You can disallow that specific folder because it doesn’t contain any scripts which affect the frontend of the site.
// https://perishablepress.com/wordpress-robots-rules/
Best regards,
IsmaelHi,
Thank you for the info. Please set the user role to “administrator” so that we can check the entire settings of the search plugin. Or go to the Settings > Relevanssi panel then adjust the value of the “Minimum word length to index:” field from 3 to 5. Save the index and rebuild it. The search form should return more accurate results.
Did you implement the following functions?
// http://kriesi.at/documentation/enfold/use-relevanssi-in-search-instead-of-the-default-search/
Best regards,
IsmaelHi,
Are you referring to the table element? There is no toggle container in the page. Please try this css code in the Quick CSS field.
.tablepress tfoot th, .tablepress thead th { background-color: red; color: blue; padding: 10px; }Adjust the values as needed.
Best regards,
IsmaelOctober 27, 2016 at 4:39 am in reply to: Display issue with Enfold theme and Event Tickets Plus by Modern Tribe #704640Hi,
It is a styling or css issue. Please add this code in the Quick CSS field.
.single-tribe_events .cart { clear: both; }We tested it here: http://vip.etechnologie.pl/crm/szkolenie/prince2-practitioner-2/#toggle-id-6
Best regards,
IsmaelOctober 26, 2016 at 8:33 am in reply to: Full Width Sub Menu sticks below frame with the fixed frame layout #704166Hi,
Thank you for the info. Please post the FTP details here so that we can test it thoroughly. What are the changes added on those files (avia_minus.js and avia_new.js)?
Best regards,
IsmaelHi,
Did you remove the browser cache or hard refresh the page? Please adjust the padding value if necessary.
@media only screen and (max-width: 1200px) { .av-main-nav > li > a { padding: 0 8px !important; } }Best regards,
IsmaelHi,
However the banner problem still persists. If anyone knows what to do, please let me know. Would be much appreciated <3
Have you tried using a non-gif format file or image?
And what is the actual model of your tablet? I’m asking because some mobile device have an issue with gif formatted image.
Best regards,
IsmaelHi,
We are very sorry for the late response. I checked the site and it is translated to the Croatian language. Which specific text or strings are you trying to translate? Please use the following plugin to translate those text. https://wordpress.org/plugins/loco-translate/
What google font are you trying to add? Do you have a child theme? If you don’t have one, please create a child theme folder then move your theme options. Here’s how: http://kriesi.at/documentation/enfold/using-a-child-theme/
Best regards,
IsmaelOctober 26, 2016 at 8:05 am in reply to: Frontend gibt Fehler aus was habe ich falsch gemacht? Was muß ich ändern? #704153Hey holznermartina,
Thank you for using Enfold.
Did you use an old database or is this a new installation? What is the version of the theme? Please try the solution in the following thread.
// https://kriesi.at/support/topic/php-7-content-section-error/#post-547605
Best regards,
IsmaelHey radugidei,
Thank you for using Enfold.
This is possible but the search form will be limited to products. It won’t be able to fetch other post types. Please add this in the functions.php file:
// add post type product add_action('ava_frontend_search_form','ava_frontend_search_form_mod'); function ava_frontend_search_form_mod() { echo '<input type="hidden" name="post_type" value="product">'; }Best regards,
IsmaelHi,
This is possible but you have to do it manually because there is no default element in the advance layout builder with this option. Please check the following link.
// https://kriesi.at/support/topic/masonry-grid-and-related-light-boxes/#post-566459
Best regards,
Ismael - 
		AuthorPosts
 
