Gesundheit Bewegt GmbH
Forum Replies Created
-
Forum: Plugins
In reply to: [Zippy] Object Injection VulnerabilityForum: Plugins
In reply to: [Zippy] Functional problems in new version wordpressHello @alriksson,
if WPML uses the same slug (post_name) in different translations – then the plugin won’t work as expected and will replace the first found post with the same slug.
Your idea of asking the user to select posts to be replaced is really good but it won’t be implemented so fast. But with the next release, it may come.
Thanks!
Forum: Plugins
In reply to: [Zippy] Functional problems in new version wordpress@alriksson yes
Forum: Plugins
In reply to: [Zippy] Functional problems in new version wordpressHello @arielloscerbo,
Tested in WordPress 5.5.3. No problems found. Can you provide more details?
Thanks
Forum: Plugins
In reply to: [Colorful Categories] Record not overwrittenHello,
Fixed in v.2.0.13.
Thanks for the report!
Forum: Plugins
In reply to: [Zippy] Gallery issuesHello Max,
you can try to add this code to your functions.php
add_filter('zippy-unzip-attachments', static function ($attachments) { if (!empty($attachments)) { $attachments[key($attachments)]->isFeaturedImage = true; } return $attachments; });
Forum: Plugins
In reply to: [Zippy] The comments asociated to post don’t appearHello masajeintegrativo,
Unfortunately, the plugin does not allow to transfer related comments when transferring posts.Forum: Plugins
In reply to: [Colorful Categories] Post title on blog page in selected colourHello @josswilson, @asmo111,
please check the FAQ’s:
Q: How to get a color for a specific category?
A: Use WordPress default function:get_term_meta($term_id, "cc_color", true);
Hope this information helps you.
Thanks,
Gesundheit Bewegt GmbHForum: Plugins
In reply to: [Zippy] Can not open zip archiveHello @ikichpan,
Your server (hosting) does not support PHP Zip functionality. Ask the server administrator to enable zip package.
Forum: Plugins
In reply to: [Zippy] Can not open zip archiveHello @stratajan,
It seems that the plugin can not find a zip archive on the server. The plugin will be updated to show additional error messages.
Forum: Plugins
In reply to: [Zippy] Change the extraction pathHello fity,
thanks for the information.
The path will be changed from the root to the wp-content folder with the next update.
Forum: Plugins
In reply to: [Zippy] Images ArchiveHi Ben,
yes, all the images, attachments, featured images, etc. which related to the post will be in the archive. But this may not be true to images that are connected to the post using third-party plugins (due to a different plugins implementation).
So.. take care of this.
Thanks,
Loyalty ManufakturForum: Plugins
In reply to: [Zippy] Invalid zip files exportedHello nymets1104,
I think this is a problem with your OS and not with the plugin.
Thanks.
Forum: Plugins
In reply to: [Colorful Categories] How To Get ColorYou are welcome
Forum: Plugins
In reply to: [Colorful Categories] How To Get Color<a class="col-12 col-md-12 col-lg-6" style="background-color: <?php echo $color ?>" ...
P.S. Instead of get_term_meta(..) better to use
ColorfulCategories::getColorForTerm($category->term_id);