This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

display CPT next to post title

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #28698
    dklong57dklong57
    Participant

    Hello

    Can you advise the if there’s any Advanced Title Field so i can display CPT name next to the Title?

    For example:

    Post – ABC
    Book – ABC

    #28710
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi,

    This knowledge base will help. There is no option, but a small custom code snippet.

    #28723
    dklong57dklong57
    Participant

    You cannot access this content.

    #28728
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Sorry, there was an error in that code, please use this one:

    add_filter( 'asp_results', 'asp_show_the_post_type', 10, 1 );
    function asp_show_the_post_type( $results ) {
      foreach ($results as $k=>&$r) {
    		if ( isset($r->post_type) ) {
    			// Modify the post title
    			$r->title = get_post_type( $r->id ) . ' - ' . $r->title;
    		}
      }
    
      return $results;
    }
    #28731
    dklong57dklong57
    Participant

    You cannot access this content.

    #28732
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You are welcome.

    This documentation should help!

    #28851
    dklong57dklong57
    Participant

    You cannot access this content.

    #28871
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi,

    Some product attributes might be custom fields, other can be taxonomy terms. Enabling the search in taxonomy terms feature will help then.

    #28891
    dklong57dklong57
    Participant

    You cannot access this content.

    #28904
    Ernest MarcinkoErnest Marcinko
    Keymaster

    I see a few single character words in the terms, and I think changing this option may help: https://i.imgur.com/aTBmNXK.png

    If no change, can you please add temporary back-end and FTP access, so I can check the issue? Thank you!

    #29044
    dklong57dklong57
    Participant

    You cannot access this content.

    #29063
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

Viewing 12 posts - 1 through 12 (of 12 total)
  • You must be logged in to reply to this topic.