Skip to content

Settings for Blog Titles

Hey, is it possible to change the meta titles of wordpress blogs etc. to for example the article title? The title right now is the very generic username. Oh and  description would be cool too.

Comments

  • SvenSven www.GSA-Online.de
    whats the form field name for this?
  • It's "blogname"
  • SvenSven www.GSA-Online.de

    ok so adding

    blogname=%article_title%

    in STEP1 should do the job. Let me know if it worked.

  • I replaced blogname=%login% with blogname=%article_title% @ [REGISTER_STEP1]

    will report back if this works as soon as I have some data
  • Did not work...
  • SvenSven www.GSA-Online.de

    because that will have also spaces in it which is not allowed i think.

    Try this...

    
    [url_part]
    type=extract
    input=%article_title%
    replace=" ;_"
    remove=!;";º;$;%;&;/;(;);=;?;`;¦;^;¦;:;,;.;:;-:_;';#;+;*;~;@;Ç;<;>;|;{;[;];};\;¦;¦
    upcase=0
    ;max length=10
    
    ...
    blogname=%url_part%
    
    you might have to uncomment the "max length" to limit the size of it.
  • edited July 2014
    I just took a look at the registration process. During the registration the blogname is the suburl (blogname.wordpress.com) but after the first registration step there is another "blogname" field that now refers to the meta title. The changes we have made will probably affect the first field which indeed becomes illegal if it contains whitespaces or special chars.

    Is there a way for me to take a look look at the actual registration script?
  • SvenSven www.GSA-Online.de
    turn debug mode on and see what is actually submitted/ replied.
  • But no way to change the script myself I guess?
  • SvenSven www.GSA-Online.de
    no, the debug mode is an option on advanced tab.
  • Alright, thanks for your help Sven.
Sign In or Register to comment.