Forum Replies Created

Viewing 30 posts - 8,911 through 8,940 (of 34,655 total)
  • Author
    Posts
  • in reply to: Using multiple sizes favicons #1395780

    Hi,
    Thanks for sharing Guenni007

    Best regards,
    Mike

    in reply to: Fill Image on Post Slider Preview #1395779

    Hi,
    Try this css:

    #top.home #av_section_3 .avia-content-slider .slide-entry img {
    	width: 100%;
    }

    or could change the size-medium image to 400px with Simple Image Sizes and then Regenerate Thumbnails.

    Best regards,
    Mike

    in reply to: Import Demo error 28 #1395777

    Hi,
    Thanks for the link to your site, I see your PHP time limit is 165, please change to 300, and your Max input time is a negative number (-1) please change to 300 also, then try again.
    Enfold_Support_236.jpeg
    If that doesn’t help try manually importing the demo.

    Best regards,
    Mike

    in reply to: Portfolio layout #1395773

    Hi,
    The page uses the Portfolio Grid element with the Link Handling set to Open a preview of the entry (known as AJAX Portfolio)
    Enfold_Support_230.jpeg
    Then in each of the portfolio items in the Additional Portfolio Settings ▸ Ajax Portfolio Preview Settings ▸ Preview Text add your video link:
    Enfold_Support_232.jpeg
    Also ensure that Display Preview Images is set to Don’t show the images at all and display the preview text only
    Then on the frontend when you click a portfolio item and the Portfolio Ajax opens only the video will show:
    Enfold_Support_234.jpeg

    Best regards,
    Mike

    in reply to: wpmu object cache causes my newer blog posts to go blank #1395772

    Hi,
    Thanks for your question, on my demo site I only have one at wp-content/uploads/dynamic_avia/avia_posts_css, I’m not sure why you have two so I asked the rest of the team and will write back when I hear more.

    Best regards,
    Mike

    in reply to: Columns on mobile #1395770

    Hi,
    Glad to hear that you have this sorted out, 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: Using multiple sizes favicons #1395769

    Hey Alwin,
    You will need to use a plugin for this, I’m not sure which would be the best for this as there are many, please test these from the WordPress Plugins

    Best regards,
    Mike

    Hi,
    Thanks for your patience and the link to your site, it looks like you are using the grid cell element with a download button to a PDF, I tried to recreate this on my demo site and the button works and I don’t have any further issues with the ALB Builder:
    Enfold_Support_226.jpeg
    Please see the link to my test page below
    Enfold_Support_228.jpeg
    Please try disabling all of your plugins and If this doesn’t help, please include an admin login in the private content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: Fill Image on Post Slider Preview #1395767

    Hey CopperCityCreative,
    Please try this css to make the images the same width as the elements:

    #top.home #av_section_3 .avia-content-slider .slide-entry img {
    	width: 354px;
    }

    For the one image that is in portrait mode, you will need to change this image to the same landscape aspect if you want it to match the others.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: insert a Schema JSON-LD script to specific pages #1395766

    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: Accordion Slider Image Captions don’t show #1395765

    Hey Tanja,
    Thanks for the link to your site, you need to enable Display Excerpt
    Enfold_Support_224.jpeg
    I did this for you, please clear your browser cache and check.

    Best regards,
    Mike

    Hey css202301,
    Thanks for the link to your site, your PHP time limit & Max input time are 60 try changing to 300
    Enfold_Support_222.jpeg
    If that doesn’t help try manually importing the demo.

    Best regards,
    Mike

    in reply to: Polylang not compatible #1395762

    Hi,
    Sorry, I have not seen this before, updating Enfold doesn’t change the status of pages.

    Best regards,
    Mike

    in reply to: Reversing the order of specific blog posts #1395761

    Hi,
    That is because there is only one item in that row, we can’t change that you would need to change the rows.
    When it was at the bottom it was also alone.

    Best regards,
    Mike

    in reply to: Fullwidth Background images #1395760

    Hi,
    Glad to hear that you have this sorted out, 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: SVG borders requests #1395756

    Hey JannyPolak,
    Thanks for your question but I don’t understand why your SVG border is not going 100% width, in my test it does:
    Enfold_Support_220.jpeg
    Perhaps you can make a test page so we can see the issue.

    Best regards,
    Mike

    in reply to: [WooCommerce] Simple building blocks missing? #1395750

    Hey tixxpff,
    Thank you for your question, when you manually create a product with the Advanced Layout Builder you will use other elements such as the special heading to add the product title, this is by design. The ALB meant to give you the ability to create custom layouts such as this one and here is another example
    You can also use Shortcodes included with WooCommerce, but unfortunately WooCommerce doesn’t have a shortcode for displaying a product name, however, you can create your own by adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function displayProductName($item) {
         global $post; 
        $product_title = get_the_title( $post->ID );
        return $product_title; 
    }
    add_shortcode('product_name', 'displayProductName');

    and use this shortcode [product_name]
    Enfold_Support_218.jpeg

    Best regards,
    Mike

    in reply to: Polylang not compatible #1395747

    Hey Mariann_m,
    Thanks for your question, but this looks to be an error with Polylang v3.3.1 they recommend downgrading to v3.3.0

    Best regards,
    Mike

    in reply to: Reversing the order of specific blog posts #1395746

    Hey Matt,
    Thanks for the link to your page, for the first grid block I see “lesson 41” is at the top, I assume that you want “lesson 1” at the top.
    Try this css:

    @media only screen and (min-width: 768px) {
    .avia-content-slider.avia-content-grid-active .avia-content-slider-inner  {
        display: flex;
        flex-direction: column-reverse;
    }
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Fullwidth Background images #1395745

    Hey Matt,
    Thanks for your patience and the link to your site, for your background image I assume that you are using this css:

    .main_color {
        background: #ffffff url(/wp-content/uploads/2023/01/background-border-1.jpg) top left repeat-y scroll
    }

    Try adding background-size: contain; like this:

    .main_color {
        background: #ffffff url(/wp-content/uploads/2023/01/background-border-1.jpg) top left repeat-y scroll;
        background-size: contain;
    }
    

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Image size of Blog archiv and Category #1395744

    Hi,
    Try adding this css for the archive sidebar news images:

    @media only screen and (min-width: 1025px){
    .news-wrap span.news-thumb, span.news-thumb img {
        width: 200px !important;
        height: auto !important;
        margin-right: 0px !important;
    }
    .news-wrap .news-headline {
    	float: left;
    }
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Drop down menu in conent section #1395741

    Hey Sebastian,
    Thanks for your question, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function print_menu_shortcode($atts, $content = null) {
    extract(shortcode_atts(array( 'name' => null, 'class' => null ), $atts));
    return wp_nav_menu( array( 'menu' => $name, 'menu_class' => 'menu-shortcode', 'echo' => false ) );
    }
    add_shortcode('menu', 'print_menu_shortcode');

    This will let you show a menu in your page content as a shortcode, if your menu name is test then the shortcode to show it would be:
    [menu name="test"]
    Add the shortcode to a code block element:
    Then add this css:

    .entry-content-wrapper ul.menu-shortcode,
    .entry-content-wrapper .menu-shortcode li {
    	list-style: none outside;
    }
    .menu-shortcode .sub-menu {
    	height:0;
        opacity: 0;
        visibility: hidden;
    	transition: all 0.5s ease 0s;
    }
    .menu-shortcode .menu-item-has-children:hover > .sub-menu {
    	height: 100%;
        opacity: 1;
        visibility: visible;
       transition: all 0.5s ease 0s;
    }
    

    I added transition to the css to ease in and out the sub-menus so it was not so fast.
    Click the image to see the gif play
    Enfold_Support_216.gif
    https://img.savvyify.com/images/2023/01/28/Enfold_Support_216.gif

    Best regards,
    Mike

    Hey Alex Freelance,
    Thanks for your patience and the link to your site to hide your homepage menu until the page has been scrolled please try this css:

    @media only screen and (min-width: 767px) { 
    	#top.home .av_header_transparency #header_main_alternate {
    		visibility: hidden;
    	}
    }

    I see that you are using a background image for your header with a yellow arch, to make the white area under the yellow arch transparent please try this css:

    .header_color .header_bg {
    	-webkit-mask-image: unset !important;
    	background-color: transparent !important;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Area section into blog categories #1395718

    Hi,
    Thanks for your patience, this thread seems to cover a couple of topics and it seems now you are asking about the breadcrumbs on the page /category/aktuelles-aus-2023/ , you are asking about changing the style, yes you could use css to change it but I don’t know how you want to change it.
    Perhaps you could open a new thread and explain how you want to style it perhaps with some screenshots.
    This would help us keep the threads on topic and easier to follow, thanks for your understanding.

    Best regards,
    Mike

    in reply to: Fullscreen picture in the blog post #1395717

    Hey Zdeněk,
    Thanks for your patience and the link to your page, please try this css instead:

    @media only screen and (max-width: 767px) {
    .mts-blog-uvodni-obrazek {
      width: 100vw !important; 
      position: relative !important; 
      left: calc(-50vw + 50%) !important; 
    }
    .mts-blog-uvodni-obrazek .avia-image-container.avia-align-left {
    	margin: 0;
    }
    }

    Best regards,
    Mike

    in reply to: row too high on mobile #1395716

    Hi,
    Thank you for your patience to use this css for another page that is not the home page you would replace .home with the ID of the page.
    So for the post over-mij you can find the ID by hovering over the “edit” link and look at the bottom of the page for the hover link, you will see the ID is 22, so for posts you would use .postid-22 instead of .home, if it was a page you would use .page-id-22
    I think there are some plugins that will show the IDs in an easier way.
    If you want it to work for all pages and posts then remove the .home

    Best regards,
    Mike

    in reply to: slider on store like home #1395715

    Hi,
    Thanks for the link to your new page, but the code Ismael gave you is for the child theme functions.php, not for a text block on a page:
    Enfold_Support_196.jpeg
    Like this:
    Enfold_Support_198.jpeg
    I added this for you and now the slider shows on your shop page:
    Enfold_Support_200.jpeg
    and your product page:
    Enfold_Support_202.jpeg
    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Edit Front Problem #1395714

    Hey IBRAHIMBerro,
    Thanks for the login, I see that you are getting this error:

     Failed to load resource: the server responded with a status of 404 (Not Found) /wp-admin/admin-ajax.php 

    I found that your Permalink structure includes /index.php/
    Enfold_Support_194.jpeg
    I changed it to the basic Post name structure, please clear your server cache and check. If this doesn’t help please check your server error log and ask your webhost to check the file permissions for the /wp-admin/admin-ajax.php file because it should not give a 404 (Not Found) error.

    Best regards,
    Mike

    in reply to: Horizontal vs Vertical Nav. #1395710

    Hi,
    Glad to hear that you have this sorted out, some of our demos have sidebar headers like this one and it works well, you will notice that below 767px the sidebar changes to a burger menu.
    I don’t see any issues so we probably want to make the client happy :)
    Perhaps you would want to choose one of these sidebar demos as a base to start with?
    Naturally, if you run into any issues we will be happy to help.

    Best regards,
    Mike

    in reply to: How to remove the shortlink #1395709

    Hi,
    Glad Nikko was 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

Viewing 30 posts - 8,911 through 8,940 (of 34,655 total)