Forum Replies Created

Viewing 30 posts - 3,511 through 3,540 (of 8,514 total)
  • Author
    Posts
  • in reply to: Layer Slider – Remove first fade in #220764

    Hi klooty!

    For that slideshow go to its global settings and then in the Slideshow section there is an option for animate first slide. Toggle the green off so that it does not and save.

    Regards,
    Devin

    in reply to: Where is the avia_set_title_tag(); function located? #220763

    Hey Serge!

    You can add this to your functions.php file to filter the title as needed:

    add_filter('avf_title_tag', 'avia_change_title_tag', 10, 2);
    function avia_change_title_tag($title, $wptitle) {
    	    
    
    	    $title = get_bloginfo('name').' | ';
            $title .= (is_front_page()) ? get_bloginfo('description') : wp_title('', false);
    
            return $title;
    }

    Cheers!
    Devin

    in reply to: Extra a href above all headings #220753

    If you can post temporary admin credentials so we can log in and take a look that would be the next step. Nothing within the theme should be doing that and its the first I’ve ever seen or heard of something like it in the 20k purchases of the theme so far.

    Make sure to mark your reply as private with the checkbox for Set as private reply when adding in the login information.

    in reply to: Customizing the single post page #220752

    Hi!

    Single blog posts don’t have that kind of capability with the theme as with WordPress posts are just not meant to be custom styled in the same way pages are (since its post data).

    So you could point each post to a page or you could use shortcodes within the post but there isn’t support for building single posts in the same way single pages can be built.

    Regards,
    Devin

    in reply to: Displaying HTML code snippets #220750

    Glad we could help. Let us know if you have any other questions or issues.

    in reply to: about IE11 and before. #220708

    Hi!

    I’m not getting any column issues testing with IE on my end but you can also try updating your Enfold theme to the newest version which has more bug fixes and changes that have been released in the past few months.

    For a quick guide on updating your theme take a look at this video on updating the Enfold theme via FTP: https://vimeo.com/channels/aviathemes/67209750

    Cheers!
    Devin

    in reply to: Remove part of the features to increase site speed? #220582

    Hey BelIblis!

    You can not remove them from WordPress or the theme as its *the* core function of WordPress in general.

    Cheers!
    Devin

    in reply to: Is there an easy way to add class to columns ? #220578

    Hey pako69!

    No not at the moment. For now they are not open for additional classes but it is something we are looking at adding in if its doable in a future update.

    Best regards,
    Devin

    in reply to: Menu overlapping logo in portrait mode on iPad #220576

    Hey ncase!

    Try adjusting based on the documentation post I made a few days ago here: http://kriesi.at/documentation/enfold/change-when-mobile-menu-appears/

    And if we can see your site with the changes live we can debug why it isn’t working.

    Best regards,
    Devin

    in reply to: Changing font size of H1, H2, H3 and H4 Tags #220537

    Hi Dan!

    You shouldn’t ever modify the theme css files directly to make any changes. Instead, add your css to the Quick CSS field in the theme’s styling tab or the custom.css file in the css folder.

    For this it would be something like:

    #top .entry-content-wrapper h1 {
    font-size: 18px;
    }
    

    And then the same for each. The #top id gives it higher priority and the .entry-content-wrapper keeps inside that class.

    Regards,
    Devin

    in reply to: Center TAB and change color in a page #220529

    Hey rodarialtda!

    That kind of customization is outside what we can help with via support. You can look into a freelance developer from somewhere like Microlancer or Codeable.

    Best regards,
    Devin

    Hi thebrewhouse!

    The last time I checked it when you add your own via the child theme you need to add all of the ones you want since the array is replaced (https://kriesi.at/support/topic/generate-new-image-sizes-in-child-theme/#post-129951).

    Once you’ve done so it should no longer generate any others.

    Best regards,
    Devin

    in reply to: Sidebar Menu #220522

    Hi!

    The pages widget that is showing is the default widget for the sidebar. So right now you had nothing in the Sidebar Blog widget area so the default was showing.

    I added a custom menu widget to the sidebar area just now so that you can see how it outputs.

    Its a bit confusing but when you select a page from the theme settings or from WordPress for your blog to be set anything on that page as far as settings go (sidebar, header showing etc) gets ignored. So the custom sidebar are you have chosen is ignored and instead its the default Sidebar Blog widget area.

    Regards,
    Devin

    in reply to: Layerslider not showing, only the shortcode #220516

    Hi!

    The built in LayerSlider plugin does not support being added in anywhere with shortcodes. The way Kriesi integrated it with the theme unfortunately also needed to add that limitation.

    So for now the only supported way to add a LayerSlider slideshow with the bundled plugin is with the avia layout builder.

    Best regards,
    Devin

    in reply to: Logo runs through the header menu #220514

    Hi!

    You’ll need to adjust where the theme changes the menu to mobile navigation following this guide: http://kriesi.at/documentation/enfold/change-when-mobile-menu-appears/

    Best regards,
    Devin

    in reply to: Menu and logo one into another #220510

    Glad we could help :)

    in reply to: Can I sort posts by tag? #220509

    You can link to tag archive pages but other than that no, there is not front end sorting method for posts or anything else by tag.

    Hey Bastian-Monheim!

    I don’t see any issues when viewing the page on my end on either domain. The icons show up identically for me.

    Cheers!
    Devin

    in reply to: Can I sort posts by tag? #220506

    Hi satucker!

    On the blog element choose show entries from a custom taxonomy and then you can choose Post tag.

    Cheers!
    Devin

    in reply to: Menu and logo one into another #220502

    You *must* also do step 2 and use the new css to hide the menu and show the mobile button. So this css must be in either your custom.css file or the Quick CSS:

    /*Hide the menu*/
    @media only screen and (max-width: 990px) {
      .responsive #header .main_menu ul {
        display: none;
      }
    }
    /*Show the Mobile Navigation button*/
    @media only screen and (max-width: 990px){
      .mobile_active #advanced_menu_toggle {
        display: block;
      }
    }
    in reply to: Change color section image placement #220497

    Hi!

    Disable all active plugins that you have running. If you have any caching plugins running make sure you clear their cache first.

    Then try things again. If you still have issues then try using another browser or the same browser but with no extensions or any plugins running.

    Cheers!
    Devin

    in reply to: Any CSS Code to make LayerSlider be Fixed #220495

    Hey!

    1) Yes, add this to your Quick CSS in the styling tab of the theme options and modify as needed:

    #top.home #fullscreen_slider_0 .avia-caption-title {
        font-size: 35px;
    }
    #top.home #fullscreen_slider_0 .avia-slideshow-button {
        font-size: 15px;
    }
    #top.home #fullscreen_slider_0 .avia-caption-content {
        font-size: 15px;
    }

    2) No, that isn’t doable without customization of the element or maybe some other very creative css/html combination.
    3) In the theme files open js>avia.js and look for the avia_header_size function starting at around line 1288. Inside of it you can change the math from divide the size by 2 to a smaller number to decrease how much it shrinks:

    
                    if(st < el_height/2)
                    {
                        newH = el_height - st;
                        header.removeClass('header-scrolled');
                    }
                    else
                    {
                        newH = el_height/2;
                        header.addClass('header-scrolled');
                    }
    

    4) You can use:

    .social_header .phone-info span {
    font-size: 14px;
    }

    and you will need to make the number a link in the field where you’ve added it to the theme options. Ex: <a href="tel:+15555551212">555-555-1212</a>

    5) I think you mean this character | which is just above the enter key on most keyboards (shift+ that key).

    If you have any other questions make a new topic and we’ll do our best to answer.

    Regards,
    Devin

    in reply to: Eliminate Enfold demo pages from my website #220482

    Hi fjrichart!

    You will need to go through and manually delete them. Once they are created they are exactly the same as any other page, post or portfolio item.

    If you keep them in the trash then you can go to the trash later and restore them if you would like.

    You can also set them from published to Drafts instead and they will not be shown publicly but still be viewable in the WordPress admin.

    Cheers!
    Devin

    in reply to: home page banner images upscaling when they should not #220212

    From the sound of it I think this may be an issue of the plugin and not something we have a fix for on our end. I played with it for a bit now and I don’t see any other options for specifically setting the background width while maintaining the same responsive adjustments.

    in reply to: Links stay on one line in mobile #220164

    Hey!

    This is the default behavior for browsers. You can change your links to break using the css here: http://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/

    Eg:

    .entry-content-wrapper a {
    word-wrap: break-word;
    }

    Best regards,
    Devin

    in reply to: Gallery Thumbnails are not all the same size #220161

    Hi!

    I’m not really sure what the issue is. Each of the images on the gallery is 180×180 which is the correct output for those items.

    Cheers!
    Devin

    in reply to: Enhanced Google Universal Analytics code #220159

    You can add the entire script except the script tags to the analytics field. You don’t need to use the account number and let the theme wrap it for you and instead add in your own.

    You can also choose not to use the themes field and add it directly to your footer or use another plugin which supports the format you want.

    in reply to: Masonry shop #220098

    Can we see the page you have now live?

    Make sure that you read the content above the demo masonry shop which explains the the masonry shop can *not* be used for the default WooCommerce shop page.

    So if you are trying to have it show on the page which you’ve designated through the WooCommerce options as the main shop page it will not work.

    in reply to: Menu on mobile device #220096

    Hi doubleusolutions!

    I just checked the site out and didn’t have any issues on either desktop rendering at small width or on mobile emulation. Is it a specific device or size that its happening on.

    Best regards,
    Devin

    in reply to: Enhanced Google Universal Analytics code #220095

    Hi peterfagerberg!

    You can put whatever analytics code you want into the themes analytics field.

    Regards,
    Devin

Viewing 30 posts - 3,511 through 3,540 (of 8,514 total)