Forum Replies Created

Viewing 30 posts - 61 through 90 (of 32,211 total)
  • Author
    Posts
  • in reply to: logo mobile too wide #1448703

    Hi,
    Right now vertically your logo is 80px but this is the same as your menu so they are both is line with each other, if you change the height they will not be in line with each other.
    Is this what you are asking?
    Your slider height is 97px, but the header height is 80px, so I’m thinking that your slider should be adjusted to match your header instead of being larger.

    Best regards,
    Mike

    in reply to: logo mobile too wide #1448690

    Hi,
    To make the logo link smaller for mobile try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 480px) { 
    #top.page-id-11754 #header_main .logo {
    	width: 60px;
    	max-width: 60px;
    }
    }

    but it also looks like you will need to make the button in the slider come to the fore ground with z-index, try around 99
    I have not used the revolution sliderI’m not sure where this setting is, perhaps you do, or try checking the revolution slider documentation.

    Best regards,
    Mike

    in reply to: Self hosted video – only link is visible #1448689

    Hi,
    Thank you for your patience, the URL to your video is not a direct link to the video, it is a link to a amazon hosted player, please try a direct link to the video and not the player
    please look at the URL and you will see the word “player” and ends with “stream”
    s3-eu-west-1.amazonaws.com/rokus-video-transcode/player/index.html?video= ... /stream
    it should be a direct file URL that ends with “.mp4”
    I’m not sure if amazonaws will give you a direct URL, try uploading the file to your WordPress media library.

    Best regards,
    Mike

    Hey Jey,
    Thanks for reaching out and glad to hear that you are using Enfold for one of your other sites and have some experience with it, this will make converting your new site over easier, but unfortunately you will need to recreate your pages with Enfold since Enfold can not automatically convert your pages.
    I recommend creating a staging site of your new site so while you work on this your site will still be live.
    Most cPanel webhosts have a staging site option, some in the dashboard:
    staging-1.jpeg
    Others add the option in the Softaculous WordPress Management
    2022-12-11_001.jpeg
    There may be other staging site options in different cPanel servers, these are the two that I have seen.
    Then all of your posts will be available for Enfold, and you should only need to recreate your pages using Enfold elements, it looks like most of your pages are using the same layout with different images and text, so you could create one template and save as a template in the Advanced Layout Builder (ALB)
    Enfold Support 6048
    to reuse on each page, then change the images & text.

    Best regards,
    Mike

    in reply to: TABLES: the columns do not have the same height #1448685

    Hi,
    Thank you for the link to your site and pointing this out, I will let the Dev Team know, but for now try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .avia-pricing-table-container.avia_show_empty_cells .pricing-table li.empty-table-cell {
        display: block;
    }

    While this will show the empty cells, your table columns will still not be the same height because the cells in the last column has more content than the first two.
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function equal_height_pricing_table() { ?>
      <script>
    (function($) {
      $(function() {
          $('#preisliste .avia-pricing-table-container .pricing-table-wrap:nth-child(3) li').each(function(index){
              $('#preisliste .avia-pricing-table-container .pricing-table-wrap:nth-child(2)').find('li').eq(index).css('height', $(this).css('height'));
              $('#preisliste .avia-pricing-table-container .pricing-table-wrap:nth-child(1)').find('li').eq(index).css('height', $(this).css('height'));
          });
      });
      })(jQuery);
      </script>
      <?php
    }
    add_action( 'wp_footer', 'equal_height_pricing_table', 99 );

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    Please note that this will only work on your table in the preisliste section so it will not interfere with any others on your site.

    Best regards,
    Mike

    Hi,
    Thank you for the link to your site, in your Custom CSS & JS plugin you have the footer background color set to black with a !important;, so for the theme settings to work you will need to remove this css:
    Enfold Support 6046
    I don’t see two scroll bars when I check your site, when page do you see this on?

    Best regards,
    Mike

    in reply to: Width of footer columns #1448680

    Hi,
    It sounds like you found a solution without using css, shall we close this thread then?

    Best regards,
    Mike

    in reply to: Menu Parallax Demo Issues #1448679

    Hi,
    Thank you for the login, but unfortunately it doesn’t seem to work, please check.
    When I check with Safari on a Mac in Responsive Design Mode to emulate a iPhone your menu items seem to work correctly, on the home page and on other pages linking back to the home page, the same as on Android.
    I imagine this is because you are now using two menus as Yigit suggested and you are using just the anchor link ID like “#contact”, as Ismael suggested on one of your menus.
    Try clearing your iPhone cache and also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.
    If you still have this issue please update the site login and I will ask the rest of the team to check with an iPhone, assuming that this is only an issue with the actual iPhone device.

    Best regards,
    Mike

    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

Viewing 30 posts - 61 through 90 (of 32,211 total)