Ben Huson
Forum Replies Created
-
Forum: Plugins
In reply to: [Taxonomy Images] Woocommerce Attribute Terms ImagesIt might be possible for me to add a filter to the plugin to simplify this process and provide compatibility with other plugins that make use a slightly custom UI.
Are you able to confirm that you can also fix this issue by uncommenting these few lines in the Taxonomy Images plugin where it checks if the taxonomy uses a custom UI:
https://github.com/benhuson/Taxonomy-Images/blob/master/taxonomy-images.php#L401if ( ! isset( $taxonomy->show_ui ) || empty( $taxonomy->show_ui ) ) { continue; }Forum: Plugins
In reply to: [WP Mail From II] Stopped working…You can try re-installing an older version of the plugin to see if that rectified the issue, which would narrow it down to an issue with a plugin update.
If that does’t work it will narrow it down to a WordPress update or something BlueHost has changed, which may help get closest to the cause.
Forum: Plugins
In reply to: [WP Mail From II] Gmail Address I've Provided Registering As SpamIf you use an email address with a different domain to your web site this may get flagged as spam by some service providers, so I would advise it’s best to use a from address with the same domain.
Forum: Plugins
In reply to: [WP Mail From II] Current VersionShould be.
Forum: Plugins
In reply to: [Taxonomy Images] single.php image problemThis is a duplicate of https://ww.wp.xz.cn/support/topic/singlephp-image-link
Forum: Plugins
In reply to: [Taxonomy Images] Single.php image linkTry using:
echo apply_filters( 'taxonomy-images-list-the-terms', '' );that may be suitable for your needs.
Forum: Plugins
In reply to: [Taxonomy Images] "Associate image with term" button fails after upgradeI have fixed this issue and will release a minor update for the plugin.
Forum: Plugins
In reply to: [Taxonomy Images] Error CSS after upgradeI have been unable to replicate your issue using the HTML of your page in combination with the style changes in the newer version of the plugin.
If you would like me to investigate further, please send me the HTML source code of your page with the newer version of the plugin active so I can try to recreate the issue.
Kind regards
Ben
Forum: Plugins
In reply to: [Taxonomy Images] "Associate image with term" button fails after upgradeThanks Dan.
I have managed to recreate the issue.
When you create a new term, clicking the “+” button to add an image immediately opens the old media manager in the full page – rather that the new media modal.
If you refresh the page it works correctly.
I’ll work on a fix for this.
Thank you for reporting this
Ben
Forum: Plugins
In reply to: [Taxonomy Images] Error CSS after upgradeNo styling should have changed in the recent upgrade.
The only think that may be related is the stylesheet is now enqueued properly.
There is a chance this may have caused it to load before/after one of your other stylesheets, in a different order from previously.
Do you have a link where I can preview the issue?
Thanks
Ben
Forum: Plugins
In reply to: [Taxonomy Images] Display Taxonomy Name Images with linkTry this:
<?php // List of image links $terms = apply_filters( 'taxonomy-images-get-terms', '', array( 'taxonomy' => 'series' ) ); foreach( (array) $terms as $term) { echo '<a href="' . esc_attr( get_term_link( $term ) ) . '" title="' . sprintf( __( "View all posts in %s" ), $term->name ) . '" ' . '>' . wp_get_attachment_image( $term->image_id, 'destacado-proyectos-home' ) . '</a>'; } ?>Forum: Plugins
In reply to: [Taxonomy Images] Category image unable to addVersion 0.9 has just been release which updates to the new Media popup.
Hopefully this fix resolve your issue.Forum: Plugins
In reply to: [Taxonomy Images] Is This Plugin Still Being Supported?I have just been granted commit access to maintain this plugin, and have release version 0.9 which updates the media modal and fixes a few other bugs.
Please find the plugin’s GitHub page here if you would like to submit any bug reports.
If you have deleted the plugin I’m unsure how this could be causing the issue.
Does your site or hosting have any caching plugins – it’s possible that that could cause an issue.It doesn’t by default but if you can do a little coding you can use the
password_protected_is_activefilter in the plugin that would allow you to do this.See how the allow_ip_addresses() function is implemented in the plugin using this filter.
Instead of validating IP addresses you could check the User Agent and disable the plugin for Google crawlers.