Viewing 12 posts - 1 through 12 (of 12 total)
  • Question

    #53258
    @lahir

    Hi,

    Using BuddyPress Global Search, the search results for woocommerce products are now displayed with Author name, Date and Comments, any tips for hiding these when searching for products?

    Also is it possible to display products on search result page with more useful details (prices, thumbnail…etc)?

    Thanks

    Answers

    #53274

    Anonymous
    @

    Hi @lahir, You can hide Author name, Date and Comments from css…pls add this codes to your custom css

    div.table-cell.desktop {
    display: none !important;
    }
    Regards
    Pallavi

    #56755
    @lahir

    Hi @pallavi

    Thank you, this worked only for desktop, do you please have a fix also for mobile.

    Cheers!

    #56784

    Anonymous
    @

    Hi @lahir, Pls add this codes to your theme’s custom css option:

    
    .entry-meta.mobile {
        display: none !important;
    }
    div.mobile:not(.nojq) {
        display: none !important;
    }
    

    Regards

    #56802
    @lahir

    Thank you @pallavi that worked!

    #56805

    Anonymous
    @

    Glad 🙂

    #56808
    @lyndonhivemindnetwork-com

    Additionally is there a way to show extra fields in search results for site members?

    #56854

    Anonymous
    @

    Hi @lyndonhivemindnetwork-com, Through Buddypress Global Search you can include what you want to include in search result.

    Please see the attached screenshot.

    Regards

    #56856
    @lyndonhivemindnetwork-com

    Hi @Pallavi – thanks but that doesn’t help. I know of the plugin options. What I’m trying to do is include a custom profile taxonomy in what the plugin searches. How can one add DB fields to what’s searched?

    #56857
    @lyndonhivemindnetwork-com

    Also – how can one actually display additional fields in the results page?

    #56899
    @lahir

    Hi @pallavi

    Sorry but found out that adding the following code hides the whole login details on the right side menu on mobile!!!

    Please test it and let me know.

    Thanks

    #57119

    Anonymous
    @

    Hi @lahir, Please try this one..

    Remove last one..

    
    .entry-meta.mobile {
        display: none !important;
    }
    div.mobile:not(.nojq) {
        display: none !important;
    }
    

    _____________________________________

    Add this,

    
    .entry-meta.mobile {
        display: none !important;
    }
     .search-results .entry-meta .post-author {
        display: none;
        margin-bottom: 10px;
    }
    

    Regards

Viewing 12 posts - 1 through 12 (of 12 total)
  • The question ‘Search results’ is closed to new replies.