Forum Replies Created

Viewing 30 posts - 46,801 through 46,830 (of 66,027 total)
  • Author
    Posts
  • in reply to: Button Issue on Mobile Devices #465856

    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,
    Ismael

    in reply to: Social Media Icons #465855

    Hey!

    Looks like you can’t override the default css. What happens when you add this?

    .social_bookmarks_rss a::before {
    content: '';
    }

    Cheers!
    Ismael

    in reply to: On Portfolio – No Expand image symbol #465851

    Hey!

    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!
    Ismael

    in reply to: Technical Question #465845

    Hey 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,
    Ismael

    Hi!


    @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,
    Ismael

    Hi!


    @webdesignphx
    : I checked the site and it’s not using the latest version of theme. Please update to version 3.2.1.

    Cheers!
    Ismael

    Hey!

    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!
    Ismael

    in reply to: Create Header Top Right Widget #465462

    Hey 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!
    Ismael

    in reply to: Customizing error404 page #465460

    Hey!

    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,
    Ismael

    in reply to: Testimonials keep disappearing #465454

    Hey!

    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,
    Ismael

    Hi 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,
    Ismael

    Hi!

    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!
    Ismael

    in reply to: Image as caption on slider #465443

    Hi!

    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!
    Ismael

    in reply to: Google Map full width breaks footer socket icons #465442

    Hey!

    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!
    Ismael

    in reply to: 404page #465441

    Hi!

    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!
    Ismael

    in reply to: row grid + team member == weird behavior / bug??? #465437

    Hi 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!
    Ismael

    Hi!

    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,
    Ismael

    in reply to: Masonry Troubles #465435

    Hi!

    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,
    Ismael

    in reply to: Change to mobile mode sooner #465433

    Hi 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!
    Ismael

    in reply to: Homepage jerky / shaky scrolling #465430

    Hi 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=en

    Cheers!
    Ismael

    in reply to: Fullwidth Easy Slider – Navigation #465429

    Hi 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,
    Ismael

    in reply to: Pages Slider #465425

    Hi etaleem!

    Thank you for using Enfold.

    You can try to use the Content Slider, set the column settings to 4.

    Best regards,
    Ismael

    in reply to: Problem with category view and WPML #465424

    Hey!

    Actually, they are more of a warning than an error, not really critical. Glad it is hidden now. :)

    Best regards,
    Ismael

    in reply to: post in lightbox #464896

    Hi 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!
    Ismael

    in reply to: Site problem with Explorer 8 #464894

    Hey!

    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!
    Ismael

    in reply to: Problem with category view and WPML #464890

    Hey!

    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!
    Ismael

    in reply to: Masonry Gallery WPML URL Support #464889

    Hi!

    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,
    Ismael

    in reply to: Major speed problem in backend with wpml and enfold #464885

    Hey!

    Alright. Glad it is working now. :)

    Cheers!
    Ismael

    in reply to: Builder not visible #464883

    Hey 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!
    Ismael

    in reply to: Auto Update of theme is not working #464878

    Hi!

    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

Viewing 30 posts - 46,801 through 46,830 (of 66,027 total)