Wordpress WyPiekacz plugin is not working in adding Tags. i set that tag will be min 3 and max 5. but When i try to write a post there with 4 tag added it is not posting, showing: “Too few tags (minimum is 3, your post has 0).”
]]>Hello I am now using ‘WyPiekacz’ plugin . The plugin work nicely . But I have not like the WyPiekacz Status’ in Dashboard All posts row. How to remove this ?
]]>Please check and solve the problem as soon as possible.
]]>WyPiekacz in not compatible with latest version of WordPress 4.2.2. Plz check it.
]]>Apparently this plugin stopped working entirely.
Does anyone know a replacement for it or knows if the author is willing to add support for 4.2?
]]>Whether I choose minimum/maximum tag count, then enter any number of tags in the post, I get error message: ‘There must be at least X tags’.
]]>How can localize in Italian language?
]]>I installed WyPiekacz plugin in my blog. Its a great plugin . First some days the red warning box appeared when an author don’t follow all the rules for publish a post but now the red warning box not appeare . It just save the post as draft . No warning ! Please tell me the solution .
]]>Hi,
First congrats for this plugins which rocks !
Is there a simple way of adding a new rule like :
“Don’t publish a post unless it contains 1 image minimum” ?
Thank you
Can you please help me to hide this meta box?
]]>In case any one is interested, here’s a way to require featured images by category using Wypiekacz
function check_my_custom_post_thumbnail( $check, $post_id, $post_data ) {
if ( $post_id <= 0 ) {
return false;
}
$categories = array(); //categories set by editor
if (is_array($post_data)) {
$categories = $post_data['post_category'];
} elseif (is_object($post_data)) {
$categories = $post_data->post_category;
}
$categories_requiring_image = array(4); //array containing IDs of the categories for which you want to require a featured image
if (is_array($categories) && count(array_intersect($categories_requiring_image, array_values($categories)))) {
$image = get_the_image( array(
'post_id' => $post_id,
'attachment' => false,
'echo' => false,
) );
return !empty($image);
} else {
return true;
}
}
add_filter( 'wypiekacz_check_thumbnail', 'check_my_custom_post_thumbnail', 10, 3);
]]>
Hello,
i’ve installed the last version of your plugin,
i do have a problem is that i completed the form for “Default post template” but they is nothing visible in post form.
Hey I love what this plugin does, however I’m putting together a site based on the pulsepress theme (based on p2) and the rules are not run when posts are made on the templates status update forms, I’m wondering what I need to do to have this plugin validate these posts as well?
I’d be happy to pm you site details for testing if that helps out at all
]]>I wanted to disable the check for “Maximum link count in post” in the Posts section, and it cannot be done. I raised the limit to a large number to get around it for now.
It would be great to have an on/off for this.
Thanks!
]]>Hello,
I discovered a slight problem regarding WyPiekacz plugin’s database clearing : the messages displayed by the plugin are stored in wp_postmeta table (with the key “WyPiekacz_msg”). But these messages seem never to be deleted from the database.
I executed DELETE FROM wp_postmeta WHERE 'meta_key' = 'WyPiekacz_msg';
on my websites databases and gained sometimes more than 60Mo.
Could anything been done about this ?
Thanks a lot !
]]>Again, I love the plugin… Here’s another feature request.
I require authors to enter 1-5 tags, select only one category and require the author add a featured image.
It would be nice if there were a note in each of the meta boxes telling authors what is expected of them.
As a workaround, I have edited core WordPress files to include notes.
Featured image, located in wp-admin/includes/post.php
Tags and categories, located in wp-admin/includes/meta-boxes.php
Love the plugin!
I have a feature suggestion for you… It would be great if there were a settings option to require a minimum size for the featured imaged attached to the post.
I have asked this question on Stack Exchange and gotten a response to hardcode the plugin to do this, but having a settings option for width and height would be awesome.
Here is the thread for your reference. Require min. dimensions for Featured Image? Dimensions on Media Library Tab
]]>Love this Plugin… ?? thanx! I don’t know if this is the correct place to ask, sone might be able to do this in a few minutes, I personally wouls take days of muddling thru code ??
(a) I have some Custom Taxonomies, I really would like to be able to limit Minimum and Maximum selected just like Categories/Tags but how?
(b) I have some Custom Fields, they are uploaded files, I would really like it to be able to checkbox like “Post thumbnail (Featured image) is required:” for these fields.
Thanks for anyones help,
Paul Hamon
Hi everyone and especially the WyPiekacz creator,
Great plugin, excellent job!
Well, I’m French, and thus I just created the french translation, so feel free to get in touch with me, via my contact form, to add it.
Best,
NDD
]]>Is there a way to define the minimum word count by each category instead of globally?
]]>I have an idea to add a rule so that user cannot publish a post without adding a post thumbnail image (Featured Image) Can Anyone tell me how could be done? Thanks in advance..
]]>