Forum Replies Created

Viewing 15 replies - 31 through 45 (of 83 total)
  • Forum: Plugins
    In reply to: [Mistape] hotkeys not work
    Plugin Author deco.agency

    (@decollete)

    Hi,

    Version 1.3.0 works fine with your theme https://d.pr/v/DVDe

    Check settings, please https://d.pr/i/1kkoL

    Plugin Author deco.agency

    (@decollete)

    Hi,

    we recently added a new version 1.3.0
    Could you please delete the plugin and install from an admin panel?

    Plugin Author deco.agency

    (@decollete)

    Hi, Leo.

    We will add this settings in the next update.

    Thank you for idea!

    Plugin Author deco.agency

    (@decollete)

    Hi, Michael.

    Could you please turn the plugin on? We will check what is wrong.

    Looking forward to hearing from you.

    Plugin Author deco.agency

    (@decollete)

    Hi

    You need to paste this code in single.php and page.php of your theme:

    <?php do_shortcode( ‘[mistape format=”text” class=”mistape_caption”]’ ); ?>

    Plugin Author deco.agency

    (@decollete)

    Hi, 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!

    Plugin Author deco.agency

    (@decollete)

    Hi, we will check this shortly, and I will send you an answer.

    Forum: Plugins
    In reply to: [Mistape] hotkeys not work
    Plugin Author deco.agency

    (@decollete)

    Hi, Bogdan.
    I will check plugin with this theme and give you an answer shortly.

    Plugin Author deco.agency

    (@decollete)

    Hi, 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!

    Plugin Author deco.agency

    (@decollete)

    Thanks!
    We use Cmd+Enter shortcut to submit comments in our de:comments plugin, that’s why Ctrl+Enter is the solution

    Plugin Author deco.agency

    (@decollete)

    Hi!

    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!

    Plugin Author deco.agency

    (@decollete)

    Hi!

    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!

    Plugin Author deco.agency

    (@decollete)

    Доброго дня!

    В п’ятницю вийшло оновлення, в ньому виправлена проблема з мовами. Спробуйте будь-ласка оновитися та перев?рити.

    Дяку?мо!

    Plugin Author deco.agency

    (@decollete)

    Сообщение у вас и не выводится, его на скрине не видно. Это, очевидно, какой-то конфликт самим модальным окном, которое предшествует отправке уведомления. Дайте, пожалуйста, ссылку на сайт, где можно увидеть это

    Forum: Reviews
    In reply to: [Mistape] Супер!
    Plugin Author deco.agency

    (@decollete)

    В версии 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 желаемых категорий. На страницах записей, принадлежащих указанным категориям, Мистейп выводиться не будет.

    Фильтрация по категории — слишком специфическая потребность. Кому-то может быть нужно фильтровать по тегам или по айди конкретного поста. Поэтому нет смысла добавлять такие настройки в интерфейс админки. Эти вещи легко реализуются фильтрами по приведенному выше примеру.

    Надеемся, вам это пригодится.

Viewing 15 replies - 31 through 45 (of 83 total)