Viewing 30 results - 12,811 through 12,840 (of 244,545 total)
  • Author
    Search Results
  • Hi,

    We didn’t find any errors in the css code above. Please try to set the builder to debug mode so that we can check the actual shortcodes of the builder elements.

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

    Best regards,
    Ismael

    #1421853

    Hi Svenja,

    To make sure it’s consistent on both systems, you can try to upload custom fonts instead:
    1. Go to https://transfonter.org/
    2. Add the Palatino font (get it from your Mac)
    3. Check TTF, EOT, WOFF, WOFF2, SVG and click Convert
    4. Click the Download link
    5. Go to Enfold > Import/Export > Custom Font Manager, upload the zip file generated from the previous step.

    For further information check our documentation: https://kriesi.at/documentation/enfold/typography/#how-to-upload-custom-fonts
    Or you may want to check this thread for further information: https://kriesi.at/support/topic/loading-google-fonts-locally-for-gdpr-compliance/
    Hope it helps.

    Best regards,
    Nikko

    #1421848

    Hi mgyura,

    It seems the error is somehow related to Woocommerce as you mentioned before:
    https://stackoverflow.com/questions/73290406/warning-attempt-to-read-property-term-id-on-int-woocommerce

    Can you give us a copy /nas/content/live/mywtenfold/index.php ?
    or if you can setup a staging site for us, that would help us try to debug the issue.

    Best regards,
    Nikko

    #1421847

    Hi,
    Thanks for the feedback and the link to your example site, it helped me by seeing what they have done. When I check the site I see the break point for the mobile menu is 992px, and the set the menu item width to 14.25% and the font is a little smaller.
    So to show the burger menu until 991px we will use this css:

    @media only screen and (min-width: 767px) and (max-width: 991px) {
      #top #header .av-main-nav > li.menu-item  {
          display: none!important;
      }
      #top #header .av-burger-menu-main.menu-item-avia-special  {
          cursor: pointer;
          display: block!important;
      }
      #top #header .av-main-nav > li > a {
      	background-color: transparent !important;
      }
      .html_header_top #top .av_menu_left .main_menu {
        right: 20% !important;
        left: auto !important;
      }
      .html_header_top .av_bottom_nav_header .av-logo-container .main_menu {
        display: block !important;
    }
      #top #header_main_alternate {
    	 display: none;
    }
    }

    the expected results:
    Enfold_Support_3634.jpeg
    Then to set the main menu similar to the other site we will use this css:

    @media only screen and (min-width: 992px) { 
    .main_menu {
        display: flex;
        align-items: center;
    }
    .avia-menu>ul.av-main-nav {
        margin: 0;
        display: flex;
        justify-content: space-around;
        position: relative;
    }
    .avia-menu>ul.av-main-nav>li.menu-item {
        width: 14.25%;
        padding: 0;
    }
    .avia-menu>ul.av-main-nav>li.menu-item>a,
    .avia-menu>ul.av-main-nav>li.menu-item>a span {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0;
        font-size: 18px;
    }
    .avia-menu>ul.av-main-nav>li.menu-item .avia-menu-text,
    .avia-menu>ul.av-main-nav>li.menu-item-search-dropdown {
    	display: flex;
        justify-content: center;
    }
    #top #header_main_alternate .container {
        margin: 0 auto;
        padding: 0px 50px;
    }
    }
    @media only screen and (min-width: 1200px) { 
    .avia-menu>ul.av-main-nav>li.menu-item {
        margin: 0 13px;
    }
    }

    the expected results 992px:
    Enfold_Support_3636.jpeg
    and at larger screens 1440px:
    Enfold_Support_3638.jpeg
    Please give this a try.
    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    #1421846
    HulaSlim
    Participant

    Dear Enfold Team,
    Is there a way to keep the view balanced on smartphone view for icons ? Icons and titles look fine on the computer, but don’t go on the same line on the smartphone view.
    Is there a way to put them side to side and remove the title ?
    I tried removing the titles and redo them in an icon box, and achieved the solution mentioned below, but as I have 60 pages I would like to spare me a lot of work. Is there is a code I could use to keep icons as they are but make them look balanced ?
    Thank you for helping,
    Regards,
    Natacha

    #1421839

    Sign in

    Thank you. The product’s short description will not show up on the individual product. I had to add a box in. I am reaching but could that have anything to do with this format changing?: It seems Enfold doesn’t want to work well here. Thanks in advance for the help.

    UPDATE: I see now the theme is not updating. I reinstalled and have updated version still not fixed.

    Pam

    • This reply was modified 2 years, 6 months ago by extraeyes.
    • This reply was modified 2 years, 6 months ago by extraeyes.
    • This reply was modified 2 years, 6 months ago by extraeyes.
    #1421835

    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

    #1421834

    In reply to: Blog pic width

    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

    #1421830

    In reply to: Blog pic width

    Hey Bettina,
    Thanks for the link to your site, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top.single-post .avia-image-container.avia-align-left {
        margin-right: 0;
    }
    #top.single-post p > i {
    	font-size: 12px;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1421828

    Hi,
    I can get the menu items to be in one row starting at 768px with this css:

    @media only screen and (min-width: 768px) { 
    	#header_main_alternate > .container {
    		margin: auto;
    		padding: 0;
    	}
    	#top #header .av-main-nav > li {
        padding: 0;
        }
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    but not spaced equally across the whole width of the navigation.
    After applying the css, please clear your browser cache and check.
    the expected results:
    Enfold_Support_3626.jpeg

    Best regards,
    Mike

    #1421824

    Hi,
    It looks the same as before to me:
    Enfold_Support_3622.jpeg
    Enfold_Support_3624.jpeg

    Best regards,
    Mike

    #1421816

    Hey jamesbarrell,
    For your mobile menu, it looks correct up to 767px:
    Enfold_Support_3616.jpeg
    but at 768px it looks like you have some custom css that adds a burger menu to the left of the logo:
    Enfold_Support_3618.jpeg
    so please find this custom css and remove it:

    @media only screen and (max-width: 1366px){
    nav.main_menu {
        display: block !important;
    }
    }

    that should fix it to look like this:
    Enfold_Support_3620.jpeg

    Best regards,
    Mike

    #1421813

    Hi,
    I believe Nikko made the chage at Enfold Theme Options ▸ Theme Options ▸ Where Do You Want To Display The Blog
    I believe the image is added by your custom function in your child theme functions.php:

    function add_custom_header_image() {
    	if ( is_single() || is_archive() ) { ?>
        	<div class="single-header-image"><br><br></div>
    		<div class="breadcrumbrow" style="background-color: #f8f8f8;"><div class="container" style="padding-top:3px;">
    					<?php echo do_shortcode('[av_breadcrumbs]'); ?></div></div>
    <?php }
    }
    add_action( 'ava_after_main_title', 'add_custom_header_image', 10 );

    To show the image and breadcrumb in the above function on the blog page you would add !is_front_page() && is_home()
    like this:

    
    function add_custom_header_image() {
    	if ( is_single() || is_archive() || !is_front_page() && is_home() ) { ?>
        	<div class="single-header-image"><br><br></div>
    		<div class="breadcrumbrow" style="background-color: #f8f8f8;"><div class="container" style="padding-top:3px;">
    					<?php echo do_shortcode('[av_breadcrumbs]'); ?></div></div>
    <?php }
    }
    add_action( 'ava_after_main_title', 'add_custom_header_image', 10 );

    I did this for you, please clear your browser cache and check the blog page

    Best regards,
    Mike

    #1421812

    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

    #1421811

    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

    #1421804

    In reply to: Mouse Hower effect

    Hi,
    Thank you for the link to your site, I added the required custom class to your masonry element:
    Enfold_Support_3608.jpeg
    I didn’t find the required css on your site, so I added it to WordPress ▸ Customize ▸ Additional CSS
    and now for mobile it seems to be working:
    Enfold_Support_3610.jpeg

    Best regards,
    Mike

    #1421800

    Hi,
    Thanks for the screenshots, it looks like the page you want to be 960px is the blog page, and I assume other pages, so I recommend settings the site content width to 960px at Enfold Theme Options ▸ General Layout ▸ Dimensions ▸ Content | Sidebar Ratio.
    Then it looks like a single post is the page you want to be 720px, I would achieve this will css like trying this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top.single-post .fullsize .template-blog .post .entry-content-wrapper {
    	  max-width: 720px;
    }
    #top.single-post .av-content-full > .related_posts {
    	max-width: 720px;
    }
    #top.single-post .av-content-full > .comment-entry {
    	max-width: 720px;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.
    This css assumes that the single post is created with the default editor, and your settings are similar to my demo site, unfortunately there are so many settings that to give to an exact solution I will need to see your page. You could include a admin login in the Private Content area below, or we could wait until your site is live.

    Best regards,
    Mike

    @Guenni007,

    regarding: “The loading of jQuery in the footer could be set on Enfold on the settings page: performance
    This is of course possible, but then you have to take into account that the scripts that need jQuery are loaded afterwards. This can be achieved, for example, by first not loading the scripts in the head area and then setting a correspondingly higher priority number for the function.”
    ****How do I “first not load scripts in head, then set a correspondingly higher priority number for the function?”*****

    Next: do you really need jQuery Migrate ? – same on performance tab”
    *****I think it’s enabled by default. I have no clue how it works, but I’ll turn it off just in case (ie i’ll enable the disable feature)*****

    Thanks!
    Jon

    • This reply was modified 2 years, 6 months ago by gatehealing.

    @Mike
    Yeah, it looks like disabling then re-enabling wp-optimizatoin fixed it for now. Leaving it off was not an option bc the optimized images were disabled with it. I got another optimization app, but it was going to take over a day to finish over 5000 images (so many apparently bc of multiple resizes of each of the 350 images I have).

    As for speed related to code needing to be minified/combined, I have no idea what happened to my wp-fastest cache, but that’s what I was using instead of just using Enfolds combine/minify tools. I’ve readded wp fastest cache, but am still scratching my head as to what happened to it in the first place.
    J

    #1421787

    In reply to: Alternative main menu

    Hi,
    Go to your menus and hover over the “delete menu” and you should see a browser tool tip for the URL, in the URL you should see the menu ID like this screenshot that shows menu=12
    Enfold_Support_3602.jpeg

    Best regards,
    Mike

    #1421786

    Hi,
    Glad to hear that you have solved most of the issues, typically the elements have a spacing options for each screen size as icons, similar to this:
    Enfold_Support_3600.jpeg
    each element is a little different so it depends on the element.
    What is the current element that you are having issues with?

    Best regards,
    Mike

    #1421780

    In reply to: contact-field

    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

    #1421779

    Hi,
    Glad we were able to help, I will look at your other issue, it looks complicated so it may take some time. 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

    #1421774

    Hi Mike, could I get the color from the category? In the HTML code of a Masonry I can see all categories attached as css-classes? I can set colors for the categories (as enfold does with products for example). Can I load them into the masonry?

    And: It is possible to register an field genereted with ACF to use it in the Masonry sorting options (Ismael once provided a code for me). So it is somehow possible to load ACF data from a post. Why not the color?

    #1421771

    Hi,
    On the page that you linked to, “Schulmaterialien” is an H1 tag and your CSS is targeting H2 tags, Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field instead:

    @media only screen and (max-width: 767px) {
      #top #wrap_all #main .header_color h1,
      #top #wrap_all #main .main_color h1,
      #top #wrap_all #main .alternate_color h1 {
        font-size: 24px;
      }
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1421770

    Hi,
    Glad Rikard 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

    #1421766

    In reply to: images not visible

    Hi,
    Glad Rikard 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

    #1421760

    Hi,
    Unfortunately there is not a way to do this with ACF & Enfold because Enfold doesn’t get the CSS colors from the post. Unfortunately I don’t see a way to do this.
    Perhaps you can get ACF to add a custom class to the masonry element that can specify the color, but I didn’t find a way to do this, my ACF knowledge is limited as well as our support of ACF.

    Best regards,
    Mike

    #1421758

    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

    #1421757

    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

Viewing 30 results - 12,811 through 12,840 (of 244,545 total)