Forum Replies Created

Viewing 30 posts - 13,801 through 13,830 (of 25,536 total)
  • Author
    Posts
  • in reply to: Include template builder elements via code #1063969

    Hey Patrick,

    There is that option to Manually Manage Loaded Elements.
    Let us know if this helps.

    Best regards,
    Nikko

    in reply to: Header with hanging logo #1063963

    Hey germandesigner,

    Can you give us a link to your site? so we can take a closer look and give you css codes that should work.
    You can post the link to your site in private content, so it’s only visible to the moderators.

    Best regards,
    Nikko

    in reply to: Import issue #1063960

    Hi Omid,

    I apologize for my mistake.
    Here’s the link: https://kriesi.at/support/topic/importing-didnt-work-4/

    Best regards,
    Nikko

    in reply to: Issue with avia menu fx #1063957

    Hi Tom,

    Glad that we could help :)
    Let us know if you need further assistance.

    Best regards,
    Nikko

    Hey ngavy,

    Edit your tab section then in For Developers: Section ID set to mytab
    Go to Enfold > General Styling > Quick CSS, then add this css code:

    #mytab .av-tab-section-inner-container {
        display: none;
    }

    In your functions.php file, add this code:

    function toggleTS(){
    ?>
    <script>
    	jQuery(document).ready(function() {
    		let ctr = 0;
    		jQuery('#mytab').find('.av-section-tab-title').on('click', function() {
    			if( ctr > 0) {
    				jQuery('#mytab .av-tab-section-inner-container').show();
    			}
    			ctr++;
    		});
    	});
    </script>
    <?php
    }
    add_action('wp_footer', 'toggleTS');

    Hope it helps.

    Best regards,
    Nikko

    in reply to: I want to hide the Blog Post Comment Count. #1063931

    Hey Admin,

    Try adding this css code in Quick CSS (located in Enfold > General Styling):

    #top .comment_meta_container .comment-count, 
    #top .comment_meta_container .comment-text {
        display: none;
    }

    Best regards,
    Nikko

    in reply to: Category descriptions #1063930

    Hey algkent,

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

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( do be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create a admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    Hey mcaero,

    I think it’s possible however there would be lots of tweaking especially javascript and it would take a lot of time to do, which is outside the scope of our support.
    The only possible way to fill it is not using a slider and use a single background image instead. :(

    Best regards,
    Nikko

    • This reply was modified 6 years, 5 months ago by Nikko.
    in reply to: Hide date from posts when using masonry gallery #1063924

    Hi limedrop,

    Glad that we could we could help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: remove Tooltip on slider images #1063923

    Hey ingridbrauner,

    Sure, can you give us a link to the page mentioned? so we can try to take a closer look.
    If you don’t want the link to be visible to other users, please post it in private content.

    Best regards,
    Nikko

    in reply to: permalinks and 404error #1063921

    Hey Susanne,

    Can you give us a step by step instruction on how we can reproduce this error?
    Maybe you can also give us temporary admin access? so we can try to check on it further.
    Just post the login credentials in private content, so it’s only seen by the moderators.

    Best regards,
    Nikko

    in reply to: Giving Editors access to Advanced Layout Builder #1063920

    Hey Hengest,

    Please try the solution posted on this thread: https://kriesi.at/support/topic/unlock-lock-advanced-layout-builder-for-editor/#post-858672
    Hope it helps.

    Best regards,
    Nikko

    in reply to: Transparent header/logo area not working on mobiles #1063917

    Hey Thomas,

    Try adding this css code in Quick CSS (located in Enfold > General Styling):

    @media only screen and (max-width:959px) {
      .html_header_transparency #top #wrap_all .av_header_transparency {
        background-color: transparent;
        position: absolute !important;
        top: 0;
      }
    
      .html_header_transparency #top #main #av_section_1 {
        padding-top: 80px;
      }
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Submenu not sticky anymore (since 4.5) #1063915

    Hey rup,

    I just tested it on my local install on Enfold and it works fine.
    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( do be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create a admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    in reply to: Two Column Grid with one scrollable column #1063914

    Hey jurgen1979,

    I think the layout is similar to this demo: https://kriesi.at/themes/enfold-consulting/ just make the sidebar’s width 50% of the screen.
    However the header needs to have some tweaking, maybe just css.
    Then on the right side which is the content part, I think there will be no issue.

    Best regards,
    Nikko

    in reply to: Google Maps not working #1063913

    Hi es1979,

    You can put the coordinates directly as suggested by StefanS0 if using the address doesn’t work, here are some ways you can fetch the coordinates: https://www.wikihow.com/Get-Latitude-and-Longitude-from-Google-Maps


    @StefanS0
    thanks for helping out :)

    Best regards,
    Nikko

    Hey znello,

    Try adding this css code in QUick CSS (located in Enfold > General Styling):

    #top #wrap_all #header #avia-menu > li > a .avia-menu-text {
        margin-left: 0;
        padding-left: 0;
    }
    
    #top #wrap_all #header #avia-menu > li:hover > a .avia-menu-text {
        border-bottom: 5px solid red;
    }

    Best regards,
    Nikko

    in reply to: Customising Fullwidth Sub Menu #1063908

    Hey Diana,

    Try adding this css code in QUick CSS (located in Enfold > General Styling):

    #av-custom-submenu-1 {
        background-color: rgba(255,255,255,0.9);
    }

    If that doesn’t work, then please try this instead:

    #sub_menu1 {
        background-color: rgba(255,255,255,0.9);
    }

    Best regards,
    Nikko

    in reply to: ICON GRID not work on mobile #1063905

    Hey StefanS0,

    Can you give us a link to your page? so we can take a closer look.
    You can post the link in private content, if you want it to be viewed only by the moderators.

    Best regards,
    Nikko

    in reply to: logo on transparent pages #1063903

    Hey pddcoms,

    Try adding this css code in Quick CSS (Located in Enfold > General Styling):

    @media only screen and (max-width: 767px) {
      .page-id-4383 .logo img { 
        opacity: 0; 
      }
    
      .page-id-4383 .logo a { 
        background-image: url(https://kriesi.at/wp-content/themes/kriesi/images/logo.png); 
        background-repeat: no-repeat; 
        background-size: contain; 
      }
    }

    Just replace the background image’s url with the url of your logo.

    Best regards,
    Nikko

    in reply to: Where is Avia Layout Builder? #1063902

    Hey thekingschurchlakeland,

    I tried to login in the link below (private content) using the login credentials you gave however it doesn’t work, please check.
    Can you give us a screenshot of the backend with the issue?
    Try also going to Enfold > Theme Options > Select Your Editor (then set to) Use WP Classic Editor then save.

    Best regards,
    Nikko

    in reply to: Main Menu Navigation White Space #1063901

    Hey mattb1169,

    Try adding this css code in Quick CSS (located in Enfold > General Styling):

    #top #header #avia-menu .sub-menu {
        top: 62%;
    }

    Hope it helps :)

    Best regards,
    Nikko

    in reply to: Font and font size #1063900

    Hey Audrey2019,

    Try checking this out in our documentation: https://kriesi.at/documentation/enfold/typography/#how-to-upload-custom-fonts
    Hope it helps :)

    Best regards,
    Nikko

    in reply to: permalink #1063887

    Hey robertoKM,

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

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( do be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create a admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    in reply to: galery description background to short #1063884

    Hi NAdja,

    Glad that we could help :)
    Let us know if you need further assistance.

    Best regards,
    Nikko

    in reply to: Content Slider #1063881

    Hey D5WDesignGroup,

    Please post us the link to the page mentioned as well as your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( do be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create a admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    in reply to: Grid Row #1063866

    Hey Ginny,

    Yes, you don’t need to use and Image element on the left, you just need edit the left cell then add a Custom Background Image to it.
    Not all parts of the image will be shown but it will fill all the space with the image. :)

    Best regards,
    Nikko

    in reply to: Looking for a great Gutenburg-Ready theme #1063864

    Hi Linda,

    Enfold doesn’t have that option yet though it is still possible using a child theme and tweaking the header.

    Best regards,
    Nikko

    in reply to: Problems displaying the shop #1063862

    Hi nightpilot,

    Glad that we could help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Blog post display order with blog element #1063861

    Hi byBuko,

    Glad that you found the solution. :)
    Just let us know if you need further assistance.

    Best regards,
    Nikko

Viewing 30 posts - 13,801 through 13,830 (of 25,536 total)