deco.agency
Forum Replies Created
-
Forum: Plugins
In reply to: [Mistape] hotkeys not workHi,
Version 1.3.0 works fine with your theme https://d.pr/v/DVDe
Check settings, please https://d.pr/i/1kkoL
Forum: Plugins
In reply to: [Mistape] Error updating the plugin translation.Hi,
we recently added a new version 1.3.0
Could you please delete the plugin and install from an admin panel?Forum: Plugins
In reply to: [deAdblocker] Time for the messageHi, Leo.
We will add this settings in the next update.
Thank you for idea!
Forum: Plugins
In reply to: [deAdblocker] Doesn't work on my siteHi, Michael.
Could you please turn the plugin on? We will check what is wrong.
Looking forward to hearing from you.
Forum: Plugins
In reply to: [Mistape] Position of captionHi
You need to paste this code in single.php and page.php of your theme:
<?php do_shortcode( ‘[mistape format=”text” class=”mistape_caption”]’ ); ?>
Forum: Plugins
In reply to: [Mistape] Initiate by buttonHi, pixelartist.
We have this in our schedule for the next versions. I will send you an answer here when it is available.
Have a nice day!
Forum: Plugins
In reply to: [Mistape] Error updating the plugin translation.Hi, we will check this shortly, and I will send you an answer.
Forum: Plugins
In reply to: [Mistape] hotkeys not workHi, Bogdan.
I will check plugin with this theme and give you an answer shortly.Forum: Plugins
In reply to: [Mistape] french translationHi, Li-An.
Could you please send me a translation [email protected]
We will check everything, add your translation to the plugin and mention you as a contributor.Thank you in advance!
Forum: Reviews
In reply to: [Mistape] Thanks God, you made thatThanks!
We use Cmd+Enter shortcut to submit comments in our de:comments plugin, that’s why Ctrl+Enter is the solutionForum: Plugins
In reply to: [Mistape] IP address in email notificationHi!
Could you please delete a plugin and install it again? In the new version, it will create a new table in DB where will store all data about errors. Probably something with permissions on your hosting.
Anyway, deleting and installation again should help you!
Forum: Plugins
In reply to: [Mistape] IP address in email notificationHi!
We have recently pushed un update, so could you please update the plugin? Probably it would be better if you turn the plugin off and that on again after un update. You will see a new tab in an admin panel signed Mistape and in the first section, Error reports will be a detailed info about all errors and sender’s IP.
Have a nice day!
Forum: Plugins
In reply to: [Mistape] Не п?дтягнулася укра?нська мова!Доброго дня!
В п’ятницю вийшло оновлення, в ньому виправлена проблема з мовами. Спробуйте будь-ласка оновитися та перев?рити.
Дяку?мо!
Forum: Plugins
In reply to: [Mistape] Ошибка с "Не показывать надпись в конце записи"Сообщение у вас и не выводится, его на скрине не видно. Это, очевидно, какой-то конфликт самим модальным окном, которое предшествует отправке уведомления. Дайте, пожалуйста, ссылку на сайт, где можно увидеть это
Forum: Reviews
In reply to: [Mistape] Супер!В версии 1.1.3 мы добавили возможность манипулировать результатом проверки “is_appropriate_post”.
По умолчанию эта проверка возвращает true, если пользователь запрашивает разрешенный в настройках тип записи и эта запись не защищена паролем.
Вы можете изменять результат проверки, таким образом включая или выключая Мистейп на конкретных страницах по своим условиям.
Для фильтрации по категориям можете использовать такой фрагмент кода (добавьте в конец файла functions.php в папке вашей темы; версия PHP должна быть не ниже 5.3):
/** * Disable Mistape on posts which belong to specific categories defined by IDs */ add_filter( 'mistape_is_appropriate_post', function ( $result ) { $excluded_cats = array( 13, 107, 182 ); // replace with category IDs where you want to disable Mistape if ( is_single() ) { $post_id = get_the_ID(); $args = array( 'update_term_meta_cache' => false ); // save an unnecessary database call $categories = wp_get_post_categories( $post_id, $args ); return ! array_intersect( $excluded_cats, $categories ); } return $result; } );
В части кода
$excluded_cats = array( 13, 107, 182 )
замените числа на ID желаемых категорий. На страницах записей, принадлежащих указанным категориям, Мистейп выводиться не будет.Фильтрация по категории — слишком специфическая потребность. Кому-то может быть нужно фильтровать по тегам или по айди конкретного поста. Поэтому нет смысла добавлять такие настройки в интерфейс админки. Эти вещи легко реализуются фильтрами по приведенному выше примеру.
Надеемся, вам это пригодится.