net
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Media Category Management] Keyword search inside categoryStill having the same problem using 1.6.1.
Forum: Plugins
In reply to: [WP Media Category Management] Keyword search inside categoryUnfortunately, it is not working with 1.6.0, either.
The language is Serbian, it says “Филтрира?” on the button.
Should not rely on particular wording if possible.
Many thanks.
Forum: Plugins
In reply to: [WP Media Category Management] Keyword search inside categoryHere are the steps to reproduce the issue:
1) Select appropriate media category
2) Click “Filter” button
3) Type some text into search box on the right side
4) Press Enter on the keyboardIt shows results from all categories, not just filtered previously.
Just tried the same when Site Language is in English, and it seems to be working fine. Could it be multi-language issue?
Forum: Plugins
In reply to: [RSS Post Importer] Brainstorming Thread – Make Suggestions here !6) It seems there is no reason to add ‘-media-‘ . $count suffix to local images:
$attachment_id = $this->add_to_media($url, 0, $post['post_title'] . '-media-' . $count);
7) Function add_to_media should check does the same image already exist, like we do for posts using function post_exists.
Forum: Plugins
In reply to: [RSS Post Importer] Brainstorming Thread – Make Suggestions here !1) Add search and replace functionality using regular expressions. Some other RSS importers have this feature.
2) Change the location of log file. Instead of wp-content/rsspi-log/log.txt should be wp-content/plugins/rss-post-importer/log.txt or similar.
3) Log should be more verbose. E.g. each line should be: “feed_name (URL): x items imported.”.
4) Log errors. For example, change:
if (is_wp_error($feed)) { return false; }
to:
if (is_wp_error($feed)) { rssPILog::log(str_replace("\n", " ", var_export($feed, TRUE))); return false; }
5) Add option to temporarily disable some feed.
Forum: Plugins
In reply to: [RSS Post Importer] Brainstorming Thread – Make Suggestions here ![ Moderator note: code fixed. Please wrap code in the backtick character or use the code button. ]
$post['post_content'] = $dom->saveXML($doc);
inserts <html> and <body> tags.
Add after it:
$post['post_content'] = str_replace( array('<html>', '</html>', '<body>', '</body>'), '', $post['post_content']);
Forum: Plugins
In reply to: [RSS Post Importer] Brainstorming Thread – Make Suggestions here !I understand. How about adding more apply_filters calls all over the place, so we can extended the plugin ourselves?
Forum: Plugins
In reply to: [RSS Post Importer] Brainstorming Thread – Make Suggestions here !Clarification:
1) In Settings for each feed: Add “Image caption” edit box containing template for image caption, e.g. “Source: {$feed_title}”. Such content would be added to ‘Caption’ field of imported images. This is very important, to attribute the original author of the image.
2) In Settings for each feed: To specify media category for imported images based on “WP Media Category Management” plugin: https://www.ads-software.com/plugins/wp-media-category-management/
3) Some filters could be added to be able to alter plugin behavour.
Forum: Plugins
In reply to: [RSS Post Importer] Duplicate images stored locallyYou are right, turning off featured image is the solution. Many thanks for prompt help!
Don’t have premium account, I understand it requires monthly fee. Would be interested if there is a small one time fee.
Forum: Plugins
In reply to: [RSS Post Importer] Brainstorming Thread – Make Suggestions here !To automatically assign images to specified category using https://www.ads-software.com/plugins/wp-media-category-management/
Forum: Plugins
In reply to: [RSS Post Importer] Duplicate images stored locallyTo clarify, I’m referring to image duplicates in Media Library.
Not sure how to send you private message here.
Forum: Plugins
In reply to: [RSS Post Importer] Brainstorming Thread – Make Suggestions here !Just tested more than 5 RSS importers and this is the best. Nice work!
Feature request: To be able to add “Caption” field to locally saved images, containing custom text, e.g. “Source: {$feed_title}”
Warm regards,
IvanForum: Plugins
In reply to: [AppBanners] Close button doesn't workWe’ve fixed it using:
jQuery(‘.sb-close’).click(function(event) {
jQuery(‘#smartbanner’).css(‘display’, ‘none’);
});But even when testing windowstest.html (ref: https://github.com/jasny/jquery.smartbanner) in Android or in browser using its user agent it is not possible to close the banner.