Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #217109

    http://staging.crosbydirt.com/

    I am designing this site for a client, and on most of the pages I’ve been displaying the in-page header, showing the page title and the breadcrumbs (although the text renders the same color as the background and, thus, doesn’t appear, but the client is ok with this)

    However, we’re using a real estate plugin to build up their inventory of properties for display, but there doesn’t seem to be an option for me to add this header to the individual property pages. (e.g. http://staging.crosbydirt.com/listings/pad-ready-office-sites/) This is something the client wants to have across the board on the site, so can you offer any guidance in getting those headers to appear everywhere? A default “On” setting would be ideal, as the client is going to take over this one once we finish the build.

    I don’t know if this is a theme setting or a plugin setting, so if I need to contact the plugin authors, I can.

    #217324

    Hey dkiessling!

    What is the plugin that you’re using? You need to insert the avia_title function on the custom post type property template.

    
    	$title  = __('Blog - Latest News', 'avia_framework'); //default blog title
    	$t_link = home_url('/');
    	$t_sub = "";
    
    	if(avia_get_option('frontpage') && $new = avia_get_option('blogpage'))
    	{
    		$title 	= get_the_title($new); //if the blog is attached to a page use this title
    		$t_link = get_permalink($new);
    		$t_sub =  avia_post_meta($new, 'subtitle');
    	}
    
    	if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title(array('heading'=>'strong', 'title' => $title, 'link' => $t_link, 'subtitle' => $t_sub));

    Please contact the plugin author.

    Regards,
    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Page Headers’ is closed to new replies.