Forum Replies Created

Viewing 30 posts - 20,941 through 20,970 (of 82,625 total)
  • Author
    Posts
  • Hey Sstenn,

    Can you please create a temporary admin login and FTP logins and post them here privately so we can look into it?

    Best regards,
    Yigit

    in reply to: WooCommerce Cart Button #799166

    Hi Donny,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    ul.cart_dropdown {
        display: none!important;
    }
    

    Best regards,
    Yigit

    Hi,

    I am not sure if i understood the second part of your question however you can add following code to Quick CSS in Enfold theme options under General Styling tab to center phone info field

    .phone-info {
        width: 100%;
        text-align: center;
    }

    Best regards,
    Yigit

    in reply to: Social Icons are Tiny #799154

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    #socket .social_bookmarks li {
        margin-right: 5px;
    }
    

    Best regards,
    Yigit

    in reply to: Adjustments to the blog layouts #799119

    Hi,

    Please change following code

    .html_elegant-blog #top .big-preview {
        width: 50%;
        float: left;
        margin-right: 50px;
    }

    to following one

    .html_elegant-blog #top .big-preview {
        width: 44%;
        float: left;
        margin-right: 50px;
    }

    Then you would need to adjust width in this code

    .blog .entry-content {
        width: 42%;
        float: left;
    }

    Featured image size is actually 350x350px, please see screenshot in private content field below :)

    Best regards,
    Yigit

    in reply to: General Styling is not registering any changes. #799113

    Hi,

    Yes, i watched the whole screencast however it only leads to caching issue when it shows up correctly on my end and does not on yours. I asked my teammates to check your website as well. Please kindly wait to hear from them

    Best regards,
    Yigit

    in reply to: General Styling is not registering any changes. #799106

    Hi,

    Can you please try checking your page in incognito mode?
    I attached a screenshot from Firefox. First screenshots are from Chrome. I strongly believe it is still caching related :)

    Best regards,
    Yigit

    in reply to: Catalogue Menu Items Change of Font Size #799104

    Hey brecollie,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    .av-catalogue-title {
        font-size: 18px;
    }
    

    Best regards,
    Yigit

    Hi,

    Please replace the code with following one

    .vert_icon, .hor_icon {
        display: none;
    }
    .toggle_icon:before {
        content: "\e875";
        font-family: 'entypo-fontello';
        left: 5px;
        position: relative;
        top: -4px;
    }
    .activeTitle .toggle_icon:before {
        content: "\e877";
        font-family: 'entypo-fontello';
        left: 5px;
        position: relative;
        top: -4px;
    }

    Best regards,
    Yigit

    in reply to: General Styling is not registering any changes. #799097

    Hi,

    They show up fine on my end, attached a screenshot in private content field.

    Please flush browser cache and refresh your page a few times – http://wiki.scratch.mit.edu/wiki/Hard_Refresh

    If certain section is not working, can you please let us know which one?

    Best regards,
    Yigit

    in reply to: General Styling is not registering any changes. #799087

    Hi,

    Login credentials are not working for me. Can you please check them once again?

    Best regards,
    Yigit

    in reply to: Adjustments to the blog layouts #799086

    Hi Lyse,

    Yes, you can remove those CSS codes.

    Regarding images, please try the following:
    1. Install this plugin: https://wordpress.org/plugins/simple-image-sizes/
    2. Go to Settings > Media
    3. Change the entry_without_sidebar image size (increase its width / height).
    4. Regenerate the thumbnails by clicking the button at the bottom.

    Best regards,
    Yigit

    Hey Krissie,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    .toggle_icon {
        display: none;
    }
    

    Best regards,
    Yigit

    in reply to: links on mobile point to wrong domain #799074

    Hi,

    You are welcome. Let us know if you have any other questions or issues :)

    Best regards,
    Yigit

    in reply to: Team Member photos are massive #799072

    Hey,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    .team-img-container img {
        width: auto;
    }
    

    Best regards,
    Yigit

    in reply to: Change color font on the footer #799069

    Hi,

    Login credentials are not working for me. Can you please firstly go to Enfold theme options > General Styling > Footer and try adjusting colors there?
    If that does not help, please check login credentials once again

    Best regards,
    Yigit

    in reply to: Hide # (hash) link in tab #799067

    Hi!

    Tab Section is a layout element while Tabs element is a content element. Even though they work similarly, they are totally different elements.
    I believe this is the best alternative – http://kriesi.at/documentation/enfold/custom-tab-and-toggle-ids-for-prettier-url-hashes/ :)

    Cheers!
    Yigit

    in reply to: Column stacking on mobile using .flex #799064

    Hey Travelyst,

    Please edit your Grid Row element and choose to display cells next to each other – http://i.imgur.com/1eMsMKX.png
    If that does not help, please post a screenshot and show the changes you would like to make. You can upload your screenshots on imgur.com or Dropbox public folder and post the links here :)

    Best regards,
    Yigit

    in reply to: woocommerce checkout sidebar #799060

    Hey Luisgasser,

    You can try using this plugin – https://wordpress.org/plugins/widget-logic/ and use “!is_checkout()” condition :)

    Best regards,
    Yigit

    in reply to: links on mobile point to wrong domain #799058

    Hi,

    That was because of the external URL. I corrected it and flushed cache. Please review your website :)

    Best regards,
    Yigit

    in reply to: Unique logo and link on certain page #799054

    Hey janetgot,

    Please add following code to Functions.php file in Appearance > Editor

    add_filter('avf_logo_link','av_change_logo_link');
    function av_change_logo_link($link)
    {
    if( is_page('contact') )
    {
        $link = "http://kriesi.at";
    }
        return $link;
    }
    add_filter('avf_logo','av_change_logo');
    function av_change_logo($logo)
    {
    if( is_page('contact') )
        {
        $logo = "http://link.to/img2.png";
        }
        return $logo;
    }

    Best regards,
    Yigit

    in reply to: Hide # (hash) link in tab #799052

    Hey,

    We would be glad to help you with this customization, but at the moment there is no easy way to do this by using a small custom code snippet, so I am afraid its out of the scope of our support.

    But please feel free to request such feature at our feature request system: https://kriesi.at/support/enfold-feature-requests/

    This system allows us to keep track of user suggestions and lets you vote on the feature you would like to see the most. I am afraid though there is no guarantee that a feature will get implemented. If that’s something you really need you can always try to hire a developer for the task :)

    Best regards,
    Yigit

    in reply to: Hi Yiğit ! Merhaba Yiğit ! #799029

    Merhabalar Ugur,

    Rahatsiz olmaniza hic gerek yok bu forum tamamen size yardimci olabilmek icin var :)

    Hayir, support paketini guncellemeseniz bile tema guncellemelerine erisiminiz oluyor. Henuz foruma entegre etmedik fakat ileride support suresi dolan kullanicilar forumdaki konulari gorebilecek fakat yeni konu acamayacaklar. ThemeForest’in zorunlu kildigi bir kural malesef bu fakat Kriesi hali hazirdaki kullanicilarin sorun yasamamasi icin sureyi biraz daha uzun tutuyor :)

    Baska soru varsa lutfen cekinme :)

    Best regards,
    Yigit

    in reply to: links on mobile point to wrong domain #799027

    Hi,
    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.
    • permission to deactivate plugins if necessary.

    Best regards,
    Yigit

    in reply to: links on mobile point to wrong domain #798993

    Hey Rio1,

    Your submenu links are linking to your subdomain as well. Have you added them as Custom Links to your main menu? If so, please correct the links and flush cache :)

    Best regards,
    Yigit

    Hi,

    Please firstly create a child theme – http://kriesi.at/documentation/enfold/using-a-child-theme/

    Then copy unmodified enfold/framework/php/class-form-generator.php file and paste it inside enfold-child folder and find following at the top and remove it (please do not remove PHP opening tag)

    
    if (  ! defined( 'AVIA_FW' ) ) exit( 'No direct script access allowed' );

    and then add following code to Functions.php file of your child theme

    
    require( 'class-form-generator.php' );

    Then open class-form-generator.php file in your child theme and find

    
    echo 'jQuery(document).ready(function(){ jQuery(".avia_datepicker").datepicker({

    and add following code right below that line

    
                beforeShowDay: function(date) {
            var day = date.getDay();
            return [(day != 0) && (day != 6)];
        },

    Best regards,
    Yigit

    in reply to: Logo on mobile #798982

    Hi,

    You are welcome! Let us know if you have any other questions or issues :)

    Best regards,
    Yigit

    in reply to: Show Blog Post Title #798979

    Hi,

    Sorry for the late reply!

    Link i attached in private content field cannot be found. I checked your other post and i can see Mike’s code is working fine.

    Please flush browser cache and refresh your page a few times. If that still does not help, please post a screenshot and show the changes you would like to make so we can make sure that we are on the same page :)
    You can upload your screenshots on imgur.com or Dropbox public folder and post the links here

    Best regards,
    Yigit

    Hi,

    Please refer to this post – http://kriesi.at/documentation/enfold/hide-menu-itemselements-on-mobile/ and hide or display certain elements on mobile/desktop. This is the simplest way of changing layout on mobile.

    If this is not what you meant, please elaborate a little bit more. If explaining with screenshots will be easier, you can upload them on imgur.com or Dropbox public folder and post the links here :)

    Best regards,
    Yigit

    Hi,

    You are welcome! :)

    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    Best regards,
    Yigit

Viewing 30 posts - 20,941 through 20,970 (of 82,625 total)