Forum Replies Created

Viewing 30 posts - 16,501 through 16,530 (of 35,061 total)
  • Author
    Posts
  • Hi,
    Glad to hear this helps, shall we close this then?
    I will take a look at your other thread.

    Best regards,
    Mike

    in reply to: socket enfold polylang issue #1229410

    Hi,
    Thanks for the login, I see that you have used the String translation for a portion of the copyright text, but when I check your French homepage the copyright is in French, yet on the English homepage the copyright is also in French, so you want this in English on the English page, correct?

    For #2 I do not get an error when I click your logo on your English homepage, I tested logged in and out. Try clearing your browser cache and check again.

    Best regards,
    Mike

    Hi,
    Glad to hear it’s sorted out now, 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

    in reply to: Add date to portfolio pages (Updated 2017 for Enfold 4) #1229397

    Hi,
    The above script doesn’t look like it’s changing the date format, so to change the date format for your site go to WordPress > Settings > General > Date Format and adjust there.

    Best regards,
    Mike

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

    Hi,
    Unfortunately, if you use the “video” layer in your slider the layerslider creates it’s own div to display the thumbnail that it grabs and placing a button over it, it is not using the YouTube iframe.
    2020-07-09_065412.png
    So your options are to use css to create a button you like, or use a custom image, or use the “HTML” layer to display the YouTube iframe code.

    The layerslider does have a “no skin” mode, go to the Slider Settings, choose the Appearance tab. The first parameter will be the Skin, choose “no skin”
    2020-07-09_065028.png
    but this will not change the video element for the reasons above, but it does remove other styles you may like to remove.

    While I was investigating I reverse-engineered some of the other skins css solutions for the video play button, you may find this helpful as a starting place for your custom css, if you choose that path.

    .ls-playvideo {
    	width: 50px;
    	height: 50px;
    	margin-left: -29px;
    	margin-top: -29px;
    	background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
    	border: 2px solid rgba(255, 255, 255, 0.7);
    	-webkit-border-radius: 50%;
    	-moz-border-radius: 50%;
    	border-radius: 50%;
    }
    
    .ls-playvideo:before {
    	position: absolute;
    	top: 16px;
    	left: 20px;
    	display: block;
    	width: 0;
    	height: 0;
    	border-style: solid;
    	border-width: 9px 0 9px 14px;
    	border-color: transparent transparent transparent rgba(255, 255, 255, 0.8);
    	-webkit-border-radius: 2px;
    	-moz-border-radius: 2px;
    	border-radius: 2px;
    	content: "";
    }
    
    .ls-playvideo:hover:before{
    	border-color: transparent transparent transparent rgba(255, 255, 255, 1);
    }
    
    .ls-playvideo:hover {
    	background: rgba(0,0,0,1);
    	border: 2px solid rgba(255, 255, 255, 1);
    }

    Best regards,
    Mike

    Hi,
    Glad to hear, please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #woocommerce_product_categories-6 .product-categories .cat-item.cat-item-361 {
    	display: none !important;
    }

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

    Best regards,
    Mike

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

    Hi,
    Perhaps, what did the critical error say?

    Best regards,
    Mike

    in reply to: breadcrumb length #1228864

    Hi,
    @Jason this code does change the title length, for 20 characters and “…” try adding this code to the end of your functions.php file in Appearance > Editor:

    
    function max_title_length( $title ) {
    	$max = 20;
    	if( strlen( $title ) > $max ) {
    	return substr( $title, 0, $max ). " …";
    	} else {
    	return $title;
    	}
    	}
    add_filter( 'the_title', 'max_title_length');

    If this is not working for you then try clearing your browser cache and any cache plugin, and any server cache and check.
    Otherwise, I recommend opening a new thread so we can assist, and include your admin login in the Private Content area, but as this is not your thread your login info will not be private if posted here.

    Best regards,
    Mike

    Hi,
    Please try clearing your browser cache, when I visit your site the animation is working with a 5 second delay.

    Best regards,
    Mike

    Hi,
    Sorry I missed that you were going to 989px, I have adjusted the css and also adjusted for the logo, please try this css:

    @media only screen and (max-width: 989px) {
      .responsive #top #wrap_all #header {
        position: fixed !important;
      }
    .responsive #top .logo {
        position: relative !important;
        display: table !important;
        width: 80% !important;
    }
    }

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

    Best regards,
    Mike

    in reply to: Special characters – something silly #1228852

    Hi,
    Thank you for your investigation and for sharing your findings, 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

    in reply to: Api mailchimp connection #1228850

    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

    in reply to: Countdown translation #1228848

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

    @mituweb
    please note the last post was for user @gbd, we will be happy to assist you but we need sftp access. Can your webhost assist with that? Or if you have access you can download the files and follow the steps above.

    Best regards,
    Mike

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

    Hi,
    Glad that we could help, I followed the loading of the files in the “Network” tab in the dev tools of Chrome.
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Hide Header Secondary Menu on sticky header mobile #1228592

    Hi,
    Please post your css to make the mobile header sticky and hide the top bar on scroll, when I check your page on mobile it seems disabled, did you remove it? If not please do remove it so we can test without conflict.
    I see that your header is not getting the header-scrolled class so the css above will not be triggered. Since you are not getting this class, due to the combination of settings for your header, we can add a similar class with jQuery triggered by the “scrolled” state and adjust your css to work with it.

    Best regards,
    Mike

    Hi,
    Sorry, I think I misunderstood, so you want to hide a specific category from the product meta, so I disabled the function above and added this one:

    add_filter('get_the_terms', 'hide_categories_terms', 10, 3);
    function hide_categories_terms($terms, $post_id, $taxonomy){
    	$exclude = array(361);
    
        if (!is_admin()) {
            foreach($terms as $key => $term){
                if(in_array($term->term_id, $exclude)) unset($terms[$key]);
            }
        }
        return $terms;
    }

    Now it is hiding the “Petits Prix” from the category meta, please check.

    Best regards,
    Mike

    in reply to: Lines in accordion #1228291

    Hi,
    Thank you for sharing your solution, I had thought you wanted to keep the active toggle title borders when the toggles were open, but glad to see you have it sorted out. Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

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

    Hi,
    Sorry, the code above was the solution for the same request in another thread but with further testing, I find it offsets the items but not based on the page it is on. So we will have to keep looking.

    Best regards,
    Mike

    in reply to: using own icons in icon list #1228283

    Hi,
    Thank you for the feedback, for mobile we can reduce the font size and brake long words.
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (max-width: 424px) { 
    h4.av_iconlist_title {
    	font-size: 13px !important;
    	overflow-wrap: break-word;
    }
    }
    @media only screen and (min-width: 425px) and (max-width: 767px) { 
    h4.av_iconlist_title {
    	font-size: 20px !important;
    	overflow-wrap: break-word;
    }
    }

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

    Best regards,
    Mike

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

    Hi,
    Thank you for sharing your solution, 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

    Hey kopf-und-stift,
    Sorry for the late reply, I have used Poedit to edit the de_DE.po & de_DE.mo files for this phrase and linked them below in the Private Content area.
    Please extract and upload the two files via FTP or your web host file manager to \wp-content\themes\enfold\lang\ , please save a fallback copy of your current files.
    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Unable to add text above calender #1228139

    Hey Tarakbc,
    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:

    @media only screen and (max-width: 767px) { 
    #top.single-calendar article.calendar.type-calendar:before {
    	content: "When the calendar is viewed on a mobile device please view horizontally";
      color: #777 !important;
      font-size: 1em;
    }
    }

    Feel free to adjust the statement in the code, and then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

    Hey Kshipra,
    Sorry for the late reply, I recommend using the plugin Simple Image Sizes and using it’s options at WordPress > Dashboard > Settings > Media > Media Settings to choose which thumbnails are created. The WordPress page for this plugin says it is old, but it still works good because has a basic function that has not changed in WordPress.
    After making your choices you will need to Regenerate Thumbnails and clear your browser cache.

    Best regards,
    Mike

    in reply to: Links to an attachment page from Image in a gallery #1228135

    Hi,
    Sorry for the late reply, I tested the plugin Gallery Custom Links and while it seems to work with our gallery element the plugin disables the lightbox on any image that it adds the link to, so this plugin is not going to be able to add the link to the lightbox image after it is opened. I tried taking a look at the plugin source code to see if I could modify it, but I was not successful.
    I also tested if the attachment page was being created when media is added to the media library, and it is. If you include an admin login we could investigate further.

    Best regards,
    Mike

    in reply to: Lines in accordion #1228119

    Hi,
    Sorry for the late reply and thanks to the link to the other thread. Unfortunately, there is not a way to apply css based on zoom level, but I was able to test this css on your page while using zoom in Chrome on Windows and it seems to solve this while keeping the active toggle border and the special heading border.
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #wrap_all .main_color div:not(.togglecontainer) section,
    #wrap_all .main_color div,
    #wrap_all .main_color p:not(.activeTitle),
    #wrap_all .main_color p.toggler:not(.activeTitle) {
        border-color: transparent !important;
    }
    #top #wrap_all .main_color .special-heading-inner-border {
        border-color: #545d62 !important;
    }

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

    Best regards,
    Mike

    in reply to: How to add icons in text #1228115

    Hey Alan,
    Sorry for the late reply, you can add the icon shortcodes to your text. You can open a “Classic Editor” post and use the “shortcode wand” to get the shortcode.
    shortcode-wand.png
    such as: [ av_font_icon icon='ue854' font='entypo-fontello' size='20px'][ /av_font_icon]
    Here is another example.

    Best regards,
    Mike

    in reply to: socket enfold polylang issue #1228110

    Hey jb84,
    Sorry for the late reply, the polylang plugin has a “string translation” option where you can set any text to be changed to anything in any language, not just a translation.
    2020-07-05_172759.png
    Have you tried this? If you have trouble setting this up, Please include an admin login in the Private Content area so we can assist.

    Best regards,
    Mike

    in reply to: Fatal Error #1228104

    Hi,
    Thank you, I have responded to your new post, let’s continue there.

    Best regards,
    Mike

    Hey coxjeffery,
    Thank you for the ftp access, I disabled your “Enfold” theme so we can login, but the login you post is not working please check.
    It looks like your WordPress version is “5.1.6”, if so please update to “5.4.2”, and then let us know and I will enable your theme and investigate further.

    Best regards,
    Mike

Viewing 30 posts - 16,501 through 16,530 (of 35,061 total)