• Статья
How to Export Thunderbird Email to EML File Format?

I've been using Mozilla Thunderbird for a while and now I need to export some emails to the EML format to use them with other applications. After some searching, I found a simple way to do it directly from Thunderbird!



  1. Open Thunderbird and go to settings to add Addon ImportExportTools NG.
  2. Select the folder with the emails you want to export.
  3. Right-click on the email (or select multiple emails), then choose Export Message As.
  4. In the file type options, choose...

Read more

Читать далее...

  • Статья
Wordpress Drama

Anyone else paying attention to the current Wordpress (Matt Mullenweg) and his vendetta against WP Engine?

Here's an article about it: The WordPress vs. WP Engine drama, explained | TechCrunch

It's to the point that Wordpress.org is actively blocking customers who use WP Engine from using the main repo for plugin and themes.

Читать далее...

  • Статья
User Promotion working inconsistently

I want new members to post 5 times before earning Direct Message privileges. To accomplish this, I created a new user group called "Registered Plus" that includes DM privileges and took away DM privileges from the "Registered" user group. I then created a user group promotion that adds users to the "Registered Plus" group when "User has posted at least X messages" = 5. I then ran Cron Entries "User Group Promotions" and it added some qualified members to "Registered Plus" but not others...

Read more

Читать далее...

  • Статья
[OzzModz] Tours and Hints [Paid]

Dadparvar submitted a new resource:

[XP] Tours and Hints - Add Tours and Hints and let your members get familiar with the features and sections of your site.

With this add-on, you can create unlimited tours and hints on your site for any part that you want. Using its dedicated panel, you can easily manage your tours and hints separately and re order them as you wish.

Using the usergroup permissions, and user and page criteria, you can fully control where, when and to...
Click to expand...

Read more

Читать далее...

  • Статья
Example to insert into database

Sorry for newbie question, but is there an example on how to insert and get data from the database via controller logic? If using
$this->filter() is that sufficient enough to insert into the database directly, or should an additional method be called to help with sanitize input prior to insert into the database (i.e. prevent sql injection)?

Cheers!

Читать далее...

Мануал Font awesome icons 2.3 - categories, nodes, prefixes, phrases, templates etc...

xenforo2 разместил(а) новый ресурс:

Font awesome icons 2.3 - categories, nodes, prefixes, phrases, templates etc... - Общее руководство по использованию иконок Font Awesome в xenforo 2.3

Введение​

(Пропустите вступление и переходите сразу к примерам)

Есть две основные ситуации, в которых вы можете использовать значки font awesome (или другие).

1. Псевдоэлементы (до и/или после текста)​

В этом случае вы указываете с помощью CSS-кода, что значок должен отображаться до или после какого-либо текста, например, заголовка узла, префикса или элемента навигации. Обычно это делается путем добавления некоторого CSS-кода в шаблон extra.less...

Посмотреть страницу этого ресурса...

ИНСТРУКЦИИ Font awesome icons 2.3 - categories, nodes, prefixes, phrases, templates etc...

Введение​

(Пропустите вступление и переходите сразу к примерам)

Есть две основные ситуации, в которых вы можете использовать значки font awesome (или другие).

1. Псевдоэлементы (до и/или после текста)​

В этом случае вы указываете с помощью CSS-кода, что значок должен отображаться до или после какого-либо текста, например, заголовка узла, префикса или элемента навигации. Обычно это делается путем добавления некоторого CSS-кода в шаблон extra.less.

Для псевдоэлементов css (значок перед текстом/после текста) используйте этот синтаксис для кода в extra.less

.m-faContent(@fa-var-icon-name); = regular

.m-faContent(@fa-var-duotone-icon-name); =duotone

.m-faContent(@fa-var-solid-icon-name); = solid

.m-faContent(@fa-var-light-icon-name); = light

Это когда вы просто показываете значок в шаблоне или html. Вы используете этот синтаксис:

<xf:fa icon="fa-icon-name" aria-hidden="true">

2. Непосредственно в шаблоне​


Это когда вы просто показываете значок в шаблоне или html. Вы используете этот синтаксис:

<xf:fa icon="fa-icon-name" aria-hidden="true">

Ниже приведены некоторые конкретные примеры
Добавление значка узла категории

В шаблоне extra.less

Измените идентификационный номер в соответствии с

CSS:
// add icon to category id=4

.block--category.block--category4 .block-header:before
{
     .m-faContent(@fa-var-sparkles);
}

Duotone

CSS:
.block--category.block--category4 .block-header:before
{
      .m-faContent(@fa-var-duotone-sparkles);
}
Solid

CSS:
.block--category.block--category4 .block-header:before
{
      .m-faContent(@fa-var-solid-sparkles);
}

Light

CSS:
.block--category.block--category4 .block-header:before
{
      .m-faContent(@fa-var-light-sparkles);
}

ПРИМЕЧАНИЕ: Вы можете добавить другие стили CSS, например, цвет, размер шрифта, поля и т.д.

CSS:
// add big red icon to category id=4

.block--category.block--category4 .block-header:before
{
      .m-faContent(@fa-var-sparkles);
      color:red;
      font-size:36px;
}

Замените значок узла по умолчанию
(как указано выше, он может быть обычным, сплошным, светлым или двухцветным)

Чтобы заменить значок по умолчанию, добавьте его в шаблон extra.less:

Less:
.node .node-icon i
{
    &:before
    {
        .m-faContent(@fa-var-coffee-pot);
        width: 100%;
    }
    svg
    {
        display: none;
    }
}

Note that the second part (svg...) removes the default xenForo icon.


Замените значок отдельного узла
(обратите внимание, что вам не нужно удалять svg, если это уже сделано, как указано выше, для всех узлов)



Измените идентификационный номер в соответствии с

CSS:
.node.node--id8 .node-icon i
{
    &::before
    {
        .m-faContent(@fa-var-bullhorn);
    }
        
     svg
    {
        display: none;
    }
    
}

Добавление значка к префиксу темы, например, для светло-зеленого префикса (в шаблоне extra.less):

Перед текстом

Less:
.label.label--lightGreen:before
{
.m-faContent(@fa-var-flower-tulip); }

После текста

Less:
.label.label--lightGreen:after {
        .m-faContent(@fa-var-flower-daffodil);}

И до, и после

Less:
.label.label--lightGreen {
 
    &:before {
        .m-faContent(@fa-var-flower-tulip);
 
    }
    &:after {
        .m-faContent(@fa-var-flower-daffodil);
 
    }
}

Значки в навигации
1. Добавьте значок к тексту

Сначала найдите идентификатор навигации. Это текст в верхнем поле настроек навигации в панели управления администратора.

Значок перед заголовком навигации, например, для вкладки Форумы (идентификатор навигации = forums)

Добавьте это в extra.less

Less:
[data-nav-id="forums"]:before
{
    .m-faContent(@fa-var-comments);
    margin-right:5px
}

Значок после навигационного заголовка

Less:
[data-nav-id="forums"]:after
{
     .m-faContent(@fa-var-comments);
     margin-left:5px;
}

2. Значок в качестве заголовка навигации вместо текста​


Элементы навигации основаны на фразах, поэтому для существующих элементов навигации (по умолчанию в xenforo) вам необходимо найти нужную фразу. Вы можете найти все фразы, выполнив поиск по названию в панели управления администратора > Внешний вид > Поисковые фразы. Все навигационные фразы начинаются с nav. таким образом, их довольно легко найти, даже если есть несколько похожих фраз. например, Forums - это фраза nav.forums. Вы просто меняете фразу, используя этот синтаксис:

{icon:far::icon-name}

Например:

Regular
{icon:far::sparkles}

Solid
{icon:fas::sparkles}

Duotone
{icon:fad::sparkles}

Для цветного значка используйте интервал со встроенным стилем:

<span style="color:yellow">{icon:far::sparkles}</span>

Для пользовательских элементов навигации вы можете добавить тот же код непосредственно в настройки навигации в поле Заголовок.

Добавление иконок в шаблоны​

Добавьте этот код в те места, где вы хотите, чтобы иконки отображались в шаблоне xenforo или рекламе. Вы можете использовать его просто как иконку или в качестве ссылки.

Regular
HTML:
<xf:fa icon="fa-sparkles" aria-hidden="true"/>

Solid (fas)
HTML:
<xf:fa icon="fas fa-sparkles" aria-hidden="true"/>
Duotone (fad)
HTML:
<xf:fa icon="fad fa-sparkles" aria-hidden="true"/>

Light (fat)
HTML:
<xf:fa icon="fal fa-sparkles" aria-hidden="true"/>

Duotone (fad)
HTML:
<xf:fa icon="fad fa-sparkles" aria-hidden="true"/>

Значки могут быть ссылками:
HTML:
<a href="https://example.com/page"><xf:fa icon="fa-sparkles" aria-hidden="true"/></a>

Стилизация с учетом цвета, размера, отступов и т.д.
HTML:
<xf:fa style="color:orange;font-size:22px;margin-left:5px;" icon="fad fa-palette" aria-hidden="true" />

Обратите внимание, что помимо встроенного CSS (как указано выше, style="..."), вы также можете определить класс для использования в вашем CSS (в шаблоне extra.less).
<xf:fa class="your-class" icon="fad fa-sparkles" aria-hidden="true"/>

  • Статья
Lightbox sidebar missing for Embeds, Videos and Audio media types

The lightbox sidebar is missing for embed, video and audio media types. This is happening with XFMG 2.3.2 and here on XenForo.com at the time of posting. The sidebar does correctly display for images.

Upon checking the browser console, an uncaught TypeError is logged for the XF2.3 lightbox (in the case of embeds, videos and audio):
JavaScript:

Код:
Uncaught TypeError: b.contentEl is undefined
    onSlideDisplayed https://xenforo.com/community/js/xf/lightbox-compiled.js?_v=f87c062b:15
    trigger...

Read more

Читать далее...

  • Статья
Приветствуем нового пользователя, Дмитgggрий

@Дмитgggрий, Добро пожаловать на наш форум! Территория возможностей 💥 😉

Зарегистрированный пользователь не может скачивать ресурсы ознакомившись с условиями на странице с повышениями групп или в личном профиле!


Описания платных групп:

  • Статья
[OzzModz] BB-Code: eD2k Link [Paid]

Ozzy47 submitted a new resource:

[OzzModz] BB-Code: eD2k Link - Adds BB-code that contains eD2k (eMule) links and displays all available information

Requirements:
XF 2.2+

Description:
Adds BB-code that contains eD2k (eMule) links and displays all available information

Features:
  • Parsing eD2k links and displaying information including file name, size, statistics (optional)
  • Support for custom statistics servers
  • Two types of display — a...
Click to expand...

Read more

Читать далее...

  • Статья
Job System by Olakunlevpn

mayahn submitted a new resource:

Job System by Olakunlevpn - Simple tasks system for forum promotion

The Job System Addon is a powerful extension designed to enhance user engagement and reward participation on your XenForo forum. With this addon, you can create a dynamic environment where users can browse, complete, and submit jobs or tasks to earn rewards. The system provides a seamless way for users to track their submissions and withdraw their earnings while admins...
Click to expand...

Read more

Читать далее...

  • Статья
[XFA] RM Marketplace/Shop - XF2 [Paid]

XFA submitted a new resource:

[XFA] RM Marketplace - Transforms your RM into an outstanding marketplace or shop !

Description
RM Makertplace
allows you and/or your users to sell resources from the resource manager, like in a marketplace !

Supports three types of products :
  • Digital products (license based):
    • with or without license renewal
    • with or without licence restrictions
    • with or without url required to download
  • Physical products...
Click to expand...

Read more

Читать далее...

  • Статья
The Following Alerts [Paid]

truonglv submitted a new resource:

[tl] The Following Alerts - Receive alerts from people who you are following...

Bring this version to XenForo 2: Unmaintained - The Following Alerts

Content Supported:
  • New threads created
  • New posts created
  • New resources created (required add-on: XenForo Resource Manager)
  • New status updated
  • New media albums created (required add-on: XenForo Media Gallery)
...
Click to expand...

Read more

Читать далее...

  • Статья
XF2 [8WR] XenRio 2 (Streams) PRO [Paid]

Jaxel submitted a new resource:

XF2 [8WR] XenRio 2 (Streams) PRO - Live stream scraper and browser. Add-on from 8WAYRUN.

BRANDING REMOVAL can be purchased HERE:

This is a complete rewrite of my popular live streaming scraper for XenForo. XenRio periodically scrapes various APIs in order to keep your users informed of the currently live broadcasts relevant to your community.

Demo:

To view this content we will need your consent to set third party cookies.
For more detailed information, see our cookies page.
Accept third party cookies

Basic...
Click to expand...

Read more

Читать далее...

  • Статья
Tag Essentials - with AI auto tagging and XFRM support [Paid]

Stuart Wright submitted a new resource:

Tag Essentials for Xenforo 2 - Adds key features to make tags better on your site

Admin Tag Management Page
View attachment 186223
  • Blacklist tag button for each tag
  • Edit Wiki button for each tag to open the wiki edit page
  • Blacklist/delete tag buttons now update with Ajax so the page is not refreshed each time a tag is deleted or blacklisted. Very useful when managing tags on a specific page of the list. Deleting a tag...
Click to expand...

Read more

Читать далее...

  • Статья
'forgot your password' doesn't generate an email

Its been brought to my attention that when a member of my forum presses the 'forgot your password' button they are advised that they will receive an email explaining how to reset their password, but the e mail doesn't arrive. is it something that I need to set up, if so where? ( I have had a look around but can't find what to do)

Читать далее...

  • Статья
[Xen-Soluce] Notice BB Code [Paid]

XenSoluce submitted a new resource:

[Xen-Soluce] Notice BB Code - Allows you to add a BBCode to use notices in threads, conversations, etc.

Description :
  • This add-on allows you to add a BBCode to use notices in threads, conversations, etc.
Feature summary :
  • Notice BB Codes :
    • View
    • Add/Edit :
      • Title
      • Placeholder
      • Content HTML
      • Content CSS
      • Display order
    • Permissions :
      • Per user groups
      • Per users...
Click to expand...

Read more

Читать далее...

Фильтровать

Назад
Верх Низ