Forum Replies Created
-
AuthorPosts
-
Hi!
Did you open a new thread where Kriesi replied? Where can we find it? I checked our “Issues” list but I don’t see anything about this particular issue. We’ll ask Kriesi to check this thread personally. Again, I’ll ask the rest of the support team to check the test page:
http://www.unpluggedeventlighting.com/lighting-design-test-page/
Regards,
IsmaelHey!
Looks like you can’t override the default css. What happens when you add this?
.social_bookmarks_rss a::before { content: ''; }
Cheers!
IsmaelHey!
Alright. I was able to reproduce the issue so I created a test page here: http://www.tobiasgrimm.de/test-temp
I added another color below the first color section then relocate the content, it somehow fixed the issue.
Cheers!
IsmaelHey jorge42189!
Thank you for using Enfold.
1.) There is no default option in the theme where you can add extra text under the copyright field so you have to edit the footer.php file directly.
2.) You can add this in the functions.php file:
add_action('ava_after_main_container', function() { echo "<a href='#' class='click-me-toggle'>Click This</a>"; }); add_action('wp_footer', 'ava_custom_script', 10); function ava_custom_script(){ ?> <script> (function($) { var sidebar = $('.html_header_left #top #header'); $('.click-me-toggle').click(function() { $(sidebar).toggle(); }); }(jQuery)); </script> <?php }
You’ll find a “Click This” text on top of the content. Use css to adjust the position and style of the link.
Regards,
IsmaelJune 29, 2015 at 1:45 pm in reply to: An error occurred while updating Enfold: Could not create directory. #465835Hi!
@schoop: Themeforest or envato handles the servers where you download the files from including the items’ file name. I’m not sure if there is any file name length restriction or if that limitation even exist but you can try to contact the envato support about that info.
@scotthco: When you try to update the theme, the file directory should be included in the error log. If you check the php info page of your server, that directory is the value in the upload_tmp_dir directive.If you can’t update the theme in the updates panel, please update it via FTP.
Best regards,
IsmaelJune 29, 2015 at 1:36 pm in reply to: website does not load with internet explorer but works with chrome and safari??? #465828Hi!
@webdesignphx: I checked the site and it’s not using the latest version of theme. Please update to version 3.2.1.Cheers!
IsmaelJune 28, 2015 at 8:29 am in reply to: Mobile version of portfolio generates white gaps between photos #465464Hey!
Is the screenshot on mobile view? I asked because it’s on a single column. I would like to check the page but the site is on maintenance mode. Please provide a temporary login details.
Cheers!
IsmaelHey Lukevdp!
Thank you for using Enfold.
Use the the ava_main_header instead of the ava_after_main_menu hook. You can find that hook in the includes > helper-main-menu.php file. Or adjust the css position property of the widget to absolute.
Cheers!
IsmaelHey!
Please place this code in the function.php file to remove the other tabs: http://pastebin.com/aYVSuTZ2
Add this in the Quick CSS field:
.widget_tab_popular, .widget_tab_comments { display: none !important; }
Regards,
IsmaelHey!
I’m sorry but are you saying that the content slider have the same issue? What is the current version of safari? And what is your OS?
Regards,
IsmaelJune 28, 2015 at 8:11 am in reply to: Avia Layout Builder – Master templates or master elements #465452Hi papashivo!
Thank you for using Enfold.
I’m a bit confused about the “widget” word here because it is usually related to the wp sidebar but in context, looks like you’re referring to a page template. Is that right? You can save a template layout using the advance layout builder but you can’t update all pages that are using this template automatically.
Regards,
IsmaelJune 28, 2015 at 8:03 am in reply to: Icons won't display on some computers on home page only #465447Hi!
Icon loads fine on my browser as well. What browser is your client using? Please ask your client to check it on another computer. Refer to this link for a possible fix: https://support.mozilla.org/en-US/questions/1016919
Cheers!
IsmaelHi!
You can add html tags in the easy slider caption. So, you add another image inside an image. Regarding the layer slider, unfortunately, that is the only demos included in the theme. You can contact the layer slider author for more info.
Cheers!
IsmaelHey!
Alright. I can see it now. Please look for this code in the css > layout.css file:
#top #wrap_all .av-social-link-twitter:hover a
If it’s not there, please get a fresh copy of the file then override the old one. Or add this in the Quick CSS field:
#top #wrap_all .av-social-link-twitter:hover a { color: #fff; background-color: #46d4fe; } #top #wrap_all .av-social-link-facebook:hover a { color: #fff; background-color: #37589b; }
Cheers!
IsmaelHi!
Why do you need to include it in the site map? It is a 404 error page, an error page.. there’s nothing useful there aside from a few redirect links to useful pages. Is there any documentation where google requires a 404 page? If there is, we surely want to know.
Cheers!
IsmaelHi Mike!
Thank you for using Enfold.
The grid row will always go full width and it will push the sidebar underneath, same with the color section element. So basically, if you want to have a sidebar in a page and you want it to go to its default place, don’t use these elements.
Cheers!
IsmaelJune 28, 2015 at 7:35 am in reply to: Move Social Icons / Remove Lightbox for Members Element #465436Hi!
You can modify the config-templatebuilder > aviashortcodes > team.php file, look for this code:
if(!empty($socials)) { $output .= "<div class='team-social'>"; $output .= "<div class='team-social-inner'>"; foreach($socials as $social) { //set defaults $social['attr'] = shortcode_atts(array('link' => '', 'link_target' => '', 'icon' => '','font'=>'','title' => '' ), $social['attr'], 'av_social'); //build link for each social item $tooltip = $social['attr']['title'] ? 'data-avia-tooltip="'.$social['attr']['title'].'"' : ""; $target = $social['attr']['link_target'] ? "target='_blank'" : ""; //apply special class in case its a link to a known social media service $social_class = $this->get_social_class($social['attr']['link']); if(strstr($social['attr']['link'], '@')) { $markup = avia_markup_helper(array('context' => 'email','echo'=>false, 'custom_markup'=>$custom_markup)); } else { $markup = avia_markup_helper(array('context' => 'url','echo'=>false, 'custom_markup'=>$custom_markup)); } $display_char = av_icon($social['attr']['icon'], $social['attr']['font']); $output .= "<span class='hidden av_member_url_markup {$social_class}' $markup>".$social['attr']['link']."</span>"; $output.= "<a rel='v:url' {$tooltip} {$target} class='{$social_class} avia-team-icon ' href='".$social['attr']['link']."' {$display_char}>"; $output.= "</a>"; } $output .= "</div>"; $output .= "</div>"; }
Place it underneath the team-member-description container. Please create a changelog or a note about this modification in case you update the theme.
Best regards,
IsmaelHi!
Unfortunately, that is not possible because it will break the isotope script which calculates the position of the columns, which means breaking the masonry grid.
Regards,
IsmaelHi mrivanp!
Thank you for using Enfold.
Please try to add this in the Quick CSS field to change the width of the columns on mobile device:
@media only screen and (max-width: 767px) { div .av_one_half { margin-left: 6%; width: 47%; }}
Cheers!
IsmaelHi Kamram!
Thank you for using Enfold.
This is actually a browser flaw. Chrome and IE don’t have this smooth scroll feature, unlike firefox, that’s why they create third party plugin for smooth scrolling. Is this only happening when you use the mouse scroll wheel? The scroll is pretty smooth when you use the browser scrollbar.
https://chrome.google.com/webstore/detail/smoothscroll/nbokbjkabcmbfdlbddjidfmibcpneigj?hl=en
https://chrome.google.com/webstore/detail/chromium-wheel-smooth-scr/khpcanbeojalbkpgpmjpdkjnkfcgfkhb?hl=enCheers!
IsmaelHi ikeaunicorn!
Thank you for using Enfold.
Slider looks OK on our own installation. Make sure that you have the latest version of the theme which is 3.2.1.
Best regards,
IsmaelHi etaleem!
Thank you for using Enfold.
You can try to use the Content Slider, set the column settings to 4.
Best regards,
IsmaelHey!
Actually, they are more of a warning than an error, not really critical. Glad it is hidden now. :)
Best regards,
IsmaelHi master-t!
Thank you for using Enfold.
I’m sorry but there is no option in the theme to open blog posts in a lightbox. However, you can create custom links that can open external url. Something like this: https://kriesi.at/support/topic/open-iframe-in-lightbox-modal-window/#post-442817
Cheers!
IsmaelHey!
This is what I see when I checked the site on IE8.
Let’s try to fix each element one at a time:
1.) For the vip menu items, use this:
#menu-item-4385 a .avia-menu-text { width: 97px; }
2.) Fix the logo with this:
.avia-msie .logo a img { height: 63px; }
IE8 is a legacy browser which lacks support for modern web technologies so expect to find a few glitches in the design. Unfortunately, we will not be able to fix all the issues.
Cheers!
IsmaelHey!
On another thread with the same issue, hiding the warnings work. https://kriesi.at/support/topic/warning-mysqli_real_escape_string-expects-parameter-2-to-be-string/#post-463166
Cheers!
IsmaelHi!
I’m sorry if I can’t fix the issue, I’ll ask the rest of the support to check it. If possible, please contact the WPML support, maybe they can find the issue. If you want to hire someone to fix it, you can contact codeable: http://kriesi.at/contact/customization
Regards,
IsmaelHey Jason!
Thank you for using Enfold.
Which page specifically? Is this happening on a newly created page? I checked this page and it is displaying the advance layout builder content: http://jealous.4jdesigns.net/wp-admin/post.php?post=97&action=edit
Please try to remove browser cache or test it on another browser.
Cheers!
IsmaelHi!
Please try to generate a new api key then use it in the updates panel. Wait for a few hours or check the update manually. If it doesn’t work, try to update the theme via FTP. http://kriesi.at/documentation/enfold/portfolio-item/update-theme-files-with-ftp/
Regards,
Ismael -
AuthorPosts