• Resolved dyba03

    (@dyba03)


    Hi, how can I remove download packages from the default wordpress search results?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Nayeem Hyder

    (@nriddhi)

    Hi,

    Need some code edit in download-manger > download-manger.php, in line number 207,
    'exclude_from_search' => (bool)get_option('__wpdm_exclude_from_search', false) replace false to true. it will help you.

    Thanks.

    Plugin Support Nayeem Hyder

    (@nriddhi)

    and you can also use this code in your theme functions.php for a permanent solution.

    add_action( 'init', 'wpdm_custom_type', 99 );
    function wpdm_custom_type() {
        global $wp_post_types;
        if ( post_type_exists( 'wpdmpro' ) ) {
            $wp_post_types['wpdmpro']->exclude_from_search = true;
        }
    }

    Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove Downloads from WordPress search results’ is closed to new replies.