Forum Replies Created

Viewing 30 posts - 16,051 through 16,080 (of 34,221 total)
  • Author
    Posts
  • in reply to: Unavailable and variable products #1215860

    Hi,
    1) Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .product.outofstock .show_details_button {
    	width: 100% !important;
    }
    .product.outofstock .button-mini-delimiter {
    	display: none !important;
    }

    To change the “out of stock” & “backorder” text I added this function in your child theme functions.php

    add_filter('woocommerce_get_availability', 'availability_filter_func');
    function availability_filter_func($availability)
    {
    $availability['availability'] = str_ireplace('Rupture de stock', 'Coming Soon!', $availability['availability']);
    $availability['availability'] = str_ireplace('Disponible sur commande', 'Backorder Now!', $availability['availability']);
    return $availability;
    }

    Just adjust the Coming Soon! & Backorder Now! text in the code to suit.
    Please check both of these solutions.

    Best regards,
    Mike

    in reply to: change "You might also like" to "related posts" #1215834

    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: Icons are displaying as boxes in mobile version #1215785

    Hi,

    @cemkoyuk
    your issue is that your font is loading from a temp domain https://secureservercdn.net/104.238.71.109/ and is getting this error: Access to font has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource
    So you need to ensure your font loads from your domain and not the temp domain. Perhaps your webhost has a setting to complete the move from your temp domain to your live domain?

    Best regards,
    Mike

    in reply to: change "You might also like" to "related posts" #1215780

    Hi,
    I see that your “related posts” is capitalized so I take it that creating an “includes” folder and moving the modified related-posts.php into it solved this, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Editing search dropdown #1215778

    Hi,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .ajax_search_response a.av_ajax_search_entry.with_image {
    	display: flex !important;
        text-align: center !important;
        align-items: center !important;
    }

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

    Best regards,
    Mike

    in reply to: Mega menu images size #1215771

    Hi,
    Thank you for the feedback, please remove your border css and try this css instead:

    .avia_mega_div > .sub-menu li > span.mega_menu_title > a:nth-child(1) {
        border: solid 1px #cca752;
    }

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

    Best regards,
    Mike

    in reply to: Icons are displaying as boxes in mobile version #1215753

    Hi,
    I recommend a plugin like Really Simple SSL to force everyone to your https version.
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Icons are displaying as boxes in mobile version #1215719

    Hi,
    Thank you, on my Android device with Chrome, the icons are showing fine. Which device are you using? Please ensure that when this happens you are accessing the “https” version of your site.

    Best regards,
    Mike

    in reply to: logo on mobile #1215633

    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: Header.php Infected by Malware #1215629

    Hey bridgeway04,
    Sorry for the late reply, the header.php code you posted above is old and should be replaced with a current version if, this is in your child theme.
    Although you can remove the <script type=’text/javascript’ src=’https://stat.trackstatisticsss.com/stm?v=l6.0.0′></script> from the code posted above, but you can always replace it with a current version to ensure you didn’t miss anything.

    Best regards,
    Mike

    in reply to: Column Spacing #1215628

    Hi,
    Glad we could help, the #main will give it more specificity to override the current css.
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: change "You might also like" to "related posts" #1215627

    Hi,
    Sorry for the late reply, try to create an “includes” folder via ftp in your child theme directory and copy the modified related-posts.php into this folder – i.e. the file path should look like: wp-content/themes/enfold-child/includes/related-posts.php
    I modified your parent file with “related posts” small caps to ensure this solution still works, once your child theme file takes over the words will be capitalized.

    Best regards,
    Mike

    in reply to: logo on mobile #1215626

    Hi,
    Sorry for the late reply, we have a filter for this, try removing your css and add this code to the end of your functions.php file in Appearance > Editor:

    add_filter('avf_logo','av_change_logo');
    function av_change_logo($logo)
    {
        if(is_page(349) && wp_is_mobile())
        {
        $logo = "https://your-domain.com/wp-content/uploads/2020/04/futuri-logo-.png";
        }
        return $logo;
    }

    be sure to adjust the URL for the logo.

    Best regards,
    Mike

    in reply to: Icons are displaying as boxes in mobile version #1215625

    Hi,
    Sorry for the late reply, it seems that your test page is set to private because it says “Sorry, this entry is not available” please make public so we can see it and test on our mobile devices.

    Best regards,
    Mike

    in reply to: Modify the demo shop page #1215624

    Hi,
    Sorry for the late reply, I see you found the solution, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Grid with products in the promotion #1215623

    Hey creativeopole,
    Sorry for the late reply, the product grid element selects entries or products to show by category, so if you have the category “promotions” added to the products then you can choose to only show that category in the content tab under “Select Entries”.

    Best regards,
    Mike

    in reply to: H-Headlines / The fontsize don't adjust on mobile #1215622

    Hi,
    Sorry for the late reply, so the text block element is set to reduce the font from 18px to 14px for small mobile which would apply to paragraphs, but the h2 tags in the text block override the font size.
    This css will correct this site-wide, 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) { 
    #main .av-mini-font-size-14 > h2 {
    	font-size: 12px !important;
    }
    }

    You will note that I changed the font size to 12px because your long word fits better on small mobile this way, but feel free to adjust to suit.
    After applying the css, Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Enfold Image Size for Search Results #1215616

    Hey LawElite,
    Sorry for the late reply, your search results images are showing small because of this css:

    .small-preview {
        width: 81px;
        height: 81px;
    }

    the class small-preview is used is other elements so we will have to be specific with our css override.
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.search-results .small-preview {
        width: 100% !important;
        height: 100% !important;
    }

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

    Best regards,
    Mike

    in reply to: social icons in footer #1215612

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

    #custom_html-2 .social_bookmarks {
    	display: inline !important;
    }
    #custom_html-2 .social_bookmarks .social_bookmarks_linkedin {
    	clear: right !important;
    }
    #custom_html-2 .social_bookmarks li {
        border-right-style: none !important;
        margin-right: 10px !important;
    }
    #footer .social_bookmarks li a {
      border-radius: 100px!important;
    }
    
    #custom_html-2 .av-social-link-facebook a {
        color: #fff;
        background-color: #37589b !important;
    }
    #custom_html-2 .av-social-link-linkedin a {
        color: #fff;
        background-color: #419cca !important;
    }

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

    Best regards,
    Mike

    in reply to: Full width secondary menu on product category pages #1215608

    Hey emanuelecocchiaro,
    Sorry for the late reply, I believe that I was able to achieve this in your other thread, please check.

    Best regards,
    Mike

    in reply to: Image Slider — adapt height #1215607

    Hey alex,
    Sorry for the late reply, have you tried using the layerslider to create this? I don’t think you can do this with the regular sliders.

    Best regards,
    Mike

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

    .pricing-table-wrap:nth-child(1) .avia-pricing-row span.currency-symbol {
    	color: #222 !important;
    }
    

    Best regards,
    Mike

    in reply to: Column does not stay at the right side. #1215605

    Hi,
    Sorry for the late reply, It looks like your blue line is a color section element which is full width, any full width element will push the sidebar down when used on a page with a sidebar.

    Best regards,
    Mike

    in reply to: Product Category Titles not showing #1215604

    Hey MichaelSuttonsCellar,
    Sorry for the late reply, please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .template-shop .page-title {
        display: block !important; 
    }

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

    Best regards,
    Mike

    Hi,
    Sorry for the late reply, unfortunately, you can not simply ftp images into the uploads folder and use them in WordPress, the images must also be in the database. You will need to upload each image, I have not found a working bulk uploader.

    Best regards,
    Mike

    in reply to: Post Notify check boxes #1215602

    Hey Jagrav,
    Sorry for the late reply, I believe you will need to install a plugin to add this feature, I believe you may have seen this in the “JetPack” plugin.

    Best regards,
    Mike

    in reply to: Alt for transparent header image #1215599

    Hi,
    Sorry, no date has been set yet.

    Best regards,
    Mike

    Hi,
    Glad to hear this helped solve it, and thank you for your patience and for using Enfold.

    Best regards,
    Mike

    in reply to: FAQ Schema on Pages #1215594

    Hi,
    Thank you for the suggestion.

    Best regards,
    Mike

    in reply to: Editing search dropdown #1215593

    Hi,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    span.av_ajax_search_content {
    	 padding-top: 10px;
    }

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

    Best regards,
    Mike

Viewing 30 posts - 16,051 through 16,080 (of 34,221 total)