Forum Replies Created

Viewing 30 posts - 15,691 through 15,720 (of 34,221 total)
  • Author
    Posts
  • in reply to: Special characters – something silly #1228101

    Hi,
    Sorry, I don’t see different colors, but it does look like an optical illusion if I stare at it. But the inspector is saying that all are black.
    I notice this looks different if you change the font, try this css to see what I mean:

    #top.postid-8903 .entry-content p {
    	font: initial !important;
    }

    Best regards,
    Mike

    in reply to: Video icon play in layer slider #1228096

    Hey SphereEvenements,
    Sorry for the late reply, the layerslider places these images from the file in the Private Content area. You could create a replacement file with the images you wish, or you could try this css with your own custom image.

    .ls-noskin .ls-playvideo, .ls-noskin .ls-loading-container, .ls-noskin .ls-fullscreen {
        background-image: url(play-button.png) !important;
        background-size: contain;
        background-repeat: no-repeat;
    }

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

    Best regards,
    Mike

    in reply to: Special characters – something silly #1228089

    Hey Rob,
    Sorry for the late reply and thanks for the login, I found your test page, but your arrows are black for me, zoom in or not, please see the screenshot in Private Content area.
    The color is determined by the classes of the parent elements, so it is possible for the characters to be different colors depending on where they are placed.

    Best regards,
    Mike

    Hey navindesigns,
    Sorry for the late reply and thanks for the link, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .avia_transform #top.home .av_slideshow_full .active-slide .avia-caption-title, .avia_transform .av_fullscreen .active-slide .avia-caption-title {
        visibility: visible;
        animation: caption-left 6s 1 cubic-bezier(0.985,0.005,0.265,1) !important;
        -webkit-animation: caption-left 6s 1 cubic-bezier(0.985,0.005,0.265,1) !important;
        animation-fill-mode: forwards !important;
    }
    .avia_transform #top.home .av_slideshow_full .active-slide .avia-caption-content, .avia_transform .av_fullscreen .active-slide .avia-caption-content {
        visibility: visible;
        animation: caption-right 6s 1 cubic-bezier(0.985,0.005,0.265,1) !important;
        -webkit-animation: caption-right 6s 1 cubic-bezier(0.985,0.005,0.265,1) !important;
        animation-fill-mode: forwards !important;
    }
    @keyframes caption-left {
        0% {
            transform: translate(-2000px,0);
            opacity: 0;
        }
    
        20% {
            transform: translate(0,0);
            opacity: 1;
        }
        80% {
            transform: translate(0,0);
            opacity: 1;
        }
        100% {
            transform: translate(-2000px,0);
            opacity: 0;
        }
    }
    @-webkit-keyframes caption-left {
        0% {
            transform: translate(-2000px,0);
            opacity: 0;
        }
    
        20% {
            transform: translate(0,0);
            opacity: 1;
        }
        80% {
            transform: translate(0,0);
            opacity: 1;
        }
        100% {
            transform: translate(-2000px,0);
            opacity: 0;
        }
    }
    @keyframes caption-right {
        0% {
            transform: translate(2000px,0);
            opacity: 0;
        }
    
        20% {
            transform: translate(0,0);
            opacity: 1;
        }
        80% {
            transform: translate(0,0);
            opacity: 1;
        }
        100% {
            transform: translate(2000px,0);
            opacity: 0;
        }
    }
    @-webkit-keyframes caption-right {
        0% {
            transform: translate(2000px,0);
            opacity: 0;
        }
    
        20% {
            transform: translate(0,0);
            opacity: 1;
        }
        80% {
            transform: translate(0,0);
            opacity: 1;
        }
        100% {
            transform: translate(2000px,0);
            opacity: 0;
        }
    }
    

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

    Best regards,
    Mike

    Hey fcp,
    Sorry for the late reply and thanks for the link, which category are you trying to exclude?
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_pre_get_posts_query( $q ) {
    
      $tax_query = (array) $q->get( 'tax_query' );
    
      $tax_query[] = array(
             'taxonomy' => 'product_cat',
             'field' => 'slug',
             'terms' => array( 'uncategorized' ), 
             'operator' => 'NOT IN'
      );
    
      $q->set( 'tax_query', $tax_query );
    }
    add_action( 'woocommerce_product_query', 'custom_pre_get_posts_query' );  

    and change the category “uncategorized” in the code to the category are you trying to exclude.
    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Remove connect.facebook.net JS #1228069

    Hi,
    Sorry for the late reply and thanks for the login. The fbevents.js is loaded by your HubSpot Embed Code in your child theme footer.php
    Which I guess you are going to want to keep, but now you know where it is coming from.

    Best regards,
    Mike

    Hey Diana,
    Sorry for the late reply and thanks for the login, I restored your test page so I could see the issue, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .avia-testimonial-wrapper .avia-slideshow-arrows a:before {
        background: transparent !important;
    }

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

    Best regards,
    Mike

    Hey Frank,
    Sorry for the late reply and thanks for the link, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .wpml-ls-menu-item.dropdown_ul_available span.dropdown_available:after {
    	content: "\00a0\2BC6" !important;
    }

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

    Best regards,
    Mike

    in reply to: Remove current portfolio post from portfolio grid #1228054

    Hi,
    You would place it at the end. Would you like us to take a look?

    Best regards,
    Mike

    in reply to: Countdown translation #1228053

    Hi,
    Alright, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    Hey santanin,
    Sorry for the late reply, I was not able to recreate your archive page layout for testing on my localhost, but your images are cropped, please see the direct link below.
    Try adding this code to the end of your functions.php file in Appearance > Editor to create a new image with the size of 200px X 300px and to not crop.

    add_image_size( 'news-cover', 200, 300, false );
    add_filter( 'image_size_names_choose', 'my_custom_sizes' );
    function my_custom_sizes( $sizes ) {
        return array_merge( $sizes, array(
            'news-cover' => __( 'News Cover' ),
        ) );
    }

    Then copy the file /enfold/includes/loop-index.php and add to your child theme in a new directory /includes/ then edit line 86, look for:

    $size = strpos( $blog_style, 'big' ) ? ( ( strpos($current_post['post_layout'], 'sidebar') !== false ) ? 'entry_with_sidebar' : 'entry_without_sidebar' ) : 'square';

    and change to:

    $size = strpos( $blog_style, 'big' ) ? ( ( strpos($current_post['post_layout'], 'sidebar') !== false ) ? 'entry_with_sidebar' : 'entry_without_sidebar' ) : 'news-cover';

    and then add this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .small-preview {
        width: 200px !important;
        height: 100% !important;
    }

    Then you will need to Regenerate Thumbnails and clear your browser cache and check.
    If that doesn’t help, please include an admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Fatal Error #1227970

    Hi,

    @coxjeffery
    please create a new thread and include a recap, link to your site, FTP access, and WordPress admin access in the Private Content area. Since this is not your thread posting your login here will not be private and you will not see anything we write in the Private Content area.
    Please reply here with a link to your new thread so we can find it easier.

    Best regards,
    Mike

    in reply to: Google Tag Manager for WordPress | GDPR #1227965

    Hey janhofmanveiligheidsopleidinge,
    Sorry for the late reply, I installed the Google Tag Manager for WordPress plugin on a test site and didn’t find any cookies, it turns out GTM doesn’t use cookies, the tools that you implemented via GTM (for example, Google Analytics) are using cookies.
    Which is why when you use [av_privacy_google_tracking] it’s working just fine.

    Best regards,
    Mike

    in reply to: Remove current portfolio post from portfolio grid #1227963

    Hi,
    Sorry for the late reply and thanks for the links, I tested this issue by placing a “portfolio grid” element on a portfolio item page, and as you pointed out the same item shows in the “portfolio grid” element. I then tested this function and it removed the current item from the grid.

     function ava_exclude_portfolio($query) {
    	$query->set( 'offset', '1' );
    }
    
    add_action('pre_get_posts', 'ava_exclude_portfolio');

    If this doesn’t work for you please check that the code you added doesn’t have “curly quotes” instead of straight quotes, which can break the code. Also check if your web host is using Memcached or another “object” caching program on the server, if so try to disable for testing, also try disabling your plugins and enable one at a time, clearing your cache between each activation, to see if there are any conflicts.
    Otherwise, please include an admin login so we can investigate.

    Best regards,
    Mike

    in reply to: Mailchimp contact form #1227962

    Hey JCEmanuels,
    Sorry for the late reply and thanks for the link, I see that your contact form is built with the “contact form” element, to integrate MailChimp please create your contact form in your MailChimp account and then display it with the “MailChimp” element.
    Unfortunately, the contact form can’t connect to your MailChimp account.

    Best regards,
    Mike

    in reply to: Color section video background not working #1227961

    Hey les_360,
    Sorry for the late reply and thanks for the login, I found 3 pages with color sections with background videos, yet they all seem to work correctly.
    Are you still having this issue or did the other solution start working?

    Best regards,
    Mike

    Hey Kritzfred,
    Sorry for the late reply and thanks for the link, to make your header transparent until scrolled and sticky, please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    /* transparent header for mobile */
    @media only screen and (max-width: 766px) { 
      .responsive #top #main {margin-top: -80px!important;}
      #top #wrap_all .av_header_transparency {background-color: transparent!important;}
      div#header_main > .container {display: block !important;}
      }
    /* sticky header on mobile*/
    @media only screen and (max-width: 767px) {
      .responsive #top #wrap_all #header {
        position: fixed;
      }
    }

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

    Best regards,
    Mike

    in reply to: Api mailchimp connection #1227954

    Hi,
    Sorry for the late reply and thanks for the login, when I check your MailChimp API key in the theme options it seems to work correctly, showing 5 different optins.
    Please clear your browser cache and check, please see the screenshot in Private Content area.
    Perhaps MailChimp was down when you last checked and now it is up?

    Best regards,
    Mike

    in reply to: image lightbox – make it fit width of the browser #1227951

    Hi,
    Sorry for the late reply and thanks for the link. To set a position of “fixed” for the lightbox arrows please try the following css, but unfortunately the lightbox “close” button is a child of the “content” div so when it is “fixed” it is at the top of the content or image.
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .mfp-arrow {
        position: fixed !important;
    }

    Best regards,
    Mike

    in reply to: Countdown translation #1227948

    Hey Ramon,
    Sorry for the late reply, I have checked both “de_DE.po” & “de_DE_formal.po” with Poedit and found an entry for “second > zweite” in “de_DE_formal.po”, so I believe you are using “Deutsch (Sie)” (de_DE_formal) and this can be changed in \enfold\lang\de_DE_formal.po with Poedit.
    I have noticed that the “de_DE_formal” doesn’t seem to be used as much and is not quite as updated, I can make this change for you and link to the updated file, or you can try using Poedit to edit the language yourself and also check for other errors.
    If you wish to share your modified language files “de_DE_formal.po” & “de_DE_formal.mo” via DropBox or Google Drive I will submit them to the dev team to include in the next theme update.

    Please note that the software “Poedit” allows you to edit the “human readable” “de_DE_formal.po” file and save the changes to the “machine readable” “de_DE_formal.mo” along with the .po version, so the language file is actually two files for it to work, that is why I asked for copies of both, and if you make changes you will have to upload both files.
    I hope I explained this well.

    Best regards,
    Mike

    in reply to: Remove date from search engines results #1227922

    Hi,
    In a follow-up question in another thread you asked:

    Is there a way to achieve this without having to modify core files?
    Maybe a function?

    Unfortunately, there is not a function to remove the datePublished from the theme’s structured data, but you can use the solution above in your child theme by creating an /includes/ directory in your child theme and adding your modified helper-markup.php file, and then add this to your child theme functions.php require_once( 'includes/helper-markup.php' );
    I have tested this on a new install with a child theme and it works correctly.

    Best regards,
    Mike

    in reply to: Remove date from google results #1227921

    Hi,
    Unfortunately, there is not a function to remove the datePublished from the theme’s structured data, but you can use the solution from your previous thread in your child theme by creating an /includes/ directory in your child theme and adding your modified helper-markup.php file, and then add this to your child theme functions.php require_once( 'includes/helper-markup.php' );
    I have tested this on a new install with a child theme and it works correctly.

    Best regards,
    Mike

    in reply to: Media library white, not working #1227905

    Hi,
    Thanks for the login, your favicon.png which is uploaded via the theme options is showing in the page source code correctly, this issue is due to browsers looking for the favicon.ico in the root of the domain. This article explains why Favicon not showing up in WordPress specifically, the last reason is: “You also need to add the .ico file to the site’s root”
    Please try adding the file linked in the Private Content area to the root of your domain via ftp or your web host file manager.

    Best regards,
    Mike

    in reply to: pop up subscription mailchimps #1227845

    Hi,
    Sorry for the late reply and thanks for the login. How are you trying to add the popup? I don’t see any shortcodes or code blocks on your homepage for a MailChimp popup.
    If want to use a lightbox popup for your form please see this post.
    If you want to use the Mailchimp supplied embedded forms, please see this article.

    Best regards,
    Mike

    Hi,
    @gbd Thanks for the FTP access, but the WordPress login doesn’t include a user ID.
    I uploaded the default demo images and I modified the import file “dummy.xml” to import the images from your domain instead of ours.
    Try disabling all of your plugins, except woocommerce if you are going to use it, and then try importing the demo again.
    If this doesn’t work then include your admin user ID and I’ll investigate further.

    Please note that the “default demo” doesn’t include all of the images that you see in the online demo. Sometimes people think that the import didn’t work because their demo doesn’t look like the online version, this is not your case, but I wanted you to be aware.
    The “2017 Demo” does include all of the images and it has more example pages to demonstrate the elements.
    2020-07-03_173627.png

    Best regards,
    Mike

    in reply to: Fade for Header text #1227761

    Hi,
    Sorry for the late reply, I have tried to recreate one of your pages with the special heading and a diagonal border and then compared the source code with yours, but I don’t see a difference to explain why yours is not working.
    Please check the page shortcode in the Private Content area, to see if I have the settings correct and if it works for you. Did you try to exclude the color section, or the special heading from the lazyload?
    Can you exclude whole pages? If so try excluding one page, if that helps then try excluding the color section, or the special heading to see if you can pin it down to one element. don’t forget to clear your browser and site cache between tests.
    If none of this helps please include your page shortcode for me to test.

    Best regards,
    Mike

    in reply to: Replace social menu with, add menu in header #1227758

    Hi,
    Sorry for the late reply, I checked the 3 links but I don’t see a difference in the headers, please see the screenshot in Private Content area. Does it look different for you?

    Best regards,
    Mike

    in reply to: Learndash Quiz Results Display Issue – 2.0 #1227757

    Hi,
    Thanks for the link to your functions.php, I have added the script above and uploaded to DropBox, please find the link below in the Private Content area.

    In your functions.php I see you have this:

    @ini_set( 'upload_max_size' , '200M' );
    @ini_set( 'post_max_size', '200M');
    @ini_set( 'max_execution_time', '300' );

    I believe this doesn’t work to change your PHP settings, typically this is only changeable via: php.ini, .htaccess or httpd.conf,
    but if your webhost told you to put this there and it’s working for you then ok.

    Best regards,
    Mike

    in reply to: Socket Menu Spacing #1227755

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    Hi,
    Thank you, but unfortunately, this didn’t work. I also tried using a VPN with a Swiss IP in case my country was being blocked, but it didn’t help. Hopefully, your web host can help us sort this out.

    Best regards,
    Mike

Viewing 30 posts - 15,691 through 15,720 (of 34,221 total)