jablka
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: enabling Featured Image option for Custom post typesHi,
I’ve found the solution already 🙂in functions.php
added
add_post_type_support( 'post-type-name', 'thumbnail' );thanks to
https://developer.wordpress.org/reference/functions/add_post_type_support/
https://codex.wordpress.org/Function_Reference/add_post_type_supportthank you, this helped! I set the sub-domain for the third language
🙂
Forum: Fixing WordPress
In reply to: show empty categories (new thread)okay, I resolved it
the problem was, that the ‘hide_empty’ parameter occurs in
wp-includes/category-template.php twice, in different functions:function wp_dropdown_categories
and function wp_list_categoriesso be sure to change the appropriate one. (I changed both for sure now 😉
Forum: Fixing WordPress
In reply to: How to redirect domain to a subfolder using WEB.CONFIG ?oh, it’s working!
I applied the “Moving a Root install to its own directory” steps from the above mentioned link.
didn’t know it is so easy. [there’s no need to edit web.config]