Forum Replies Created

Viewing 30 posts - 57,361 through 57,390 (of 67,197 total)
  • Author
    Posts
  • in reply to: Menu Bar, No Logo #287614

    Hi!

    Thank you for the update.

    First, set the height of the header on Enfold > Header Layout > Header layout panel. Look for Header Size then select the custom pixel value option. Adjust the height then add this on Quick CSS or custom.css:

    strong.logo.bg-logo {
    display: none;
    }

    Best regards,
    Ismael

    in reply to: Seitentitel immer anzeigen lassen #287613

    Hi Olligator!

    Thank you for using the theme!

    From what I understand, you want a fixed header. Is that correct? You can change the behavior of the header on Enfold > Header Layout > Header Behavior. Enable the Sticky Header.

    Best regards,
    Ismael

    Hey!

    Thank you for the update.

    I checked the link and the title is already “Screenings”. Please remove browser cache then reload the page a few times.

    Best regards,
    Ismael

    in reply to: Header on bbPress forum pages #287611

    Hey!

    Thank you for the update.

    You can enable the Header Title on Enfold > Header Layout panel. Set the Header Title and Breadcrumbs settings. If that is not what you’re looking for, a screenshot will help.

    Best regards,
    Ismael

    in reply to: How best to display portfolio entries #287610

    Hi Andrea!

    As always, thank you for using the theme!

    Did you place the masonry element on a column layout? If yes, please remove the column then let the masonry element span through the whole width of the container. There should be at least 4 columns on the masonry element.

    Regards,
    Ismael

    in reply to: SWAP EASY SLIDER IMAGE FOR MOBILE #287609

    Hi!

    Thank you for the update.

    First, you need to add a unique selector for each sliders. Edit functions.php, find this code:

    if(isset($avia_config['use_child_theme_functions_only'])) return;
    

    Below, add this code:

    add_theme_support('avia_template_builder_custom_css');
    

    http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Edit the sliders then add a unique css selector on “Custom Css Class” field. Add hide-mobile on those elements that you want to hide on mobile device and hide-desktop for those that you want to hide on desktop view. Use css media queries to alter their presence on different view port:

    @media only screen and (min-width: 990px) {
      .hide-mobile {
     display: none !important;
      }
    }
    
    @media only screen and (max-width: 989px) {
      .hide-mobile {
      display: block !important;
      }
    
     .hide-desktop {
     display: none !important;
      }
    }

    Regards,
    Ismael

    in reply to: Learning how to work with the Advanced Layer Slider #287607

    Hi Mkieling!

    Thank you for using the theme!

    We don’t have any official tutorial for the layer slider but you can go to youtube and search for it. Sample of a video tutorial can be found here: http://www.youtube.com/watch?v=WB3Xyc_QDRM

    Regards,
    Ismael

    in reply to: Including page categories in breadcrumbs #287057

    Hi OpenEyeMedia!

    Thank you for using the theme.

    Did you use a plugin to add category on pages? Please add this on functions.php:

    add_filter('avia_breadcrumbs_trail', 'avia_change_breadcrumb', 5, 1);
    function avia_change_breadcrumb($trail) {
        if(is_page())
        {
            global $post;
    
            $front 			= avia_get_option('frontpage');
            $blog 			= avia_get_option('blogpage');
    
            if($post->ID == $blog || $post->ID == $front) return $trail;
    
            $category = get_the_category($post->ID);
            if(!empty($category))
            {
                $home = $trail[0];
                $last = array_pop($trail);
                $trail = array(0 => $home);
    
                foreach($category as $key => $data)
                {
                    $link = '<a href="'.get_category_link($data).'">'.$data->name.'</a>';
                    $link = preg_replace('!rel=".+?"|rel=\'.+?\'|!',"", $link);
                    $link = str_replace('<a ', '<a rel="v:url" property="v:title" ', $link);
                    $link = '<span typeof="v:Breadcrumb">'.$link.'</span>';
                    $trail[] = $link;
                }
    
                $trail[] = $last;
            }
        }
        return $trail;
    }

    Cheers!
    Ismael

    in reply to: Search field in the header of the template enfold #287054

    Hi!

    Thank you for the update.

    Where do you want to place the search form? If you want to position it to the right of the header. Add this on Quick CSS or custom.css:

    #advanced_menu_toggle + form#searchform {
    position: absolute;
    right: 0;
    top: 10px;
    }

    You should probably hide it on mobile device. Add this code:

    @media only screen and (max-width: 989px) {
    #advanced_menu_toggle + form#searchform {
    position: absolute;
    display: none !important;
    }
    }

    Regards,
    Ismael

    Hey!

    No, the settings will remain intact as long as you didn’t modify any of the theme files. Did you modify the shortcodes.js file? Yes, it will be overwritten when you update the theme. Extract the code that you added in order to fix the mp3 audio player before updating the theme. Add it again after. Regarding the layer slider, did you deactivate the default layer slider? You don’t really have to buy the plugin because it is already included on the theme package.

    Regards,
    Ismael

    in reply to: Easy Full Width Slider on mobile #287051

    Hi!

    You can change the caption title font size to make room for the caption text below. Add this on Quick CSS or custom.css:

    @media only screen and (max-width: 479px) {
    .responsive #top .slideshow_caption h2 {
    font-size: 1em;
    }
    }

    Yes, it is possible to set a minimum height for the slider but it will stretch the images into unpleasant proportions. You can also try the full screen slider. Or use both, show the fullwidth easy slider on desktop then hide it on mobile device and show the fullscreen slider instead. You can do it via css media queries.

    Cheers!
    Ismael

    in reply to: Advanced SEARCH options #287050

    Hey masuurikas!

    Thank you for using the theme.

    Unfortunately, this particular request is beyond the scope of support and is not a theme related issue. You might need to find a plugin or hire a freelance developer to add the feature for you. Please visit Envato Studio or Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.

    If you have any further questions about the theme, we are more than happy to provide you with assistance on these inquiries. Thank you for your understanding.

    Regards,
    Ismael

    Hey killyman!

    Thank you for using the theme.

    Please refer to Dude’s response here: https://kriesi.at/support/topic/enfold-and-the-event-calendar-plugin/#post-174332

    Add this code on functions.php:

    
    add_filter('avf_title_args', 'fix_events_page_title', 10, 2);
    function fix_events_page_title($args,$id)
    {
        if (get_query_var('post_type') == 'tribe_events' && !is_single())
        {
            if((tribe_is_upcoming() || tribe_is_past()))
            {
                $args['title'] = 'Events List';
            }
            else if(tribe_is_showing_all())
            {
                $args['title'] = 'List all events';
            }
            else
            {
                $args['title'] = 'Screenings';
            }
        } 
        return $args;
    }

    Best regards,
    Ismael

    Hey!

    Thank you for the update.

    The screen resolution of the the device you’re using spans up to 960px. Please try this:

    @media only screen and (max-width: 960px) {
    .avia-content-slider .slide-entry {
    width: 100%;
    }
    }

    Best regards,
    Ismael

    in reply to: Responsive Layout Problems #287043

    Hi!

    I thought you’re using the default table element of the theme. Anyway, the table looks ok when I checked it on a mobile device. You just need to scroll in order to see the remaining content.

    Regards,
    Ismael

    in reply to: Links on Layerslider are not working #286523

    Hi!

    Glad it works. You can actually apply a background on the menu. Use this:

    .html_header_top #top .av_menu_left .main_menu {
    background: yellow;
    }

    Best regards,
    Ismael

    in reply to: Please contribute and translate Enfold #286520

    Hi!

    Again, we would like to thank you for translating the file. Try using the html entity of the percent symbol. Please refer to this link: http://www.freeformatter.com/html-entities.html

    Cheers!
    Ismael

    in reply to: Invoke mobile menu at different breakpoint #286518

    Hey!

    You can decrease the font size of the menu items then decrease the padding further:

    @media only screen and (max-width: 1140px) {
    .main_menu ul:first-child > li > a { 
    padding: 0 7px; 
    font-size: 12px;
    }
    }
    

    Cheers!
    Ismael

    in reply to: Transparency Menu #286517

    Hi Andrea!

    Thank you for using the theme!

    Please edit js > avia.js, find this code on line 1198:

    if(transparent)
                    {
                    	if(st > 50)
                    	{
                    		header.removeClass('av_header_transparency');
                    	}
                    	else
                    	{
                    		header.addClass('av_header_transparency');
                    	}
                    }

    Replace it with this:

    if(transparent)
                    {
                    	if(st > 600)
                    	{
                    		header.removeClass('av_header_transparency');
                    	}
                    	else
                    	{
                    		header.addClass('av_header_transparency');
                    	}
                    }

    Remove browser cache then reload the page a few times.

    Regards,
    Ismael

    in reply to: How to hide Fullscreen Slider on mobile devices? #286515

    Hi!

    The iPad device has a screen resolution of 1024x768px. Please try this:

    @media only screen and (max-width: 1025px) {
      /* Add your Mobile Styles here */
    	.hidden-desktop {display:block !important;}
    	.visible-desktop {display:none !important;}
    }

    Cheers!
    Ismael

    in reply to: Google Maps API Multiple Times in backend #286507

    Hey two_worlds!

    What is the plugin that you’re using? Please try this on functions.php:

    add_filter('avf_load_google_map_api', 'disable_google_map_api', 10, 1);
    
    function disable_google_map_api($load_google_map_api) {
    	$load_google_map_api = false;
    	return $load_google_map_api;
    }

    I’m not sure if this is going to work. I’ll ask Dude to check the thread.

    Regards,
    Ismael

    • This reply was modified 11 years, 7 months ago by Ismael.
    in reply to: Problems with Internet Explorer #286503

    Hey!

    Thank you for using the theme!

    Not sure why the site is not loading on my end. I’ll ask the rest of the support team to check the page. Where are you hosting the site?

    Cheers!
    Ismael

    Hey!

    I’m really sorry but we can’t provide any further support for this plugin. You may need to investigate this particular issue on your own or hire someone to fix the compatibility issues of the plugin with the theme.

    Thank you for your understanding.

    Best regards,
    Ismael

    in reply to: Nav Menu goes missing in mobile view #286501

    Hey!

    Not sure why it’s not working by default but please add this on Quick CSS or custom.css:

    @media only screen and (max-width: 767px) {
    #advanced_menu_toggle, #advanced_menu_hide {
    right: 10px;
    display: block;
    }
    }

    Best regards,
    Ismael

    Hey!

    The border looks fine on Firefox 30.0. This is the screenshot on my end:

    Best regards,
    Ismael

    in reply to: Mailchimp Sign Up form on one Line #286498

    Hey!

    Please post the login details here and set it as a private reply. We would like to check it.

    Best regards,
    Ismael

    in reply to: Enfold Showcase #286497

    Hi!

    Damn! I don’t have 3D glasses. Awesome website. Unique. :)

    Regards,
    Ismael

    in reply to: masonry galley loading all items in gallery library #286496

    Hi!

    Did you modify anything on the theme files? The permalink structure is incorrect, you set it to custom then add /gallery on the field. I corrected it but it hasn’t affected the masonry gallery as expected. The elements is still not storing the gallery images. This is the test page: http://rebornhair.com.au/wp/gallery-test/

    Best regards,
    Ismael

    in reply to: social media icons / buttons #286493

    Hey!

    Thank you for the update.

    Must be a plugin conflict. Please deactivate all plugins then test it again. Try logging out. If possible, please create another user and give it administrator access. Test this user account.

    Regards,
    Ismael

    in reply to: Get rid of gravatar icons & preview pics in blogs #286492

    Hey DaddyDizz!

    Thank you for visiting the support forum!

    1.) You can disable the featured image for each post, just tick the option below the featured image metabox. Another thing that you can do is to add this on Quick CSS or custom.css:

    .single div.big-preview.multi-big, .single .blog-meta {
    display: none;
    }

    2.) I’m not entirely certain what you mean. Can you please elaborate?

    Best regards,
    Ismael

Viewing 30 posts - 57,361 through 57,390 (of 67,197 total)