Listing Titles

This topic contains 4 replies, has 3 voices, and was last updated by  laurence anthony 9 years, 5 months ago.

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket
  • Author
    Posts
  • #24648

    laurence anthony
    Expired Member
    Post count: 293

    Hi,
    Should Listing Titles be displayed above Galleries on Detail pages?
    not seeing an option in settings and they’re not being displayed.

    example listing…
    http://shoplocalraleigh.org/businesses/raleigh-1/other/pioneer-exteriors/

    thanks,
    larry

    #24658

    Guust
    Moderator
    Post count: 29970

    Mmm, your entry title is gone from your template?
    Can you post your admin details? Have you customised the template?

    #24711

    Simone
    Expired Member
    Post count: 3515

    That depends on your theme, Enfold put the title in the Grey bar (it is there).
    If you want a bigger title, you can add this function in your child theme’s functions.php and it will display the title below the gallery (in H1)

    
    
    add_action( 'geodir_details_main_content', 'my_show_author_mod', 45 );
    function my_show_author_mod() {
    global $post; 
    global $wp_query;
    
    $postid = $wp_query->post->ID;
    
    	
    	$customtitle= geodir_get_post_meta($postid,'post_title',true); //title
    	
    	
    	
    		echo '<h1>'.$customtitle.'</h1>';
    	
    }
    
    
    #24796

    Guust
    Moderator
    Post count: 29970

    Hi, of course, the post title is standard WP, so it is theme dependent.
    You learn something every day. Thanks, Simone.

    #24806

    laurence anthony
    Expired Member
    Post count: 293

    COOL THANKS

Viewing 5 posts - 1 through 5 (of 5 total)

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket