• Hi, I would like to change the /download/ meta title. Currently when you go at domain.com/downloads/ at seo part it says ‘Archive’ which I would like to remove and put better title. Here is a screeenshot for what I am talking about: https://ibb.co/KNb3mRm

    best,
    Fidan

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi @fselmani

    Thanks for the screenshot.

    This title is dependent on your WordPress theme. You can easily manage from your theme or via little code snippet.

    OR you can try this plugin also
    https://www.ads-software.com/plugins/custom-archive-titles/

    Thread Starter fselmani

    (@fselmani)

    Hi, what is the code and in which php file I should inclide?

    Thank you for your help.

    Hi @fselmani

    I have not provided the code. I am just saying that if you are a developer then you can achieve this with some custom code.

    If you are not a developer then you can use the below plugin. It helps you.
    https://www.ads-software.com/plugins/custom-archive-titles/

    Thread Starter fselmani

    (@fselmani)

    Hi again and thanks for reply. This plugin is not allow me to change /download/ page. I also don’t have this ‘download’ page in ‘Pages’ at wordpress admin so any other method to change title of /download/ as I send a screenshot in 1st message?

    Hi @fselmani

    Thanks for your response.

    Easy Digital Downloads is created with custom post type named ‘Download’. So the /download/ is not a page which you have created.

    It is not a simple page. It is called as archive page. So /download/ will show you all the EDD Products (Post) in that.

    Please try below code which helps you to change the title of ‘Download’ post type.

    Please add this code to your theme / child theme functions.php file.

    function __wp_title( $title, $sep, $seplocation ) {
    
    	if ( is_post_type_archive('download') ) {
    		$title = 'Your Title Goes Here';
    	}
    
    	return $title;
    }
    add_filter( 'wp_title', '__wp_title', 10, 3 );
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Change /download/ title’ is closed to new replies.