Forum Replies Created

Viewing 30 posts - 871 through 900 (of 33,013 total)
  • Author
    Posts
  • in reply to: Blog raster horizontal #1448678

    Hi,
    I see that both 3658 & 3443 are post IDs, I thought that you wanted to use the category IDs so that you could set this for each category instead of creating an array of post IDs
    So I changed it like this using the category slugs instead of the IDs so it will be easier to read: if(get_post_type( $post_id ) == "post" && has_category('veranstaltungen')) {
    and
    if(get_post_type( $post_id ) == "post" && has_category('buecher')) {
    and this seems to be working correctly, please check.

    Best regards,
    Mike

    in reply to: Where is Portfolio Masonry Special Grid? #1448675

    Hi,
    In that case do not use the Overwrite Portfolio Link setting option above, but use the Portfolio Gallery element instead and set the Link Handling option to Display the big image in a lightbox
    Enfold Support 6044

    Best regards,
    Mike

    in reply to: Where is Portfolio Masonry Special Grid? #1448643

    Hi,
    The /masonry-portfolio-example-4-column-masonry-grid/ demo page that we posted for you uses a masonry element to show portfolio items, so the screenshot above is for one of those portfolio items, below the content, here is a full page screenshot of a portfolio item:
    Enfold Support 6042

    Best regards,
    Mike

    in reply to: Blog raster horizontal #1448641

    Hi,
    You can’t redeclare ava_after_main_title_mod(), so you need to rename it like this:
    the first one:

    add_action('ava_after_main_title', 'ava_after_main_title_one');
    function ava_after_main_title_one() {
    	$post_id = get_the_ID();
        if(get_post_type( $post_id ) == "post" || is_archive('3658'))  {
    		echo 'xxxxcontentxxxxx';
    	}
    }

    then the next one:

    add_action('ava_after_main_title', 'ava_after_main_title_two');
    function ava_after_main_title_two() {
    	$post_id = get_the_ID();
       if(get_post_type( $post_id ) == "post" || is_archive('3443'))  {
    		echo 'xxxxcontent-2xxxxx';
    	}
    }

    Best regards,
    Mike

    in reply to: home page config #1448640

    Hi,
    Thank you for the link to your site, but your specific links for specific settings are not working, but I believe that I understand.
    If you are using WP Rocket to lazyload it, I recommend disabling WP Rocket lazyload as this is causing the stal in showing the slider.
    When you try to exclude it you also need to exclude the javascript for the slider, you don’t need to to the WP Rocket lazyload option because it is already set at Enfold Theme Options ▸ Performance ▸ Responsive Images And Lazy Loading ▸ Lazy Loading
    Also note that the File Compression is also handled by the theme, typically double compression this this can cause errors.
    Note that using the WP Rocket exclude settings can be tricky try checking their documentation here.
    Try disabling WP Rocket and see if you still have the issue.

    Best regards,
    Mike

    in reply to: Where is Portfolio Masonry Special Grid? #1448620

    Hi,
    To open the image directly, go to your portfolio item ad use the Overwrite Portfolio Link setting option and add the image link
    Enfold Support 6039

    Best regards,
    Mike

    in reply to: Filter Blogs by Categories #1448619

    Hi,
    The masonry element and the portfolio element has the filter, It looks like you have found a filter plugin, this seems to be a good approach.

    Best regards,
    Mike

    in reply to: Blog raster horizontal #1448618

    Hi,
    if(get_post_type( $post_id ) == "post" || is_archive('xxx'))
    xxx is the category ID number
    your original code has is_archive() || is_category() but is_archive() covers is_category() so you should not need both, then add the category ID

    Best regards,
    Mike

    Hi,
    Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Social icon needs to bigger size #1448574

    Hey Erin,
    Try this solution

    Best regards,
    Mike

    in reply to: Enfold: Custom Font Manger upload error #1448573

    Hey blaircomm1,
    Thank you for your patience, I have not worked with TypeKit fonts, but ttf fonts need to be in a “zip” file to be uploaded, did you try this?
    Can you post the font so we can try, please also post post a screenshot or a link to the font display.

    Best regards,
    Mike

    in reply to: Where is Portfolio Masonry Special Grid? #1448571

    Hi,
    Thank you for the link to your site, for your first post, I don’t see that the page “jumps” when the element is clicked
    as for your second post, this is not possible, when you are on the first page you are seeing a element, on the second page you are seeing the post.

    Best regards,
    Mike

    in reply to: Blog raster horizontal #1448570

    Hi,
    Ok thank you, I understand better now 🙂, but your site has changed since that video, Lesestoff entdecken is not a menu option now.
    Enfold Support 6033
    So I try to adjust this with the menu item Buchtipps I hope that I understand correctly.
    So the items under Buchtipps so header of Veranstaltungen, so basically your Veranstaltungen is built-in:
    Enfold Support 6035
    you can create a difficult code based on the category:
    Enfold Support 6037
    So please try adjusting this

    Best regards,
    Mike

    in reply to: Blog layout with sidebar #1448569

    Hi,
    I would recommend adding the categories as a class to the single posts, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    add_filter('body_class','add_category_to_single');
      function add_category_to_single($classes) {
        if (is_single() ) {
          global $post;
          foreach((get_the_category($post->ID)) as $category) {
            $classes[] = $category->category_nicename;
          }
        }
        return $classes;
      }

    This will add the categories as a body class, so for example if your post belongs to the categories News, Personal, Uncategorized
    Enfold Support 6029
    the body will have these classes:
    Enfold Support 6031
    So if you wanted to use CSS to target this it would look like:

    #top.news.personal.uncategorized {
    /* your color here */
    }

    You can make this would for only one category if you wish, my example just happened to have three.

    Best regards,
    Mike

    in reply to: Can't install Enfold demo files #1448567

    Hi,
    Thanks for your question, but you have posted to a thread from 2019 as this is not your thread posting your admin login here will not be private and you will not see our comments in the Private Content area, so please open a new thread so we can assist.
    Also let us know what host you are using as OVH is a known host to block our IP address.
    If the manual import method fails, try creating a localhost WordPress install and import the demo and then use the plugin Duplicator and migrate your localhost version to your webhost, see the video on the plugin page if you have not used this plugin before, it is quite easy.

    Best regards,
    Mike

    in reply to: Blog raster horizontal #1448533

    Hi,
    When I check only one is Veranstaltungen, the other is Lesestoff entdecken, and both of these are built into your page and not from your functions.php code, so you can change this directly in your page instead of your functions.php Please see the screenshot in the Private Content area of what I see.

    Best regards,
    Mike

    in reply to: Blog layout with sidebar #1448531

    Hey Julie,
    Thank you for the link to your site, but I can’t login I get an error: undefined please check.
    1: Color sections are full width elements so the sidebar will always show below it, try using a column instead.
    2: the border-bottom-right-radius doesn’t support negative values, perhaps an easier way will be to use an image for the corner like this:
    corner transparent
    this corner has a transparent background and you can use white text over it.

    Best regards,
    Mike

    in reply to: Blog raster horizontal #1448526

    Hi,
    Thanks for the lin to your pages, but when I check the heading for each seems to be correct.
    Please explain the issue further and perhaps a screenshot would help.

    Best regards,
    Mike

    in reply to: several problems … #1448463

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: iPhone Responsive Issues #1448318

    Hi,
    Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Search Bar Colors #1448024

    Hi,
    Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: How to get a different blog format ? #1448011

    Hi,
    Thanks for sharing Guenni007

    Best regards,
    Mike

    in reply to: several problems … #1447834

    Hi,
    Guenni007 is correct for #2, the “blog” option is not for category pages, if you want category/archive pages to be a grid then try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); 
    function avia_change_category_blog_layout($layout, $context){
    if($context == 'archive') $layout = 'blog-grid';
    return $layout;
    }

    You can not have a custom layout for a category / archive page with a hero image at the top like https://sii-talents.de/aktuell/
    To add the hero image to the top of the category pages try this solution

    Best regards,
    Mike

    in reply to: Custom Preview for Enfold Gallery #1447799

    Hi,
    Glad that this worked, if you find that this is causing issues with galleries that you don’t want this to work on, try adding a custom class like: remove-first-image at all of the places you want it to work and then use this code instead:

    function remove_first_image(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
      $( '.remove-first-image .avia-gallery-thumb a.first_thumb[data-onclick="1"]' ).remove();
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'remove_first_image');

    If you have trouble please include an admin login in the Private Content area and a link to your page so we can be of more assistance.

    Best regards,
    Mike

    in reply to: How to get a different blog format ? #1447798

    Hi,
    I added it for you but I don’t know what page has your magazine element, I’m pretty sure that you need to add the custom class larger-thumbnails for the script to work. Please add the custom class and check.

    Best regards,
    Mike

    in reply to: fullscreen images with animation #1447607

    Hi,
    Please link to the pages that you want this added to, is it all pages?

    Best regards,
    Mike

    in reply to: Background color #1447598

    Hi,
    Thanks for the login, I believe that you want this for the /horarios/ page, so I added this css to your Quick CSS:

    #top.page-id-528 #after_section_1.main_color {
    	background-color: #000;
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    I’m not seeing this on Windows in Chrome, Firefox, & Edge, what browser are you using?

    Best regards,
    Mike

    in reply to: Autoscroll Issue with iFrame #1447595

    Hi,
    This is the file with the issue type='text/javascript' src="https://evidenz.de/download/iframe_js_code.js
    Enfold Support 6009

    Best regards,
    Mike

    in reply to: secondary menu as hamburger menu #1447594

    Hi,
    This will show a different menu, specific for just one page.

    Best regards,
    Mike

Viewing 30 posts - 871 through 900 (of 33,013 total)