• Resolved edqtwolfi

    (@edqtwolfi)


    Hi,

    I bought the plugin and followed “MDTF – WordPress Meta Data and Taxonomies Filter – easy entry – WordPress filtering” on Youtube.
    Above the slider header text and input fields (min and max) are missing.
    Looking at the HTML code this may be the reason:

    <h5 class=”data-filter-section-title mdf_range_slider_header” style=”margin-bottom: 4px; display: none;”>

    </h5>

    “…display: none;” hides the block with header text and input fields.
    It is not set in a css file but hard coded inside the text (by JavaScript?).

    How can I change that? I there an option in WordPress Backend (Settings, Widget…)?

    Thanks.
    Wolfgang Liehr

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • pavloborysenko

    (@pavloborysenko)

    Hello

    Try in file “plugins\meta-data-filter\js\front.js”

    Change function – https://c2n.me/3S9jIRG.png

    function mdf_check_empty_sections(){
        if(mdf_settings_data.hide_empty_title!=undefined && mdf_settings_data.hide_empty_title==1 ){
        jQuery('.data-filter-section-title').each(function(i,elem) {
            if(jQuery.trim(jQuery(elem).siblings().text())==""){
                if(!jQuery(elem).find(".mdf_range").length){
                jQuery(this).hide();
            }
    
            }
        });
        }
         
    }
    Thread Starter edqtwolfi

    (@edqtwolfi)

    Hi,

    it works. Thank you very much for this very fast answer!

    Regards
    Wolfgang

    Thread Starter edqtwolfi

    (@edqtwolfi)

    Topic closed ??

    pavloborysenko

    (@pavloborysenko)

    Hello

    Welcome;)

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Range Slider: header text and input fields not displayed’ is closed to new replies.