• Resolved ejaganece

    (@ejaganece)


    Hi, Can you please tell how can i hide RSS and Vertical line in Filter Results Page and also need to add some text before “Search completed. Found 0 matching records.” like ” Expired Search completed. Found 0 matching records.”.

    Thanks,
    Jagan

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

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Rita Kikani

    (@kikanirita)

    Hi @ejaganece,

    You can hide “RSS” link by applying below filter in your theme functions file.

    apply_filters('event_manager_event_filters_showing_events_links',$links, $args); 

    To update or remove search message, you need to apply below filter in your theme functions file.

    apply_filters('event_manager_get_listings_custom_filter_text', $message, $search_values);

    If you have any further query then please let us know here, we will help you to resolve.

    Thank you.

    Thread Starter ejaganece

    (@ejaganece)

    Thanks for the reply, it’s not working. Can you please refer my image https://www.dropbox.com/scl/fi/wfe00q0miqo61cb2gj2e6/VCARE.jpg?rlkey=d3e3dxi5fcuoh5ubytwtsoib7&dl=0. I need to hide hide RSS and Vertical line in Events Search Results Page and also need to know how to add extra text like in Before “Search completed. Found 0 matching records.”.

    Thanks,
    Jagan

    Plugin Author Rita Kikani

    (@kikanirita)

    Hi @ejaganece,

    I am still not getting what exactly you want to change and remove from the event page. I had seen your image but please mention which part you want to remove, which part you want to show, where you want to add text in written in your image, so I can assist you.

    Thank you.

    Thread Starter ejaganece

    (@ejaganece)

    Thanks for the reply, this is current version https://www.dropbox.com/scl/fi/z8xum1l66svp2fswwoatr/current-version.jpg?rlkey=aars1otsb7xtgxpj6n2fhub41&dl=0 in this page results displaying as “Plural: Search completed. Found 0 matching records.” and
    Reset | RSS. But i need to remove “Plural: ” text and “Reset | ” like this https://www.dropbox.com/scl/fi/uysr5moskl8um2366uezm/needed-version.jpg?rlkey=aozme5pigc7om7ek8ahyxs5ui&dl=0.

    Thanks,
    Jagan

    Plugin Author Rita Kikani

    (@kikanirita)

    Hi @ejaganece,

    You need to write below code in your theme functions.php file.

    add_filter('event_manager_event_filters_showing_events_links', 'wpem_event_filters_showing_events_links', 10, 2);
    function wpem_event_filters_showing_events_links($links, $args){
    	unset($links['rss_link']);
    	return $links;
    }
    
    add_filter('event_manager_get_listings_custom_filter_text', 'wpem_get_listings_custom_filter_text', 10, 2);
    function wpem_get_listings_custom_filter_text( $message, $search_values){
    	$message = "YOUR MESSAGE";
    	return $message;
    }

    I hope this code will help you to resolve your issue.

    Thank you.

    Thread Starter ejaganece

    (@ejaganece)

    Thanks a lot, first one hiding “Reset | ” working fine but 2nd one it’s not working. No need custom image currently result’s showing like “Plural: Search completed. Found 0 matching records.” but i need to display like just “Search completed. Found 0 matching records.” without “Plural:”.

    Thanks,
    Jagan

    Plugin Author Rita Kikani

    (@kikanirita)

    Hi @ejaganece,

    I would like to inform you that above both the functions I had applied in my setup and working fine, in addition our plugin, there is no word “Plural:”, so could you please check is there any customized done from your end which include word “Plural:”.

    Thank you.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Need to Hide RSS and Vertical line in Results Page’ is closed to new replies.