Forum Replies Created
-
AuthorPosts
-
Hey!
The h tags are in the sidebar where you put your test. But I notice that only that first title is h4, with the rest being h3.
The filter will only work if the widgets are inside a custom widget area. If you need every widget area to have the title as h4, edit the includes > register-widget-area.php file.
Cheers!
IsmaelSeptember 22, 2016 at 5:09 am in reply to: Is there a way to get Video Media Element Player to stop at the end of video? #690045Hi alliancepp!
Thank you for using Enfold.
Please use the Video element under the Media Elements panel instead of the code block element. The loop parameter is disabled by default.
Best regards,
IsmaelHi!
After adding the code, go to the page with the issue and then you’ll see the actual shortcodes below the advance layout builder. Copy the shortcodes then post it on pastebin.com. And please update the theme to version 3.8 and WordPress to 4.6.1.
Regards,
IsmaelHi!
I don’t know what to do. When I open the site on mobile device the masonry gallery shows only Title and caption
The masonry content container covers the image container. This is the default behaviour on mobile if the Size Settings is set to “Perfect Grid”. You can either hide the content container or increase the height of the masonry sizer. Add this in the Quick CSS field if you want to increase the height:
@media only screen and (max-width: 767px) { .av-fixed-size .av-masonry-entry .av-inner-masonry-sizer { padding-bottom: 120%; } }Best regards,
IsmaelSeptember 22, 2016 at 4:51 am in reply to: Customize blog posts widget change color of title and body – 2 different colors #690040Hey mcraig77!
Thank you for using Enfold.
Add a custom css class to the blog posts element, use “custom-blog” for example, then add this in the Quick CSS field:
#top .custom-blog h3 a { color: red; } #top .custom-blog .slide-entry-excerpt { color: blue; }Regards,
IsmaelSeptember 22, 2016 at 4:45 am in reply to: Adding custom css to an individual image in a masonry gallery #690039Hi!
We managed to make it work in the test page but we had to disable the theme’s default lightbox. And we added this code in the functions.php file:
add_action('wp_footer', 'ava_custom_script'); function ava_custom_script(){ ?> <script type="text/javascript"> (function($) { function gh() { var i = 0; $('#masonry-flipbook .av-masonry-entry').each(function(i){ $(this).addClass('flipbook' + i); i++; }); } gh(); })(jQuery); </script> <?php }Cheers!
IsmaelSeptember 22, 2016 at 4:20 am in reply to: using glassy header how do I set the font colour? #690038Hi Erich Nolan!
Thank you for using Enfold.
Please remove the css modification then go to the Enfold > Header > Transparency Options panel. Set the Transparency menu color option.
Cheers!
IsmaelHey!
I’m sorry but there is nothing wrong with portfolio grid filter. The filter will only display if it’s not empty or if an item which belongs to that filter or term is present in the current page. There’s no point calling an empty filter because it will just render the page or portfolio container blank.
Best regards,
IsmaelHi Deb!
Thank you for using Enfold.
Install the following plugin then go to the Settings > Media panel. Adjust the size of the widget thumbnail, update, save then regenerate the images. https://wordpress.org/plugins/simple-image-sizes/
Best regards,
IsmaelHi,
Yes, unfortunately, that is the case for now. Kriesi is working to improve this feature but it might take a while and there’s no ETA yet.
There is a workaround but you need to install the following plugin. Go to the Settings > 301 Redirects panel, set the Request path (tag url) and the Destination path (the custom tag page). https://wordpress.org/plugins/simple-301-redirects/
Best regards,
IsmaelHey bukkadesign,
Thank you for using Enfold.
The post navigation can only fetch previous or next posts adjacent to the current post because it is based on the get_previous_post and get_next_post function. I’m sorry but you cannot set this script to sort alphabetically.
// https://codex.wordpress.org/Function_Reference/get_next_post
// https://codex.wordpress.org/Function_Reference/get_previous_postBest regards,
IsmaelSeptember 20, 2016 at 5:05 am in reply to: on Mega Menu show in front of list points the featured image #688912Hi,
Thank you for the info. Please try this in the functions.php file:
add_filter('wp_nav_menu_objects', 'avf_wp_nav_menu_objects', 10, 2); function avf_wp_nav_menu_objects($sorted_menu_objects, $args) { // check menu name if ($args->menu->name != 'Main Menu') return $sorted_menu_objects; // edit the menu objects foreach ($sorted_menu_objects as $menu_object) { // searching for menu items linking to posts or pages // can add as many post types to the array if ( in_array($menu_object->object, array('post', 'page', 'portfolio', 'products')) ) { // set the title to the post_thumbnail if available // thumbnail size is the second parameter of get_the_post_thumbnail() $menu_object->title = has_post_thumbnail($menu_object->object_id) ? $menu_object->title . get_the_post_thumbnail($menu_object->object_id, 'thumbnail') : $menu_object->title; } } return $sorted_menu_objects; }Change the menu name from “Main Menu” to the name of your main menu set in the Appearance > Menus panel. It will return the menu title plus the featured image. It will require a few style adjustments.
Best regards,
IsmaelHi,
Thank you for the info.
The permalink settings is invalid. We fixed it and the link to the post is working now.
// http://sacramentoukrchurch.org/news/thanksgiving-%D1%81%D0%B2%D1%8F%D1%82%D0%BE-%D0%B6%D0%BD%D0%B8%D0%B2-september-25th-2016
// http://sacramentoukrchurch.org/sermon/wedding-sermonBest regards,
IsmaelSeptember 20, 2016 at 4:43 am in reply to: Help! Was adding a page to the Menu and all went crazy! #688909Hi,
1-3). You can choose between the .htaccess or the php.ini fix but the .htaccess is commonly use by the client because the php.ini is usually accessible only to the server admin. The modifications should be retained after the update and it won’t affect the current menu items. And while you’re on it, please ask your hosting provider to increase the memory limit from 40M to at least 128M because the current limit won’t be able to handle the advance layout builder.
// http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
4.) There are some Enfold installations with the Ubermenu plugin installed but I don’t think you need the plugin to fix this issue. Make sure that the menu is set as Enfold Main Menu under the Theme Locations.
Best regards,
IsmaelSeptember 20, 2016 at 4:37 am in reply to: sidebar in single product pages and shp overview page #688908Hi,
Yes, it should be retained after the update because you’re using a custom snippet plugin. :)
Best regards,
IsmaelHi,
Thank you for using Enfold.
Yes, this is actually possible but we decided not to enable it on mobile due to incompatibility issues like the one stated above. Another workaround is to add an actual video element in place of the video background when viewing on mobile. http://kriesi.at/documentation/enfold/hide-menu-itemselements-on-mobile/
Related topics:
// https://kriesi.at/support/topic/home-page-video-on-mobile-phone/#post-449787
// https://kriesi.at/support/topic/no-video-on-the-mobile-version/Best regards,
IsmaelSeptember 20, 2016 at 4:25 am in reply to: Slider height adjustment for mobile view NOT on home page #688904Hi,
The css code is not valid. It should be:
@media only screen and (max-width: 886px) { .page-id-861 .avia-caption-content { font-size: 11px !important; } .page-id-861 .responsive #top .slideshow_caption h2 { font-size: 17px !important; } } @media only screen and (max-width: 425px) { .page-id-861 .avia-slideshow-inner, .avia-slideshow-inner img { height: 100px !important; } }And use standard css media queries. https://css-tricks.com/snippets/css/media-queries-for-standard-devices/
Best regards,
IsmaelHey Chris_85,
Thank you for using Enfold.
We tried to login to the site but the credentials are incorrect. Please check it carefully and make sure that you have the latest version of the theme. What page did you add the script to?
Best regards,
IsmaelHey Ronaldgoudriaan,
Thank you for using Enfold.
I’m sorry but we can’t get past the “my account” page. Make sure that the user role is set to admin. And regarding the issue, it looks like you’re using a woocommerce shortcode. Is that right? Please try the advance layout builder’s Product Grid element instead.
Best regards,
IsmaelHi,
Please add this in the Quick CSS field:
.avia-slideshow, .avia-slideshow-inner { overflow: visible; } .avia-slideshow { padding-bottom: 100px; } .avia-caption { bottom: -100px; } .avia-slideshow-dots { bottom: 100px; }Best regards,
IsmaelSeptember 20, 2016 at 4:13 am in reply to: Enfold with WPML : Fontawesome icons don't display #688899Hi,
We can still see the same error:
https://test.ethiopiatropicaltours.com’ has been blocked from loading by Cross-Origin Resource Sharing policy: No ‘Access-Control-Allow-Origin’ header is present on the requested resource. Origin ‘https://testfr.ethiopiatropicaltours.com’ is therefore not allowed access.
On which domain did you put the .htaccess file and the CORS fix? It should be added to the “testfr” domain.
Best regards,
IsmaelSeptember 20, 2016 at 4:09 am in reply to: Perfect Grid Masonry: Possbile to have description below instead of overlay img? #688898Hey Desire,
Thank you for using Enfold.
I’m sorry but this is not possible but you can increase the image container on smaller screens:
@media only screen and (max-width: 989px) { .av-fixed-size .av-masonry-entry .av-inner-masonry-sizer { padding-bottom: 120%; } }Best regards,
IsmaelSeptember 20, 2016 at 4:07 am in reply to: How to add sidebar to woocommerce products categories pages #688897Hi,
The product category pages should have sidebars enabled by default as long as the Enfold > Sidebar Settings > Sidebar on Archive Pages is not set to “no sidebar”. Unfortunately, it’s not working in your installation. Please update the theme to the latest version, 3.8.
Best regards,
IsmaelHi,
This is possible but you have to add it on every page manually. Add a color section then insert the logo/partner element. Save the color section as template so that you can easily add it again on every page.
Another workaround is to edit the footer.php and render the shortcode there. You’ll need to use the do_shortcode function plus the actual shortcode of the logo/partner element. https://developer.wordpress.org/reference/functions/do_shortcode/
Best regards,
IsmaelSeptember 20, 2016 at 3:14 am in reply to: Table with different column widths and row background color #688892Hi,
Thank you for using Enfold.
Please add this in the Quick CSS field:
.page-id-919 .avia-table { table-layout: auto; } .page-id-919 .avia-table tr td:nth-child(1) { width: 5%; } .page-id-919 .avia-table tr td:nth-child(5) { width: 40% !important; }Best regards,
IsmaelSeptember 20, 2016 at 3:04 am in reply to: Issues with non responsive menu items & button appearance #688891Hi,
Thank you for the info. And sorry for the delay.
I can see the issue with the buttons but the main menu looks perfectly fine. Please add this in the Quick CSS field:
@media only screen and (max-width: 1024px) { .avia-button.avia-size-large { font-size: 18px; } }And please remove this invalid css code inside the Quick CSS field or the style.css file:
.avia-button-center { display: center; padding: 0 5px; }Best regards,
IsmaelSeptember 20, 2016 at 3:00 am in reply to: Fixed background not working on Mobile (iOS 9.3.5) #688890Hi,
Could you please provide a screenshot of the issue? Aside from the huge custom padding of the cell container, I don’t see any issue with the home page. The mobile view may look different compare to the desktop view because of the background image size relative to the screen size. We can apply a different background image, smaller than the current one, for mobile view.
@media only screen and (max-width: 767px) { .main_color { background: #212121 url(//create.madomains.com/wp-content/uploads/2016/09/backgroundformobileviewhere.png) bottom right no-repeat fixed; } }Adjust the “backgroundformobileviewhere” placeholder.
Best regards,
IsmaelHey!
We modified the php and the css code a bit. Please test it again. If it’s not working, please post the login details here so that we can check the site.
This is the updated code: https://kriesi.at/support/topic/align-fullwith-buttons-in-grid-row/#post-686764
Best regards,
IsmaelSeptember 20, 2016 at 2:42 am in reply to: Contactform doesn't change subject to danish even if I fill out the subject box #688887Hi,
Thank you for the info but I think you forgot to include the site url. Please check and make sure that the site is running on the latest version of the theme, 3.8.
Best regards,
IsmaelHi,
Glad that you found the culprit. 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,
Ismael -
AuthorPosts
