silence
Forum Replies Created
-
Forum: Plugins
In reply to: [Protect RSS] Protect RSS: Protect just one of multiple feeds?Hi.
Sorry, Just today I see this forum post.
I tested only to 3.0, I will going to test it this weekend on 3.1 and I will tell you an anwer.
In this moment the feature that you are telling me it’s not supported, but I think could be integrated in next release.
Byron H.Hi.
If you like to use a function, this is the call:<?php echo sil_rss_show(20, "content", 0); ?>Params are same as call it with shortcode.
Bh.Forum: Plugins
In reply to: [Silencesoft RSS Reader] [Plugin: Silencesoft RSS Reader] Multi WidgetHi.
Sorry for the delay on the answer but I was made in some tests and updates on plugin to the new wordpress code.
There is a test on:
http://www.silencesoft.net/Wordpress/sil_rss_reader_0.6apre.tar.gz
With the new code.
It doesn’t use old created widgets (so you lost them, save your code firts) and it only works with post 2.8 blogs.
Byron H.Hi.
I found the problem and fixed it π
In version 0.6 now it works with two or more entries.
About third param:
Feed option only shows a site feed (third param)
But with content and widget, third param is a category to show items.
Any problem tell me.}
π
Bh.Hi.
I will going to review the code and i will tell you about this.
If there is an update I will tell you too.
Bh.Hi.
I updated the plugin to allow categories on items page.
In wordpress site says 0.4, but it’s 0.5 version.
Try it please, and if the options are empty too, try looking on page source and paste some lines here to see.
Bh.Hi,
I did tests looking for this issue in some wordpress blogs but there is no results.
Always I have the blogs list on the edit category page.
Can you tell me more about this?
Thanks.
Bh.Hi.
I’m going to review this.
Bh.Forum: Plugins
In reply to: RSS ReaderHi.
The list of all blogs in this moment is automatic and it looks if the blog has an image or a gravatar to show it on the page, it doesn’t using an option yet.
Is this what you need?
Byron H.Forum: Plugins
In reply to: RSS ReaderHolas.
Que pena la demora en la respuesta.
El plugin fue desarrollado para un sitio que en este momento tiene mΓ‘s de 100 blogs.
Aunque el problema puede ser que a pesar del cachΓ© busca actualizaciones de los feeds al momento de cargar.
Voy a revisar para que se pueda hacer por cron algunas actualizaciones que quizΓ‘s asΓ pueda mejorar rendimiento.
Ideas igual bienvenidas π
Gracias por el aporte.
Chaos.
Byron H.Forum: Plugins
In reply to: RSS ReaderThanks for your reply
π
First i’m testing the plugin and i like to have an stable version
π
Byron H.Forum: Fixing WordPress
In reply to: Textarea -code breaking the editor window. Any solutions?Any news about this?
Thanks.
Byron H.Forum: Fixing WordPress
In reply to: Edit page with form problemSorry it is wordpress 2.7.1.
My fault.
Bh.Forum: Fixing WordPress
In reply to: Cross-month archive navigationHi.
I did something like this for a blog on the home page.
This is not the best solution but could work.
The problem is the number of pages on the site.
I’m working on this issue but if somebody can help.
πThis is the code that goes on index.php (on template directory) before the content id
<?php if (is_home()) { $temp_query = $wp_query; $actPage = $_GET["paged"]; if ($actPage == "" || $actPage == "1") $actPage = 1; $current_month = date('m'); $current_year = date('Y'); $toShow = $current_month - ($actPage - 1); if (!$toShow) { $toShow = 12; $current_year--; } $strQuery = "&year=$current_year&monthnum=$toShow&posts_per_page=-1"; $strQuery = "&year=$current_year&monthnum=$toShow"; query_posts($strQuery); } ?>and after the endwhile:
<?php $wp_query = $temp_query; ?>The problem is the number of pages.
After some pages this could start to show pages not found.
Thanks for help.Byron H.