Forum Replies Created

Viewing 30 posts - 11,461 through 11,490 (of 34,988 total)
  • Author
    Posts
  • in reply to: Insert table inside single product page #1356597

    Hi,
    You can add a horizontal scrool to the woocommerce tabs panel with this css:

    #top div div.product .woocommerce-tabs .panel {
        overflow-x: scroll;
        overflow-y: hidden;
    }

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

    Best regards,
    Mike

    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: Making Footer Socket Text larger #1356565

    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

    in reply to: Product meta on single product page #1356564

    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: Header overlapping blog content #1356562

    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: Circular image hidden #1356555

    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: Circular image hidden #1356553

    Hey briandeeney,
    Please link to the page in question so we can examine.

    Best regards,
    Mike

    Hi,
    Thank you for your patience, in your opening post you said that the EN iconbox title doesn’t show in white only for logged-in uses, but I see this error on Windows with Chrome not logged-in.
    Anyways, on your EN page all of the sections starting with #references and below are outside the #main container:
    2022-06-26_008.jpg
    compare to the DE site:
    2022-06-26_009.jpg
    typically this occurs when an element has an unclosed manually added tag or div, and typically it’s the last element befor the error, but it could be anywhere on the page.
    So considering this, when I compare your DE & EN tab section, I see the DE has two columns and EN only has one, please see the screenshot in the Private Content area.
    Please check your tab sections.
    Another possible cause is if you are programmatically adding sections with broken shortcodes or injecting shortcode somehow after the DOM, so if you are try disabling this function.
    If you just want to fix the iconbox title color for this one page, try this css:

    #top.page-id-4519 .iconbox .iconbox_content_title {
        font-size: 50px;
        color: #fff;
    }

    Best regards,
    Mike

    in reply to: 5.0.1 – slider arrows are cut off #1356550

    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

    in reply to: Masonry Gallery fill in color for transparent PNG #1356549

    Hi,
    To add a background color to the image in the masonry only and not in the lightbox, try this css:

    #av-sc-masonry-gallery-1 .av-masonry-image-container {
    	background-color: #D6D6D6;
    }

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

    Best regards,
    Mike

    in reply to: Testimonials: Auto Function stopped working #1356547

    Hey adriennesobolak,
    Thanks for the link to your page, but the testimonial at the bottom of the page is fading for me and it has small arrows at the top right corner, only on hover.
    Please try clearing your browser cache and checking again, please see the screenshot in the Private Content area.

    Best regards,
    Mike

    in reply to: Menu Titles for Dots Menu #1356545

    Hey MLA18,
    Thanks for the link to the documentation you are trying, but I couldn’t login to see your page, nonetheless I created a test page and was able to adjust the css to show the menu item text to the left of the dots:
    2022-06-26_005.jpg
    change this css:

    #top .dots-menu .av-subnav-menu li a .avia-menu-text { 
    visibility: hidden;
    }
    #top .dots-menu .av-subnav-menu li a {
      border: 1px solid grey;
      max-width: 25px;
      max-height:25px;
      border-radius:25px;  
      overflow:hidden;
      padding: 0 !important;
      border: none!important;
      background: #f3f4f7;
    }

    to this:

    #top .dots-menu .av-subnav-menu li a .avia-menu-text { 
        left: -50px;
        position: relative;
        color: #fff;
    }
    #top .dots-menu .av-subnav-menu li a {
      border: 1px solid grey;
      max-width: 25px;
      max-height:25px;
      border-radius:25px;  
      overflow:visible;
      padding: 0 !important;
      border: none!important;
      background: #f3f4f7;
    }

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

    Best regards,
    Mike

    in reply to: Header overlapping blog content #1356538

    Hi,
    Thank you for the link to your site, I see that you only have one post with a color section at the top with a background image, I thought that perhaps you added the color section so the header would not cover the post title, but when I hide it the title is not covered, is there anything we need to do to see your issue, please see the screenshot in the Private Content area.
    Can you please add a screenshot of what you see?

    Best regards,
    Mike

    in reply to: Lightbox Animation #1356537

    Hi,
    I don’t know of a crossfade option, perhaps Guenni007 does.
    I’ll leave this open for Guenni007 to reply.

    Best regards,
    Mike

    in reply to: Insert table inside single product page #1356532

    Hey noventa90,
    Thank you for the link to your site, I recommend moving the woocommerce tabs below the product image so they will be full width and your table will show full width.
    Before:
    2022-06-26_001.jpg
    After:
    2022-06-26_002.jpg
    This could be achieved on all product pages with this code added to the end of your child theme functions.php file in Appearance ▸ Editor:

    function av_woo_tabs_below() {
        remove_action('woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 1 );
        add_action('woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 20 );
        }
    add_action( 'init', 'av_woo_tabs_below');

    But as I understood your question you only wanted this on some products, so use this instead:

    add_action( 'woocommerce_single_product_summary', 'woo_tabs_below', 20);
    function woo_tabs_below() {
       global $post;
       $idsArr = [1100, 1098];
       if ( is_single() && in_array($post->ID, $idsArr )) {
          remove_action('woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 1 );
        add_action('woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 20 );
    
       }
    }

    change the numbers 1100, 1098 to your product pages, and you can add more.
    You will notice some extra padding between the tabs and the product image so add this css to your Quick CSS to remove:

    #top.single-product .template-shop .single-product-main-image {
    	padding-bottom: 0;
    }
    #top.single-product .template-shop .single-product-main-image ~ .woocommerce-tabs {
    	padding-top: 0;
    }

    Best regards,
    Mike

    in reply to: Lightbox Animation #1356530

    Hi,
    Thank you Guenni007, that does seem to work better.

    Best regards,
    Mike

    in reply to: Blog Grid Thumbnail Size #1356512

    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: Masonry Grid modification #1356509

    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: Image with hotspots that open image in lightbox #1356507

    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

    Hi,
    Thanks for the link to your site, I’m seeing this error: Uncaught TypeError: $ is not a function
    2022-06-25_013.jpg
    typically this occurs when a script is loaded before the jQuery is loaded, please check that WP rocket is not forcing jQuery in the footer, and check that the option at Enfold Theme Options ▸ Performance ▸ Load jQuery in your footer is not enabled.
    There could be a conflict if the WP rocket plugin and Enfold are trying to do the same thing.
    If this doesn’t help try disabling the WP rocket plugin lazy load option and clear your cache and check again.
    If this doesn’t help please include an admin login in the Private Content area so we can check.

    Best regards,
    Mike

    Hi,
    Glad Guenni007 could help, thank you Guenni007, 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

    Hi,
    Glad that Ismael could help, you can add the edited /portfolio/portfolio.php to your child theme so future updates won’t overwrite this customization, please see our documentation here.

    Best regards,
    Mike

    in reply to: Lightbox Animation #1356497

    Hey Oliver,
    Try this css:

    .mfp-zoom-in.mfp-wrap, .mfp-zoom-in .mfp-content, .mfp-zoom-in .mfp-figure, .mfp-zoom-in .mfp-iframe-holder .mfp-iframe-scaler {
    transition: 0.7s ease;
    }

    I had to slow it down more to test, this seems to show the ease better:

    .mfp-zoom-in.mfp-wrap, .mfp-zoom-in .mfp-content, .mfp-zoom-in .mfp-figure, .mfp-zoom-in .mfp-iframe-holder .mfp-iframe-scaler {
    transition: 2s ease;
    }

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

    Best regards,
    Mike

    in reply to: Masonry Elements #1356496

    Hey ayeh,
    Thanks for your patience, are you showing blog posts with the masonry element? You can try this to reduce the excerpt length, Try adding this code to the end of your functions.php file in Appearance ▸ Editor:

    add_filter('avf_masonry_excerpt_length','avia_change_masonry_excerpt_length', 10, 1);
    function avia_change_masonry_excerpt_length($length) {
    $length = 10;
    return $length;
    }

    but please note that adding a manual excerpt will override this.
    I tested a masonry in color section with the Perfect Grid, but the Featured image did show for me, so try creating a test page and include admin login in the Private Content area so we can examine.

    Best regards,
    Mike

    in reply to: Page Preloading problem #1356495

    Hey Reut Rachel,
    Thanks for the link to your site, but unfortunately I couldn’t login.
    The css that is blocking your menu right now is on line 95 in your child theme stylesheet:

    .home .av-siteloader-wrap{
        display: block !important;
    }

    remove this and you will be able to click your menu again.
    Unfortunately, I don’t have a solution for making the Page Preloading option work only on the first loading of the homepage.
    Determining only the first load of the page would be difficult and require some custom javascript.
    Perhaps there is a preloader plugin that will beable to do this, I recommend checking.

    Best regards,
    Mike

    in reply to: Product meta on single product page #1356493

    Hey Reut Rachel,
    Thank you for your patience and the link to your site, I assume that you mean this area in blue:
    2022-06-25_012.jpg
    to hide this try this css in your Quick CSS:

    #top.single-product .product_meta {
    	display: none;
    }

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

    Best regards,
    Mike

    in reply to: mega menu images not appearing #1356491

    Hi,
    Thank you for the link to your two sites, but compareing the mega menu item “About” of the takemetheresailing.com site and “About” of the 3f6c0ed8c6.nxcli.net site shows that they both have the same structure, the mega menu item has two columns, note in the screenshot avia_mega_menu_columns_first & avia_mega_menu_columns_last
    so to show an image and links next to it you need to use two columns:
    2022-06-25_151545.jpg
    which you have done correctly in the backend
    2022-06-25_006.jpg
    on the takemetheresailing.com site you also have the links as a submenu under the “Just say “Take Me There”!” menu item:
    2022-06-25_009.jpg
    So I don’t see a difference between the two sites.

    Now to test whether an image column will show an image I temporarily created a mega menu item with only one column, which was an image column and it also worked correctly:
    2022-06-25_011.jpg
    2022-06-25_010.jpg
    but I don’t believe this is what to want to do anyways because you already said that you want the same mega menu and columns as the takemetheresailing.com site
    which you currently do.
    Please note that this thread was from 2016 and since this is not your thread you will not see anything we write in the Private Content area, in the future it would be better to open your own thread, thank you for your understanding.

    Best regards,
    Mike

    in reply to: Mobile "stutter" when scrolling page #1356490

    Hi,
    Thank you for your patience and thanks to Guenni007 for spoting the issue, when the mobile header is scrolled, the class: av_header_transparency is removed and the switch from absolute to relative is the reason for the “jump”
    please try this css in the Quick CSS to correct:

    @media only screen and (max-width:1100px) {
     #top #wrap_all .av_mobile_menu_tablet {
      background:transparent!important;
      position:absolute!important
     }
    }

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

    Best regards,
    Mike

    in reply to: Scroll animation on Homepage does not work #1356489

    Hi,
    Thank you for your patience and the link to your site, for the mobile curtain effect of the top slider try this css:

    #top.av-curtain-footer #main > *:not(.av-curtain-footer-container) {
      z-index: 1;
      position: relative;
    }

    for the footer issue try this css:

    #top.av-curtain-footer.av-curtain-activated #main > .av-curtain-footer-container  {
      z-index: 5;
      position: relative;
    }
    #top.av-curtain-footer.av-curtain-activated #main > #av-curtain-footer-placeholder {
    	height: 0 !important;
    }

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

    Best regards,
    Mike

    Hey Johannes,
    Vielen Dank für Ihre Geduld und für die Links zu Ihrer Website. Ich habe versucht, Ihren Beispielen zu folgen und festgestellt, dass Ihr erstes:

    funktioniert nicht, weil es auf der Seite /ueber-sie/ keine ID: flicts-in-the-team gibt
    und es in ein neues Fenster / einen neuen Tab einzugeben und die Eingabetaste zu drücken, funktioniert nicht.

    für: https://johannesfaupel.com/ueber-sie/#hoher-krankenstand
    das funktioniert bei mir korrekt auf Mac (Safari) & PC (Chrome)

    Die beiden Schieberegler, die ich gefunden habe, funktionieren auch bei mir, siehe Screenshots im Bereich Private Inhalte.

    Für den Link: Ressourcenperspektive (https://johannesfaupel.com/ueber-mich/#systemic-certifications-johannes-faupel)
    das geht nicht, weil auf der Seite /ueber-mich/ keine ID: systemic-certifications-johannes-faupel steht
    und es in ein neues Fenster / einen neuen Tab einzugeben und die Eingabetaste zu drücken, funktioniert nicht.

    Daher finde ich keinen Fehler bei Anker-Links, bei denen ein richtiger Anker nicht funktioniert. Wenn Sie Probleme beim Hinzufügen richtiger Anker haben, fügen Sie bitte einen Screenshot bei, wo Sie sie hinzufügen möchten, und fügen Sie den Administrator-Login im Bereich “Private Inhalte” hinzu, damit wir dies können mehr behilflich sein.

    — Translated with Google —

    Thank you for your patience and for the links to your site, I tried to follow your examples and found that your first one:

    doesn’t work because on the page /ueber-sie/ there is no ID: flicts-in-the-team
    and typing it into a new window/tab and pressing return, doesn’t work.

    for: https://johannesfaupel.com/ueber-sie/#hoher-krankenstand
    this works correctly for me on Mac (Safari) & PC (Chrome)

    the two slider buttons that I found also work for me, please see the screenshots in the Private Content area.

    For the link: Ressourcenperspektive (https://johannesfaupel.com/ueber-mich/#systemic-certifications-johannes-faupel)
    this doesn’t work because on the page /ueber-mich/ there is no ID: systemic-certifications-johannes-faupel
    and typing it into a new window/tab and pressing return, doesn’t work.

    So I don’t find an error with anchor links that have an proper anchor not working, if you have trouble adding proper anchors please include a screenshot of where you are tring to add them and include admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

Viewing 30 posts - 11,461 through 11,490 (of 34,988 total)