Forum Replies Created

Viewing 30 posts - 23,431 through 23,460 (of 66,033 total)
  • Author
    Posts
  • in reply to: catalogue element Alignement Font #1066291

    Hi,

    Thanks for the update. I would like to check the settings and the theme files, but I get a 503 service error in the login page. Did you modify the theme in any way?

    Best regards,
    Ismael

    in reply to: "Related Posts" element needs makeover #1066263

    Hi,

    Yes, it’s possible but you have to use the advance layout builder for your posts. You can then use posts elements such as magazine, blog posts, masonry etc, in place of the default related section.

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    The default login url “wp-admin” or “wp-login” is not working. Did you change the login url? Please add it in the private field.

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    The is still running on an old version of the theme, 4.4.1, which is not compatible with the new block editor. You have to upgrade the theme to version 4.5.3 manually via FTP because the automatic update or script is not going to work on the current version.

    // https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    After the update, go to the Enfold > Theme Options panel and then set the “Select Your Editor” settings to “Classic Editor”.

    Best regards,
    Ismael

    in reply to: Section prioritizing (z-index does not work) #1066244

    Hey ilogicltd,

    Thank you for using Enfold.

    In that case, you have to specify the stack order of the sections manually.

    div#av_section_5 {
        margin-top: -50px;
        z-index: 1;
        position: relative;
    }
    
    div#av_section_4 {
        z-index: 3;
        position: relative;
    }

    Right now, we are using default selectors (#av_section_5, #av_section_4) of the color sections, but you can change that by filling in the Section ID field.

    More info about the Section ID and the color section as a whole: https://kriesi.at/documentation/enfold/color-section/#color-section-with-100-content-width

    Best regards,
    Ismael

    in reply to: Spam contactform #1066241

    Hi,

    Thank for the update. The provided credentials for the WP and FTP are invalid though. Please check the info carefully and include the reCAPTCHA site/secret key in the private field.

    For new inquiries, please open a new thread. Thank you.

    Best regards,
    Ismael

    in reply to: The theme (Enfold) made website not work any more #1066239

    Hi,

    You’re actually uploading the whole theme package including the documentation files, licenses etc. Please extract the actual theme or Enfold zip file from the theme package (hemeforest-4519990-enfold-responsive-multipurpose-theme.zip) and upload that one. Have you tried that?

    Best regards,
    Ismael

    in reply to: Ajax not working since updates #1066236

    Hi,

    They are deregistering the WP core script wp-mediaelement, which then breaks the enqueuing of Views assets.

    Yes, that is true. We actually added a filter in case something like this happens.

    add_filter( 'avf_enqueue_wp_mediaelement', 'avia_always_load_mediaelement', 10, 2);
    function avia_always_load_mediaelement($condition, $options)
    {
    	$condition = true;
    	return $condition;
    }

    Just add it in the functions.php file. That filter will force the wp-mediaelement to load regardless of the theme’s requirements.

    Best regards,
    Ismael

    in reply to: The Events Calender – Image gets cut off #1066233

    Hi,

    Thanks for the update.

    That is a valid solution and is actually the same as manually editing the thumbnail in the functions.php file or using the Simple Image Size plugin. The default set width of the “entry_with_sidebar” thumbnail is 845px, and the crop parameter is actually disabled by default, so I’m not sure why that code works and not the default configuration. Anyway, I’m glad that you found a working solution.

    Thank you for your patience. Have a nice day.

    Best regards,
    Ismael

    in reply to: Kommentare werden nicht angezeigt #1066228

    Hi,

    No problem. Please feel free to open a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    @Maureen van Goethem, @onepresto

    The plugin is using the “display_post_states” filter and it is returning a null value instead of an array. Please pass that information to the plugin authors. We had to override that filter in the theme. Please edit the config-gutenberg > class-avia-gutenberg.php file, look for this code around line 195:

    add_filter( 'display_post_states', array( $this, 'handler_display_post_states'), 99, 2 );
    

    Set the priority from 99 to 5:

    add_filter( 'display_post_states', array( $this, 'handler_display_post_states'), 5, 2 );
    


    @onepresto
    : I have already added this in your installation.

    Best regards,
    Ismael

    in reply to: fontello in css do not work #1066217

    Hi,

    Alright. I’m sorry if we can’t be of much help this time. Please don’t hesitate to open a new thread if you need anything else. We’ll close this one for now.

    Have a nice day. And thank you for using Enfold.

    Best regards,
    Ismael

    in reply to: Overlapping sections with negative margin on mobile devices #1066216

    Hi,

    Thanks for the update.

    The test page doesn’t exist or is not found even if I’m logged in. Did you remove that too?

    Best regards,
    Ismael

    in reply to: Gt Metrix Result #1066214

    Hi,

    Thank you for your understanding and patience. We’ll close the thread, but don’t hesitate to contact us if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Increase columns for upsells and cross-sells products #1066211

    Hi,

    I just added this code in the Quick CSS field.

    #top .product_column_4 .products .product {
        margin: 0 1% 1% 0;
        width: 18.6%;
    }
    

    I can see that its working in the cross-sell product. Please purge the cache prior to checking the page.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    The blog page of the Dutch version is set properly, but you didn’t set any page for the other language. I’m referring to the Enfold > Theme Options > And where do you want to display the Blog? settings. Please note that you have configure the theme options for both language, separately.

    Best regards,
    Ismael

    in reply to: Navigation menu parent items not available on mobiles #1066194

    Hey Aquamarinadive,

    Thank you for using Enfold.

    The theme deactivates the parent menu items when the Main Menu > Burger/Mobile Menu settings is set to the second option. You have to select the first option to activate the parent links again. Or keep the current settings and set the “Clone title menu items to submenu” to create a clone of the parent menu item inside the drop down or submenu container.

    Best regards,
    Ismael

    in reply to: Copying Avia Layout Elements to another page #1066188

    Hey Axel,

    Thank you for using Enfold

    The builder’s template feature would be useful in this case. Please refer to the documentation for more info.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#templates

    Best regards,
    Ismael

    in reply to: Enfold Homepage Edit #1066186

    Hi,

    Yes, that is possible. Just replace the previous modification with the following css code.

    @media only screen and (min-width: 1024px) {
    .logo .subtext h1 {
        width: 400px;
    }
    }
    
    @media only screen and (max-width: 1024px) {
    .logo .subtext {
        display: none;
    }
    }

    That code is going to adjust the subtext width on desktop or larger screens and remove it on mobile view.

    Best regards,
    Ismael

    in reply to: Post Typesetting Error #1066185

    Hi,

    The image element was not removed properly, but it’s been taken care of. Please purge the cache or remove the browser history prior to checking the page.

    Best regards,
    Ismael

    in reply to: Content Slider #1066181

    Hi,

    Thanks for the update.

    1.) Glad that you found the issue.

    2.) That is the default behavior of the slider. It stops the autorotation when it detects user interaction e.g., clicking the dots, moving to the next slide, etc.

    3.) Start with this css code:

    .avia-fullwidth-slider .avia-slideshow {
        padding-bottom: 50px;
        background-color: #ffffff;
    }
    
    .avia-fullwidth-slider .avia-slideshow-dots {
        text-align: right;
    }

    Best regards,
    Ismael

    in reply to: Z-index #1066179

    Hi,

    Thanks for the update.

    I can’t reproduce the issue on my end, but this css code might help.

    .responsive #main .container_wrap:first-child {
        z-index: 0;
        position: relative;
    }

    Best regards,
    Ismael

    in reply to: Embed Video Player URL Full Screen #1066177

    Hi,

    Thanks for the update.

    Have you tried moving the code block inside a grid row element with a single cell? You won’t have to add that css code then. And you can use css media queries to specify the iframe height for different screen sizes.

    // https://www.w3schools.com/css/css_rwd_mediaqueries.asp

    Best regards,
    Ismael

    in reply to: Google tag manager #1065978

    Hi,

    No problem. Let us know if you need anything else. :)

    Best regards,
    Ismael

    in reply to: fullwidth easy slider video and black screen #1065977

    Hi,

    I’m so sorry about that. I have no idea. Unfortunately, that feature or option is not available in the theme by default, so it will require direct modification of the theme. We can’t provide that kind of customization here as stated on our support policy.

    The vimeo player documentation should help: https://github.com/vimeo/player.js/

    Thank you for your understanding.

    Best regards,
    Ismael

    in reply to: Menu goes behind logo on tablet only #1065975

    Hi,

    Thank you for the update.

    I put this code in the Quick CSS field to adjust the size of the logo and menu padding.

    @media only screen and (max-width: 1024px) and (min-width: 768px) {
    .responsive .logo img {
        margin: 0;
        max-width: 80%;
    }
    
    .responsive .main_menu ul:first-child > li > a {
        padding: 0 7px;
        font-size: 12px;
    }
    }
    

    Best regards,
    Ismael

    in reply to: picture problem #1065970

    Hi,

    I modified the index.php file as previously suggested here:

    // https://kriesi.at/support/topic/picture-problem/#post-1060964

    Best regards,
    Ismael

    in reply to: Kommentare werden nicht angezeigt #1065935

    Hi,

    Thanks for the update. I was on another thread and the issue reported there seems to be same as this one, so the filter that was provided in that topic might help. Please check this link: https://kriesi.at/support/topic/comments-in-posts-with-alb-through-functions-php/#post-1065931

    Best regards,
    Ismael

    in reply to: Problem about rel next/ previous in pagination (2) #1065934

    Hi,

    This is possible with the masonry gallery but it will require modifications that are beyond of what we had given so far because it uses a different query. You may need to contact a plugin developer or a freelancer to create a custom plugin for it. Please contact our partner, Codeable.

    // https://kriesi.at/contact/customization

    Best regards,
    Ismael

    Hi,

    According to the Query Monitor results seen on your screenshots, the scripts have missing dependencies so they’re not being loaded properly. Again, the theme loads certain scripts conditionally, so it’s possible that one of those scripts is a dependency, which is not present because it doesn’t meet certain conditions required by the theme.

    Yes, that snippet looks good and valid.

    Best regards,
    Ismael

Viewing 30 posts - 23,431 through 23,460 (of 66,033 total)