Hey there. If I add your plugin, then set a featured image for a category, I need to be able to display that category image on the Category Archive template in Gutenberg. How can I achieve this?
]]>Hi team,
is it possible to dynamically set the tag image to elementor container background?
]]>Is there a way to pull the category image into a Divi theme page template with the taxonomy or something?
]]>Hi,
I’ve found a little interchange-ERROR in your Plugin:
If I activate category-pictures for CPT-Taxonomy -> Nothing happens at CPT-Taxonomy, but in CPT-slugs are category-pictures available!
On the other side:
If I activate category-pictures for CPT-slug -> Nothing happens at CPT-slug, but in CPT-taxonomy are category-pictures available!
Please check it and give feedback.
thx in advanced.
best greetings
We’re interested showing attribute terms images in the product image gallery depending on which attributes are applied to a product. Is there a way we can go about doing this using a code snippet?
]]>Wordfence security has flagged this plugin as ‘abandoned’. Can the author please update to the latest version of WordPress, or if it has been abandoned, please let us know. Thank you.
]]>This plugin is not being updated. Will there be a response from the plugin author if a security issue arises? If not, then users need to delete this plugin with urgency.
]]>Hello, may I know that this plugin most up-to-date support to which version of wordpress?
]]>I am considering using this plugin for a project, but it has not been updated for a couple of years. Is there a plan to continue to update it?
Thanks for any update you have.
]]>I want to hide the categories with zero posts.
and also i want to hide specific category with its id.
How can i do this?
Here is my code
//—————————————————–
// Display all categories
//—————————————————–
function mn_display_all_cats()
{
global $post;
$disable_cat_list = get_theme_mod(‘disable_categories_list’);
if ($disable_cat_list == 0) { ?>
<div class=”clearfix”></div>
<div id=”allcategories” class=”display-categories”>
<p class=”text-uppercase font-weight-light mb-0″>
<?php _e(‘Categories’, ‘mundana’); ?>
</p>
<div class=”w-100 d-block swiper-container circle”>
<!– swiper wrapper –>
<div class=”d-flex _gtodKlsd swiper-wrapper”>
<!– circle html –>
<?php
$display_categories = get_categories(array(
‘orderby’ => ‘name’,
‘order’ => ‘ASC’
));
foreach ($display_categories as $category) { ?>
<div class=”pt-3 d-flex _Koqas swiper-slide”>
<div class=”h-100 w-100″>
<div class=”position-relative d-inline-block postmgs loading”>
<div class=”position-relative”>
<?php if (function_exists(‘z_taxonomy_image_url’)) {
if (z_taxonomy_image_url($category->term_id)) { ?>
term_id)); ?>”>
term_id); ?>” class=”_OsdKkas b-g” width=”64″ height=”64″/>
<?php
}
} ?>
</div>
<?php
$category_link = sprintf(
‘%3$s‘,
esc_url(get_category_link($category->term_id)),
esc_attr(sprintf(__(‘View all posts in %s’, ‘mundana’), $category->name)),
esc_html($category->name)
);
echo ‘<p class=”_cabnvibcd mt-2 mb-0 posttxt”><span class=”_aftnrnu mt-2″>’ . sprintf(esc_html__(‘%s’, ‘mundana’), $category_link) . ‘</span></p> ‘; ?>
</div>
</div>
</div>
<?php
} ?>
</div>
<div id=”prevb2″ class=”swiper-button-prev”></div>
<div id=”nextb2″ class=”swiper-button-next”></div>
<!– swiper wrapper –>
</div>
</div>
<?php
}
}
Good evening,
I updated my version of WP to 6.0, first I deactivated the plugins and then reactivated one by one and updated those too, the site is reachable and works correctly but when I try to access some pages of the site I get the following error message :
Warning: Creating default object from empty value in /home/vc4y0518/public_html/wp-content/themes/ati/functions.php on line 315
Specifically this is what is present in line 315:
function close_comments( $posts ) {
if ( !is_single() ) { return $posts; }
if ( time() - strtotime( $posts[0]->post_date_gmt ) > ( 30 * 24 * 60 * 60 ) ) {
$posts[0]->comment_status = 'closed';
$posts[0]->ping_status = 'closed';
}
return $posts;
Can you help me?
Thank you
Good morning,
I need to update my WordPress core to the latest version 6.0, is your Categories Image Plugin compatible with the latest version?
Thanks for the reply
]]>how to show default image if category image does not exist. I want to show a default image if the category image does not set from the admin dashboard. How can I do this?
]]>Same problem as here:
https://www.ads-software.com/support/topic/only-serving-original-image-size/
It will only show full size, even though the other sizes are available and can be addressed in my template. Just not with this Plug-In.
]]>Hello,
Is this plugin compatible with php 8 and wp core version 5.8.2 ?
Thanks
]]>You should re-think the way you save your plugin’s data. As of right now, it saves term image link into the options table, which is no good. A site may have hundreds of term images, which will bloat the options table. Every time any script needs to get an option, which is all the time, the server will have to go through all the data from your plugin. It may slow down a site considerably. To save additional data from a term, there’s a table called termmeta, I think a link to term image belongs there.
]]>I have a CPT “classes” with a taxonomy “series”. I am trying to use your plugin (thanks for it!) to only show classes with a series of “My New Series”. I have tried you examples and can’t seem to properly code the certain taxonomy.
This, displays nothing:
<ul>
<?php foreach (get_the_terms(('series'), 'My New Series') as $cat) : ?>
<li>
<img class="img-responsive" src="<?php echo z_taxonomy_image_url($cat->term_id); ?>" />
<a class="fusion-no-lightbox"
href="<?php echo get_term_link($cat->slug, 'series'); ?>"><?php echo $cat->name; ?></a>
</li>
<?php endforeach; ?>
</ul>
This, displays all classes (posts) with any series (tax):
<ul>
<?php foreach (get_the_terms('series') as $cat) : ?>
<li>
<img class="img-responsive" src="<?php echo z_taxonomy_image_url($cat->term_id); ?>" />
<a class="fusion-no-lightbox"
href="<?php echo get_term_link($cat->slug, 'series'); ?>"><?php echo $cat->name; ?></a>
</li>
<?php endforeach; ?>
</ul>
How do i loop through posts only that have taxonomy “My New Series”?
Thanks,
Ben
Hey guys
I have the plugin installed which has been working flawlessly, however the banners are no longer showing with this error:
Notice: Undefined variable: cat in */functions.php* on line 99
Line 99 reads:
<img src="<?php echo z_taxonomy_image_url($cat->term_id); ?>" />
Notice: Trying to get property 'term_id' of non-object in */functions.php*
Its only just stopped working, no idea why, but there shouldnt be any conflicts here as nothing has changed.
If you could spare 5 minutes i;d be grateful of a reply.
Thanks
]]>Hello,
Where do I place the following code so that the Category images show on the published page?
<?php if (function_exists(‘z_taxonomy_image_url’)) echo z_taxonomy_image_url(); ?>
Thanks
]]>Hi. It works on Elementor plug-in?
]]>Is it possible to make icons to each category in sidebar widget with this plugin? How to do it?
I’am frustrated….
]]>I can set an url for a taxonomy manually. I use bulk import for creating categories and taxonomies. Which image column can I use for importing urls? Tried zci-taxonomy-image but didn’t work.
]]>
Hi there, I was wondering how I can upload many images to taxonomy entries already created.
Thanks for your help
Hi there. Really enjoying this plugin but I started using tags on my blog as well. In the settings I can upload an image to the tags just like I do the categories however they don’t seem to be showing on the tags. Any idea why? I haven’t added images to all the tags, just a few including this one below.
https://www.thomaswphoto.com/tag/astrophotography/
https://www.thomaswphoto.com/category/articles/
Thanks!
]]>It is totally unnecessary for this plugin to create a main menu element within the wordpress admin.
This is really irresponsible and draws completely unnecessary to a menu item and page of settings that likely will only ever need setting once.
The tendency for plugin authors to do this is really irresponsible I find. Please assist making peoples wordpress installs cleaner and not less bloated with this kind of action.
]]>Hi,
Thank your for hard work, I have a question ?do you have a option to display the image archives with a taxonomy?
For example, I use your plugin with post_tags to display the works of determinate person, but I want to display all the persons for certain country all together with images, so I have a taxonomy for the countries. I tried with Shortcode Ultimate but gave me an error and don’t display anything.
Thank you,
Dalia
]]>I got this plugin to work using…
php echo z_taxonomy_image_url();
Is there anyway to add the image alt=”” into it?
]]>Hi, I added all images to my categories. How do I view them on my site?
Thanks
]]>Hi everyone,
Please @elzahlan do you think it is possible with a function to duplicate the category image field add by your plugin?
I know you’ve been saying for a few years that you might be going to implement this feature, but it doesn’t seem to be yet.
It would be so fantastic, because you know Muhammad, your plugin is the only one that works correctly on all the solutions that I have been able to test, and that without having to install complex plugins. For me it is the best!
I know I am not the only one asking for the possibility of having at least a 2nd image field (or more), if you make that possible it would be magic.
Yours truly and happy end of the year to you.
A fan of your plugin.
Sridhar Katakam, a Genesis theme guru, has a great tutorial over at his blog for setting up this plugin to display a page of categories with their images in grid format. if you are not afraid to roll up your sleeves and dive into your functions.php file, this might be helpful. I tried it today and it works just fine, even with the latest version of Genesis and WP.
https://sridharkatakam.com/category-images-grid-template-genesis/
]]>