Hi there,
Your plugin is great but seems to have an issue.
It disables the rollovers in the admin menu panel, as well as disabling the admin panels ‘Quick Edit’ feature for pages and posts.
I have updated your plugin but still doesnt fix the issue.
If you could suggest work around. Thanks
Hello
PHP show this error
Missing argument 3 for EASY_TAX_IMAGES::quick_edit_custom_box() in /wp-content/plugins/easy-taxonomy-images/easy-taxonomy-images.php on line 293
how to fix this error ?
Easy Taxonomy Featured and Cover Images Version 1.0.1
Wordpress 4.6.1
Can’t change the image once it is set.
Default image does not show up.
The script is not calling the default images configured in the settings. When inspecting the element where an image should be – the src=”” tag is completely missing.
I’m utilizing this primarily on a taxonomy via a custom post, but the issue is also there for the main posts within WP as well.
Note: Implementation does work on the template end of things for the featured images set to each taxonomy, but the default image (like within Dashboard) is not loading at all.
For now I’ve gone back and taken the ‘placeholder’ image that I was using and set it to all taxonomies/categories – but for me that’s currently defeating the purpose of this script…
Any ideas on how to fix or are there updates coming for this script that addresses these issues?
Thanks in advance.
]]>in the quick_edit_custom_box i have got this error :
Warning: Missing argument 3 for EASY_TAX_IMAGES::quick_edit_custom_box() in /xxxx/wp-content/plugins/easy-taxonomy-images/easy-taxonomy-images.php on line 293
plugin version 1.0.1
]]>Hi,
Your plugin gave me Headache today, for some reason there was a few images I couldn’t select as featured image.
I could select them from the media library, but when I hit select, the image url wasn’t stored on the category.
I even tried to upload new version of the images, but it did not help.
I figured out that the image size was 126×128, and my thumbnail size was 150×150, so I changed my thumbnail size to 100×100 and then everything worked. (I am testing your plugin on my test site)
So all was good….
No, going through my categories, I suddenly had the problem again – Again I couldn’t select from the edit screen:
https://wpfrontier.com/wp-content/uploads/2015/03/icon-info.png
But I could paste the url into the placeholder and update the category and everything worked.
Later I discovered that I could add the above image using “Quick Edit”, but not if I used “Edit” – Strange….
It only seems to happen with small files like these:
https://wpfrontier.com/wp-content/uploads/2015/03/icon-info.png
https://wpfrontier.com/wp-content/uploads/2015/07/icon-tools2.png
Hello,
When I put the taxonomy_featured_image function in my template file I get for example :
<img src=”https://www.site.com/wp-content/uploads/2015/12/image.jpg”>
But I need only the link https://www.site.com/wp-content/uploads/2015/12/image.jpg
Please tell me how can I get the image URL instead of the img tag ?
Thank you.
]]>For some reason my taxonomy featured image is being displayed at medium size (that is, the actual medium image is being pulled in). I suspect a conflict and will have to do some troubleshooting (the theme is a hot mess with at least a dozen JavaScript files, and there are a lot of other plugins), but wondered whether there are any arguments you can use for taxonomy_featured_image or taxonomy_cover_image to specify the image size.
Thanks!
Sallie
When this plugin is active, I get the following error on my front pages:
“Uncaught TypeError: Cannot read property ‘length’ of undefined” in jquery.js?ver=1.11.3
No idea what’s causing it, but it disappears as soon as I deactivate this plugin.
]]>Hello Mate,
After searching madly for this functionality, I have reached to your plugin. Now I can add featured images to tags. 50% of my job is over. Now I want to show the featured image of tags on the blog page where the tags are showing.
The code for showing the tags in the Blog page is as follows:
<div class="custom-category">
<?php
$post_tags_show_text = __('Tags', 'directory');
$terms = wp_get_post_terms ( $cs_post_id, 'directory-tag', array('orderby' => 'date', 'order' => 'DESC') );
if ( isset($terms) ){ ?>
<div class="custom-tags"> <!-- cs Tages Start -->
<h5><?php echo esc_attr($post_tags_show_text);?></h5>
<ul>
<?php
foreach($terms as $term) {
echo "<li><a href='".get_term_link($term)."' title='".$term->name."'>".$term->name."</a></li>";
}
?>
</ul>
</div>
<?php } ?>
</div>
Please tell me how to edit this code to add the function so that the featured image of the tag will show there on the Blog page?
]]>