<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
			<channel>
			<title>Плагин «Категории» дублирует виджеты / Вопросы, проблемы и их решения / Alto CMS</title>
			<link>http://79.174.14.219/comments/1463/</link>
			<description><![CDATA[Возможно, кто-то сталкивался с такой проблемой. При активации стандартным способом из админ панели плагина «Категории» на самой последней версии движка]]></description>
			<language>ru</language>
			<managingEditor>noreply@altocms.ru</managingEditor>
			<webMaster>noreply@altocms.ru</webMaster>
			<generator>Alto CMS v.1.5.0b1</generator>
							<item>
					<title>Плагин «Категории» дублирует виджеты (comment #24925)</title>
					<guid isPermaLink="true">http://79.174.14.219/t/1463/#comment24925</guid>
					<link>http://79.174.14.219/1463.html#comment24925</link>
					<author>pro.killerxxx@yandex.ru</author>
					<description><![CDATA[Открываем файл по пути .../common/plugins/Плагин_категорий/config/config.php<br>
<strong>Находим:</strong><br>
<pre class="prettyprint"><code>// Прямой эфир
$config[&#39;widgets&#39;][] = array(
    &#39;name&#39;     =&#62; &#39;stream&#39;, // исполняемый виджет Stream
    &#39;group&#39;    =&#62; &#39;right&#39;, // группа, куда нужно добавить виджет
    &#39;priority&#39; =&#62; 100, // приоритет
    &#39;action&#39;   =&#62; array(
        &#39;index&#39;,
        &#39;filter&#39;,
        &#39;blogs&#39;,
        &#39;blog&#39; =&#62; array(&#39;{topics}&#39;, &#39;{topic}&#39;, &#39;{blog}&#39;),
        &#39;tag&#39;,
        &#39;category&#39;,
    ),
    &#39;params&#39; =&#62; array(
        &#39;items&#39; =&#62; array(
            &#39;comments&#39; =&#62; array(&#39;text&#39; =&#62; &#39;widget_stream_comments&#39;, &#39;type&#39;=&#62;&#39;comment&#39;),
            &#39;topics&#39; =&#62; array(&#39;text&#39; =&#62; &#39;widget_stream_topics&#39;, &#39;type&#39;=&#62;&#39;topic&#39;),
        ),
    ),
);

// Теги
$config[&#39;widgets&#39;][] = array(
    &#39;name&#39;     =&#62; &#39;tags&#39;,
    &#39;group&#39;    =&#62; &#39;right&#39;,
    &#39;priority&#39; =&#62; 50,
    &#39;action&#39;   =&#62; array(
        &#39;index&#39;,
        &#39;filter&#39;,
        &#39;blog&#39; =&#62; array(&#39;{topics}&#39;, &#39;{topic}&#39;, &#39;{blog}&#39;),
        &#39;tag&#39;,
        &#39;category&#39;,
    ),
);

// Блоги
$config[&#39;widgets&#39;][] = array(
    &#39;name&#39;     =&#62; &#39;blogs&#39;,
    &#39;group&#39;    =&#62; &#39;right&#39;,
    &#39;priority&#39; =&#62; 1,
    &#39;action&#39;   =&#62; array(
        &#39;index&#39;,
        &#39;filter&#39;,
        &#39;blog&#39; =&#62; array(&#39;{topics}&#39;, &#39;{topic}&#39;, &#39;{blog}&#39;)
    ),
);

// Категории
$config[&#39;widgets&#39;][] = array(
    &#39;name&#39;     =&#62; &#39;categories&#39;,
    &#39;group&#39;    =&#62; &#39;right&#39;,
    &#39;priority&#39; =&#62; 150,
    &#39;plugin&#39;   =&#62; &#39;categories&#39;,
    &#39;action&#39;   =&#62; array(
        &#39;index&#39;,
        &#39;filter&#39;,
        &#39;blogs&#39;,
        &#39;blog&#39; =&#62; array(&#39;{topics}&#39;, &#39;{topic}&#39;, &#39;{blog}&#39;),
        &#39;tag&#39;,
        &#39;category&#39;,
    ),
    &#39;params&#39; =&#62; array(
        &#39;simple&#39; =&#62; true, // Simple list of blogs in category
    ),
);</code></pre><br>
<strong>Заменяем на:</strong><br>
<pre class="prettyprint"><code>
// Прямой эфир
$config[&#39;widgets&#39;][&#39;stream&#39;] = array(
    &#39;name&#39;     =&#62; &#39;stream&#39;, // исполняемый виджет Stream
    &#39;group&#39;    =&#62; &#39;right&#39;, // группа, куда нужно добавить виджет
    &#39;priority&#39; =&#62; 100, // приоритет
    &#39;action&#39;   =&#62; array(
        &#39;index&#39;,
        &#39;filter&#39;,
        &#39;blogs&#39;,
        &#39;blog&#39; =&#62; array(&#39;{topics}&#39;, &#39;{topic}&#39;, &#39;{blog}&#39;),
        &#39;tag&#39;,
        &#39;category&#39;,
    ),
    &#39;params&#39; =&#62; array(
        &#39;items&#39; =&#62; array(
            &#39;comments&#39; =&#62; array(&#39;text&#39; =&#62; &#39;widget_stream_comments&#39;, &#39;type&#39;=&#62;&#39;comment&#39;),
            &#39;topics&#39; =&#62; array(&#39;text&#39; =&#62; &#39;widget_stream_topics&#39;, &#39;type&#39;=&#62;&#39;topic&#39;),
        ),
    ),
);

// Теги
$config[&#39;widgets&#39;][&#39;tags&#39;] = array(
    &#39;name&#39;     =&#62; &#39;tags&#39;,
    &#39;group&#39;    =&#62; &#39;right&#39;,
    &#39;priority&#39; =&#62; 50,
    &#39;action&#39;   =&#62; array(
        &#39;index&#39;,
        &#39;filter&#39;,
        &#39;blog&#39; =&#62; array(&#39;{topics}&#39;, &#39;{topic}&#39;, &#39;{blog}&#39;),
        &#39;tag&#39;,
        &#39;category&#39;,
    ),
);

// Блоги
$config[&#39;widgets&#39;][&#39;blogs&#39;] = array(
    &#39;name&#39;     =&#62; &#39;blogs&#39;,
    &#39;group&#39;    =&#62; &#39;right&#39;,
    &#39;priority&#39; =&#62; 1,
    &#39;action&#39;   =&#62; array(
        &#39;index&#39;,
        &#39;filter&#39;,
        &#39;blog&#39; =&#62; array(&#39;{topics}&#39;, &#39;{topic}&#39;, &#39;{blog}&#39;)
    ),
);

// Категории
$config[&#39;widgets&#39;][&#39;categories&#39;] = array(
    &#39;name&#39;     =&#62; &#39;categories&#39;,
    &#39;group&#39;    =&#62; &#39;right&#39;,
    &#39;priority&#39; =&#62; 150,
    &#39;plugin&#39;   =&#62; &#39;categories&#39;,
    &#39;action&#39;   =&#62; array(
        &#39;index&#39;,
        &#39;filter&#39;,
        &#39;blogs&#39;,
        &#39;blog&#39; =&#62; array(&#39;{topics}&#39;, &#39;{topic}&#39;, &#39;{blog}&#39;),
        &#39;tag&#39;,
        &#39;category&#39;,
    ),
    &#39;params&#39; =&#62; array(
        &#39;simple&#39; =&#62; true, // Simple list of blogs in category
    ),
);
</code></pre>]]></description>
					<pubDate>Tue, 01 Dec 2015 00:22:54 +0300</pubDate>
									</item>
							<item>
					<title>Плагин «Категории» дублирует виджеты (comment #24926)</title>
					<guid isPermaLink="true">http://79.174.14.219/t/1463/#comment24926</guid>
					<link>http://79.174.14.219/1463.html#comment24926</link>
					<author>chlenvamvrot@yandex.ru</author>
					<description><![CDATA[спасибо! Попробую!]]></description>
					<pubDate>Tue, 01 Dec 2015 00:25:23 +0300</pubDate>
									</item>
							<item>
					<title>Плагин «Категории» дублирует виджеты (comment #24929)</title>
					<guid isPermaLink="true">http://79.174.14.219/t/1463/#comment24929</guid>
					<link>http://79.174.14.219/1463.html#comment24929</link>
					<author>chlenvamvrot@yandex.ru</author>
					<description><![CDATA[Еще раз спасибо! Помогло!]]></description>
					<pubDate>Tue, 01 Dec 2015 09:18:12 +0300</pubDate>
									</item>
					</channel>
	</rss>
