If you’re facing issues enabling comments for Tasty WP Recipe Cards in the Hello theme by Elementor, follow these steps to troubleshoot and resolve the problem.
Step 1: Check Discussion Settings
- Navigate to your WordPress dashboard.
- Go to “Settings” and look for the “Discussion” menu item. If it’s not there, follow these additional steps.
Step 2: Add Discussion Menu Item
If the “Discussion” menu item is missing, add it using the following code snippet:
function add_discussion_menu_item() {
add_menu_page(
'Discussion',
'Discussion',
'manage_options',
'edit-comments.php',
'',
'dashicons-admin-comments',
25
);
}
add_action('admin_menu', 'add_discussion_menu_item');
Insert this code into your theme’s functions.php file.
Step 3: Resolve “Comments are Disabled” Error
If you encounter an error stating “comments are disabled” when accessing the “Discussion” menu, it may be due to theme or plugin conflicts. Disable other plugins temporarily and switch to a default WordPress theme to identify the culprit.
Step 4: Verify functions.php
Ensure your theme’s functions.php file doesn’t contain code disabling comments. Check for lines like:
remove_post_type_support('post', 'comments');
remove_post_type_support('page', 'comments');
Remove such lines if found.
Step 5: Tasty WP Recipe Cards Settings
Check Tasty WP Recipe Cards settings. Some plugins have their own comment settings. Ensure comments are enabled within the plugin settings.
Step 6: Verify Screen Options
While editing a post, click “Screen Options” at the top and ensure “Discussion” is checked.
Following these steps should help you enable comments for Tasty WP Recipe Cards. If the issue persists, consider reaching out to the plugin’s support for further assistance.