Notice: These forums are now retired and closed. For active support, please Submit a Ticket or visit our official WordPress.org community pages.
Kadence Theme | Kadence Blocks | Starter Templates | WooCommerce Email Designer | Ascend | Virtue | Pinnacle

Testimonials modification.

Home / Forums / Virtue Theme / Testimonials modification.

This topic is: Resolved
[Resolved]
Posted in: Virtue Theme
February 19, 2018 at 12:32 am

Hi Ben,

I think I did a big mistake, I needed 3rd type of user generated content, so I took testimonials to create “diaries”. Users started adding their diaries and now I see some problems, I can’t avoid, because the feature is already used:
-There is no “enable/disable comments” on them, and for some reason comments show up only on few of the user’s diaries
-There is no “author” in the wp-admin
-I think I need to save %author%-%date% as the title

I read about this:

function my_post_type_services() {
register_post_type( 'services',
array(
'label' => __('Services'),
'public' => true,
'show_ui' => true,
'show_in_nav_menus' => false,
'menu_position' => 5,
'rewrite' => array(
'slug' => 'services-view',
'with_front' => FALSE,
),
'supports' => array(
'title',
'thumbnail',
'comments',
'author'
'editor')
)
);

Can I use something like that in child theme?

  • The forum ‘Virtue Theme’ is closed to new topics and replies.