Theme Support Forum

Support Forum for Free and Premium Themes. Premium Theme Forums are Private! Please log in first to see the Premium forums

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

Title and Description

Home Forums Misc. General Forums Title and Description

  • #12823

    seanyoung

    subscriber

    Hello,

    how can i hide the title and description? http://www.slabhomewares.com

    #19105

    Towfiq I.

    administrator

    Its not one of my themes and I dont see any title and description.

    #74842

    Victor

    Hi there,

    How can I hide titles and tagline on http://www.victoragina.com?

    #74845

    Towfiq I.

    administrator

    Victor you are using “Point” theme which was not built by me. Please ask the developers of the theme.

    Thanks

    #74851

    maldonado

    subscriber

    I’m having issue with the site title appearing twice: http://soulmassive.com

    Thanks,
    Matt

    #74854

    Towfiq I.

    administrator

    just checked your site. I am not seeing this issue. can you send me a screenshot of the issue?

    #74857

    maldonado

    subscriber

    Screen Shot 2013-12-16 at 11.39.34 PM.png

    The site title ‘Soul Massive’ is showing twice.

    #74859

    maldonado

    subscriber

    The site title 'Soul Massive' is showing twice.

    #74861

    Towfiq I.

    administrator

    right. you mean in the title bar..

    open up header.php and replace this:

    <?php wp_title(); ?>

    with this:

    <?php wp_title( '|', true, 'right' ); ?>

    Then open up functions.php and add this to your functions.php:

    //theron Site title
    function theron_wp_title( $title, $sep ) {
    	global $paged, $page;
    
    	if ( is_feed() )
    		return $title;
    
    	// Add the site name.
    	$title .= get_bloginfo( 'name' );
    
    	// Add the site description for the home/front page.
    	$site_description = get_bloginfo( 'description', 'display' );
    	if ( $site_description && ( is_home() || is_front_page() ) )
    		$title = "$title $sep $site_description";
    
    	// Add a page number if necessary.
    	if ( $paged >= 2 || $page >= 2 )
    		$title = "$title $sep " . sprintf( __( 'Page %s', 'theron' ), max( $paged, $page ) );
    
    	return $title;
    }
    add_filter( 'wp_title', 'theron_wp_title', 10, 2 );

    before this:

    function thn_mobile_css() {

    #74863

    maldonado

    subscriber

    I cannot find this code in there:

    function thn_mobile_css() {

    #74865

    Towfiq I.

    administrator

    the try adding before:

    function thn_other_css() {

    #74867

    maldonado

    subscriber

    I’m getting an error now.

    #74869

    maldonado

    subscriber

    The site has disappeared:

    Parse error: syntax error, unexpected ‘=’, expecting ‘)’ in /home/content/p/r/o/promocrew/html/soulmassive/wp-content/themes/theron_pro/functions.php on line 45

    #74870

    maldonado

    subscriber

    It looks like I can’t access the site at all?

    #74871

    Towfiq I.

    administrator

    you made a little mistake pasting the code in functions.php.

    Can you login via ftp and open up functions.php and replace all the code with the code you find here:
    http://pastebin.com/raw.php?i=3MGFsQjz

    #74872

    maldonado

    subscriber

    Do you have any advice?

    #74873

    maldonado

    subscriber

    Fixed the functions.php

    I’ll give the Title a break for now, but do you have any other advice on how to fix the issue?

    #74874

    Towfiq I.

    administrator

    how did you fix it? did you replace the code with the code I posted in the pastebin link?
    if you did that, the issue should be solved.

    The double title issue appears when you install a SEO plugin and it tries to modify the site title.

    #75548

    Nick

    Hey, I’m trying to change the site title to an image, but it doesn’t seem to be accepting it when I copy the html in. I know the guy that managed the site before it was handed off to me had it in there at one point, but it has since been updated and changed many times. Any way I can replace the text with an image from my media library?

    thanks!

    #76051

    Towfiq I.

    administrator

    Nick., you can only do that in the PRO version of the theme.