- This topic has 13 replies, 2 voices, and was last updated 3 years, 1 month ago by
David.
-
AuthorPosts
-
November 22, 2018 at 5:55 pm #735209
yig
Hi there,
I have many pages on my website with tags that I created in my previous theme. Is there a way to enable tags for pages on GeneratePress? The previous pages with tags brought from the older themes work fine (for tag related filters) but I cannot add new pages with tags and this creates an inconvenience.
If there is not, I have read there are something called CPTs… But I have no idea how to create them and if so, would it be an easy thing to bulk move all these pages into CPTs?
I would be glad if someone could help this beginner ๐
Cheers
November 22, 2018 at 6:40 pm #735246Tom
Lead DeveloperLead DeveloperHi there,
Pages don’t have tags in WP by default, but a plugin like this might help: https://wordpress.org/plugins/tag-pages/
Let me know ๐
November 22, 2018 at 6:47 pm #735253yig
Hi Tom,
It did help perfectly ๐
Thanks so much
November 22, 2018 at 6:52 pm #735254Tom
Lead DeveloperLead DeveloperYou’re very welcome ๐
September 3, 2019 at 12:21 pm #1000299spirospan
Hi Tom! Im using the plugin: https://wordpress.org/plugins/tag-pages/
I can insert tags for pages, but they don’t show up on the frontend of each page. As i was said… “Make sure your theme you are using supports displaying tags on Pages”.
So the big question is: Can i show tags on pages with GeneratePress Premium and how?
Thanks in advance
SpirosSeptember 3, 2019 at 4:46 pm #1000452Tom
Lead DeveloperLead DeveloperHi there,
Give this a shot:
add_filter( 'generate_footer_meta_post_types', function( $types ) { $types[] = 'page'; return $types; } );September 8, 2019 at 9:50 am #1004161spirospan
Hi.
No it did not work.
So i use the “Post Type Switcher” plugin and changed my pages into posts and tags are showing. Case closed.
Regards
September 8, 2019 at 3:18 pm #1004308Tom
Lead DeveloperLead DeveloperGlad you found a solution ๐
February 18, 2023 at 5:22 am #2537831Eloy
Hello. I have the same problem. I have installed the “tags to pages” plugin but those tags are not showing on the pages. In this case I can’t change the pages to posts.
Thank you!!! ๐ ๐ ๐
Example page with 3 tags: https://whynotpilates.net/sample-page/
February 18, 2023 at 7:02 am #2537910David
StaffCustomer SupportHi there,
in Customizer > Layout > Blog, do you have any of the post meta items such as Categories checked to display on ?
February 18, 2023 at 8:45 am #2538114Eloy
February 19, 2023 at 5:35 am #2538648David
StaffCustomer SupportTry adding this snippet as well as the other one:
add_action('generate_after_content',function(){ if ( is_singular('page')) { generate_footer_meta(); } });February 20, 2023 at 1:14 am #2539445Eloy
Yes!!!
Itยดs working -> https://whynotpilates.net/sample-page/
Thank you very much for your help ๐ ๐ ๐
February 20, 2023 at 3:31 am #2539605David
StaffCustomer SupportGlad to be of help!
-
AuthorPosts
- You must be logged in to reply to this topic.