Forum Replies Created
-
AuthorPosts
-
Hi,
I’m sorry but we can’t help you further if we can’t access the site. Are you sure that you disabled the “evo-lightbox” plugin? I can still see its markup when I check the page.
Best regards,
IsmaelNovember 17, 2016 at 5:29 am in reply to: Content not hiding in desktop Windows and IE using 'display: none;' #713359Hi,
I’m sorry but IE8 do not support css media queries but those rules should be applied on IE9 and later versions.
// http://caniuse.com/#feat=css-mediaqueries
Best regards,
IsmaelHey NorthernLars,
Thank you for using Enfold.
The test site does not exist. What are you going to use for the listings? Are those posts? Please try the magazine element.
Best regards,
IsmaelNovember 17, 2016 at 5:13 am in reply to: Is it possible to add bullets infront of fullwith submenu items in the mobile #713352Hi,
Did you remove the browser cache before testing the page? This is what we see on our end.
Best regards,
IsmaelNovember 17, 2016 at 5:10 am in reply to: Masonry gallery images with Portfolio grid effect? #713350Hi,
The element that you’re looking for is the Portfolio Grid element (http://kriesi.at/themes/enfold/portfolio/portfolio-3-column/). Unfortunately, you cannot apply the same hover effect for the masonry element without modifying one of the parent theme files.
// https://kriesi.at/support/topic/add-hover-effect-to-masonry-gallery/#post-685471
Best regards,
IsmaelNovember 17, 2016 at 5:05 am in reply to: Problem with header in blog area, switching Layout Typ , Enfold Template #713347Hi,
The issue with the “News” page’s sidebar is caused by the “Print Friendly and PDF” plugin. Please contact the plugin author for more info or try another plugin.
// http://artbase-software.de/blog/
Best regards,
IsmaelHi,
the problem is not about visibility of the banner. If you scroll down the page you will see an error. Please read the thread for more information.
I thought that the issue is that the banner is not visible on iPad. What error are you referring to?
Best regards,
IsmaelHi,
Great! Glad it is fixed!
P.S: Please leave a review for the theme (https://themeforest.net/downloads) if you have the time. Thank you. Have a nice day!
Best regards,
IsmaelNovember 16, 2016 at 4:49 am in reply to: Logo center, navigation to the left & right of logo #712737Hi,
Please add this in the Quick CSS field.
#header { margin-top: -50px; }Best regards,
IsmaelHi,
There is a text block with lots of br tags. What is that for? You cannot use negative values for the “avf_parallax_speed” filter because it’s going to decrease the height of the parallax container relative to the color section. The value has to be greater than 0.
Best regards,
IsmaelNovember 16, 2016 at 4:39 am in reply to: Portfolio Pages are not being responsive to mobile #712735Hi,
Some of the sections are outside the wrap_all container and that’s why they are not responsive. Is it ok if we deactivate the plugins while working on the site?
Best regards,
IsmaelHey Blueberry007,
Thank you for using Enfold.
I’m sorry but this is not possible because the “link” posts do not contain any special class attribute which we could have use to distinguish them from other post formats. You have to modify the config-templatebuilder > aviashortcodes > postslider.php file. This file contains the script for the grid layout.
Best regards,
Ismael6666Hey ronmann,
Thank you for using Enfold.
Please replace the “avf_builder_boxes” filter with the following.
add_filter('avf_builder_boxes', 'avf_builder_boxes_mod'); function avf_builder_boxes_mod($metabox) { foreach($metabox as &$meta) { if($meta['id'] == 'avia_builder' || $meta['id'] == 'layout') { $meta['page'][] = 'sfwd-lessons'; /*instead add the name of the custom post type here*/ $meta['page'][] = 'sfwd-courses'; $meta['page'][] = 'sfwd-quiz'; $meta['page'][] = 'sfwd-topic'; } } return $metabox; }Best regards,
IsmaelNovember 16, 2016 at 4:14 am in reply to: Fullwidth Easy Slider Not responsive on Cell- Caption Content and Button #712725Hi,
We added the following css code in the Quick CSS field.
@media only screen and (max-width: 767px) { .avia-slideshow-inner, .avia-slideshow-inner img { height: 400px !important; } .avia-slideshow-inner img { min-width: 1200px !important; margin-left: -600px !important; } }This will apply a minimum height to the slider, creating more space for the captions and buttons. Please remove browser cache or hard refresh before testing the page.
Best regards,
IsmaelHi,
I found out that this is a wpengine issue. Please check this thread.
Normally we disable ORDER BY RAND() orderings in MySQL queries because this is a big no-no for large databases which we’ve seen cause massive slow-downs for dozens of our customers. However, you can enable it if you know what you’re doing, for example if you cache the results for 5-15 minutes so that you’re not pummeling the database with these slow queries.
I enabled the Allow ORDER BY RAND() option in the WP Engine’s dashboard and it’s working now.
Best regards,
IsmaelHey MaaikeVVV,
Thank you for using Enfold.
1.) You can set the font in a lot of ways. If you want to set a general font for the body or heading texts, go to the Enfold > General Styling > Fonts panel. In the Advanced Styling panel, you can set the style of a specific element. You can also use the Quick CSS field if you want to apply a custom modification to a certain element. If you’re going for a custom font, use the @fontface rule.
// http://www.w3schools.com/cssref/css3_pr_font-face_rule.asp
2.) Use this for the posts title in the blog overview page.
#top .fullsize .template-blog .post-title { font-size: 35px !important; }3.) Please try the following plugins.
// https://wordpress.org/plugins/convert-post-types/
// https://wordpress.org/plugins/post-type-converter/Best regards,
IsmaelHi,
Thank you for the link. Please add this in the Quick CSS field.
.current-menu-item .avia-menu-text { color: red; }Adjust the value as you wish.
Best regards,
IsmaelHi,
The lightbox is disabled. If you click on the image, it will redirect to the actual image instead of opening the lightbox.
Best regards,
IsmaelNovember 16, 2016 at 3:32 am in reply to: Masonry gallery shortcode doesn't work on further blog pages #712711Hi,
I see. Thanks for the clarification. Please post the login details here so that we can check the posts from page 2 or 3.
Best regards,
IsmaelHi,
1.) You create a folder called “includes” in the child theme folder and then create a copy of the loop-index.php file.
2.) You have to edit the template directly.
below is missing date and comments:
They are missing because you disabled it in the Theme Options > Blog Layout > Blog meta elements panel. You can add this in the Quick CSS field.
#top .av-blog-meta-date-disabled .minor-meta.date-container, #top .av-blog-meta-date-disabled .text-sep-date { display: inline-block; } #top .av-blog-meta-comments-disabled .minor-meta.comment-container, #top .av-blog-meta-comments-disabled .text-sep-comment { display: inline-block; }Best regards,
IsmaelHi,
Edit the page, set the header to transparent then add a color section. Set the image as the color section’s background.
Best regards,
IsmaelHi,
I’m sorry but that is not possible without major modifications on the theme. Please hire a freelance developer or contact our partner, codeable. http://kriesi.at/contact/customization
Best regards,
IsmaelHi,
We added the following css code in the Quick CSS field.
.html_bottom_nav_header .cart_dropdown { margin: -25px 0 0 0; } .html_visible_cart .cart_dropdown { right: 5px; }Best regards,
IsmaelNovember 16, 2016 at 3:21 am in reply to: Enfold Theme Options Not Working: "Select a predefined color scheme" #712706Hi,
Do you need the shrinking header behavior? Please post the login details here so that we can check the settings. Or try this in the Quick CSS field.
#top #header_main > .container, #top #header_main > .container .main_menu ul:first-child > li > a, #top #header_main #menu-item-shop .cart_dropdown_linkav-logo-container { min-height: 129px !important; }Regards,
IsmaelHey Ikyo,
Thank you for using Enfold.
Do you have any https or ssl plugins installed? You might want to deactivate those and see if the issue goes away. And please update the theme to version 3.8.1.
Best regards,
IsmaelHi,
Where is it redirected? The site seems fine when I visited it. Please check the .htaccess file and post the code on pastebin.com.
Best regards,
IsmaelHi,
Thank you for the info. Please try this code in the Quick CSS field.
.blockUI.blockOverlay:before { height: 1em; width: 1em; display: block; position: absolute; top: 50%; left: 50%; margin-left: -.5em; margin-top: -.5em; display: block; content: ""; background: url(../images/icons/loader.svg) center center; background-size: cover; line-height: 1; text-align: center; font-size: 2em; color: rgba(#000,0.75); -webkit-animation: spin 1s ease-in-out infinite; -moz-animation: spin 1s ease-in-out infinite; -o-animation: spin 1s ease-in-out infinite; animation: spin 1s ease-in-out infinite; }Best regards,
IsmaelHi,
Please replace the code in the functions.php file:
add_filter('avf_form_from', 'avf_change_cf_from', 10, 3); function avf_change_cf_from($from, $new_post, $form_params) { $from = urldecode($new_post['2_1']); return $from; }Best regards,
IsmaelHi,
Do you want to remove the date from the widget template or remove the widget completely? If you want to remove the date from the template, you have to edit the framework > php > class-framework-widgets.php file, remove the line 559:
echo "<span class='news-time'>".get_the_time($time_format)."</span>";Best regards,
Ismael -
AuthorPosts
