Forum Replies Created

Viewing 30 posts - 9,181 through 9,210 (of 34,916 total)
  • Author
    Posts
  • 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

    in reply to: Horizontal vs Vertical Nav. #1395634

    Hey pamk21,
    You can change your site to a sidebar header at Enfold Theme Options ▸ General Layout ▸ Logo And Main Menu and choose leaft or right sidebar.
    This will give you a vertical header and navigation.

    Best regards,
    Mike

    in reply to: Pop-up feature #1395632

    Hi,
    Please see this tutorial on using the Team Member element to show a popup when the image is clicked to show more information.
    It sounds exactly like what you are trying to do and explains step-by-step how to do it.
    Try testing it on a test page on your site and if you get stumped include a link to the page and an admin login so we can assist.

    Best regards,
    Mike

    in reply to: Flip box #1395628

    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: Page Title Not Showing In Pages #1395627

    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: Page Title Not Showing In Pages #1395569

    Hi,
    Thanks for the link to your site, to display the page title to the page that you linked to, please go to the backend and in the admin sidebar find Layout ▸ Title Bar Settings and choose Display only Title
    Enfold_Support_190.jpeg
    I did this for you, please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Unfortunately, this is not an option, perhaps woocommerce offers this as an addon plugin.
    Or try the solution in this thread, or perhaps this article, or this one.

    Best regards,
    Mike

    in reply to: Flip box #1395476

    Hi,
    Thanks for the feedback please try this css instead:

    .avia-icongrid .av-icon-cell-item .avia-icongrid-flipback {
        text-align: left;
    }

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

    Best regards,
    Mike

    in reply to: frame as circle #1395475

    Hi,
    I added the custom class onethirdcircle to the three circles in all three languages and then adjusted the script to look for this class.
    I then added this css in the Enfold Theme Options ▸ General Styling ▸ Quick CSS field for all three languages to center the text on mobile and cleared your cache for each language:

    @media only screen and (max-width: 767px) {
    	.responsive #top .sc-av_one_third .flex_column_table_cell.onethirdcircle {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    }

    Then to reduce the size of the circles and center them horizontally for mobile I added this css in the Enfold Theme Options ▸ General Styling ▸ Quick CSS field for all three languages to center the text on mobile and cleared your cache for each language:

    @media only screen and (max-width: 767px) {
    	.responsive #top .sc-av_one_third .flex_column_table_cell.onethirdcircle {
    		max-width: 300px;
    		margin: auto !important;
    }
    }

    In my tests this is the smallest that you can use in all three languages and still have it look good based on the words, is some languages the words are too long without a break so it doesn’t fit in the circle well. Perhaps if you made the font smaller you could have a smaller circle but then would the text easily be readable?
    You can test further if you like, please clear your mobile browser cache and check.
    Please see the screenshot in the Private Content area of the mobile results.

    Best regards,
    Mike

    in reply to: Breadcrumbs – 2 backslashes after "Home" #1395464

    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

Viewing 30 posts - 9,181 through 9,210 (of 34,916 total)