I don't know, but you can simply tell your admins.By default is there any feature like that?
or any addons
I am admin actually. I just want to add spesific title and description to the category and forum page, not threats pages.I don't know, but you can simply tell your admins.
thank you I will tryDown a little further on that same page I reference above, there's an option to Display in Node List. If you turn that off, it won't show to the users, but will be in your system for Google to find, perhaps.
Sure. Let me know if Google sees it as I will eventually be adding key words for Google to find when people do searches.thank you I will try
Nope, it complelty removes in the seen.Sure. Let me know if Google sees it as I will eventually be adding key words for Google to find when people do searches.
Correct me if I'm wrong, but you're looking to hide the description on the page itself (where visitors will read it), but want it to still remain in the <head> meta tags? If so, you could just hide the on-page description with CSS
@youbu, I happen to be building a major SEO addon for Xenforo 2, which is aimed to take the place of other unmaintained solutions. It happens to draw inspiration from Yoast and similar plugins (I've used them for many years so a lot of experience there). If you're interested, let me know as beta release will only go out to 10-20 users. It has many functions similar to what you're looking for including custom meta title and description with live Google Snippet Preview for all Xenforo sections, even third-party addons:No for example, in category page or forum page i want to override <title></title> and
<meta name="description" content="There">
because, it automatically fill it with page name and descripton however i want to make them diffrent.
you may have used wordpress before, there is yoast plugin to do that,
I am looking for similiar function.
[data-template="category_view"] .p-description {
display: none;
}
[data-template="forum_view"] .p-description {
display: none;
}
<xf:h1>{$xf.options.boardTitle}</xf:h1>
<xf:title>Enter a custom meta title to display in the head</xf:title>
<xf:h1>{$xf.options.boardTitle}</xf:h1>
How did you get on with this seo add on?@youbu, I happen to be building a major SEO addon for Xenforo 2, which is aimed to take the place of other unmaintained solutions. It happens to draw inspiration from Yoast and similar plugins (I've used them for many years so a lot of experience there). If you're interested, let me know as beta release will only go out to 10-20 users. It has many functions similar to what you're looking for including custom meta title and description with live Google Snippet Preview for all Xenforo sections, even third-party addons:
View attachment 219713
As for your question, you can't set custom meta info for individual categories without an addon, but since you said you're not using descriptions for categories, you could set them as your meta descriptions and then simply hide the on-page version by adding this to extra.less:
Less:[data-template="category_view"] .p-description { display: none; }
And here for forum_view (thread list):
Less:[data-template="forum_view"] .p-description { display: none; }
As for the forum title, you can show your board title on the page as normal, but show a custom title in the head tags for Google:
Template: forum_list
Find:
Replace with:HTML:<xf:h1>{$xf.options.boardTitle}</xf:h1>
HTML:<xf:title>Enter a custom meta title to display in the head</xf:title> <xf:h1>{$xf.options.boardTitle}</xf:h1>
The board meta description set in Options does not appear on your forum. It's designed only to show in the head meta tags, so you can customize this for Google as needed.
Let me know if these work for you,
We use essential cookies to make this site work, and optional cookies to enhance your experience.