Title: SendPulse's Replies | WordPress.org

---

# SendPulse

  [  ](https://wordpress.org/support/users/sendpulse/)

 *   [Profile](https://wordpress.org/support/users/sendpulse/)
 *   [Topics Started](https://wordpress.org/support/users/sendpulse/topics/)
 *   [Replies Created](https://wordpress.org/support/users/sendpulse/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/sendpulse/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/sendpulse/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/sendpulse/engagements/)
 *   [Favorites](https://wordpress.org/support/users/sendpulse/favorites/)

 Search replies:

## Forum Replies Created

Viewing 11 replies - 1 through 11 (of 11 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SendPulse – Popup Builder for Email Optins, Lead Generation, Sticky Bars and Videos] Any update with latest wordpress or woocommerce version?](https://wordpress.org/support/topic/any-update-with-latest-wordpress-or-woocommerce-version/)
 *  Plugin Author [SendPulse](https://wordpress.org/support/users/sendpulse/)
 * (@sendpulse)
 * [1 year, 8 months ago](https://wordpress.org/support/topic/any-update-with-latest-wordpress-or-woocommerce-version/#post-18168862)
 * Hello, k0c1!
   This plugin works with any version of WordPress and WooCommerce.
   In fact, the plugin simplifies the installation of the pop-up service code from
   the Sendpulse company, which you receive in your personal account [https://login.sendpulse.com/pop-ups/](https://login.sendpulse.com/pop-ups/)
   after registration. You can read more in the description section of the plugin
   named “Usage”.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SendPulse Free Web Push] Have prompt and integration code only on one page?](https://wordpress.org/support/topic/have-prompt-and-integration-code-only-on-one-page/)
 *  Plugin Author [SendPulse](https://wordpress.org/support/users/sendpulse/)
 * (@sendpulse)
 * [2 years, 11 months ago](https://wordpress.org/support/topic/have-prompt-and-integration-code-only-on-one-page/#post-17012920)
 * Hello! Sorry for the late response. Yes. We can make prompt only on a subscription
   page.
 * You can add this code at your functions.php file inside your theme (/wp-content/
   theme/theme_name/functions.php)
 *     ```wp-block-code
       // Disable the original sendpulse_display() function for all pages
       remove_action('wp_head', 'sendpulse_display', 1000);
       remove_action('login_enqueue_scripts', 'sendpulse_display');
   
       // Define the custom_sendpulse_display() function with the modified logic
       function custom_sendpulse_display() {
           $page_id = get_queried_object_id();
           // Replace with actual page ID or ID's. It can be like that if you need more than 1 page to show Push Message $target_page_ids = array(2,3); 
           $target_page_ids = array(2); 
   
           if (in_array($page_id, $target_page_ids)) {
               $html = get_option('sendpulse_code', '');
               echo $html;
           }
       }
   
       // Enqueue the custom_sendpulse_display function on the appropriate action hooks
       add_action('wp_head', 'custom_sendpulse_display', 1000);
       add_action('login_enqueue_scripts', 'custom_sendpulse_display');
       ```
   
    -  This reply was modified 2 years, 11 months ago by [SendPulse](https://wordpress.org/support/users/sendpulse/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SendPulse Email Marketing Newsletter] Что хочет от меня плагин?](https://wordpress.org/support/topic/%d1%87%d1%82%d0%be-%d1%85%d0%be%d1%87%d0%b5%d1%82-%d0%be%d1%82-%d0%bc%d0%b5%d0%bd%d1%8f-%d0%bf%d0%bb%d0%b0%d0%b3%d0%b8%d0%bd/)
 *  Plugin Author [SendPulse](https://wordpress.org/support/users/sendpulse/)
 * (@sendpulse)
 * [3 years ago](https://wordpress.org/support/topic/%d1%87%d1%82%d0%be-%d1%85%d0%be%d1%87%d0%b5%d1%82-%d0%be%d1%82-%d0%bc%d0%b5%d0%bd%d1%8f-%d0%bf%d0%bb%d0%b0%d0%b3%d0%b8%d0%bd/#post-16901086)
 * Спасибо за обращение. Сообщения расширили и дополнили в последней версии.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SendPulse Email Marketing Newsletter] SessionStorage feature www-data permission](https://wordpress.org/support/topic/sessionstorage-feature-www-data-permission/)
 *  Plugin Author [SendPulse](https://wordpress.org/support/users/sendpulse/)
 * (@sendpulse)
 * [3 years ago](https://wordpress.org/support/topic/sessionstorage-feature-www-data-permission/#post-16895522)
 * Hi!
   The plugin turned on in session mode because it cannot write data to the 
   storage folder inside the plugin directory (sendpulse-email-marketing-newsletter/
   storage). Using FTP Client like FileZilla you can connect to server and set 775
   permissions on this folder.
 * [https://www.pipeten.com/support/scripting/changing-file-permissions-using-filezilla/](https://www.pipeten.com/support/scripting/changing-file-permissions-using-filezilla/)
   
   Any way Session mode work same as File mode. You can just close message if you
   do not want to change this.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SendPulse Email Marketing Newsletter] Что хочет от меня плагин?](https://wordpress.org/support/topic/%d1%87%d1%82%d0%be-%d1%85%d0%be%d1%87%d0%b5%d1%82-%d0%be%d1%82-%d0%bc%d0%b5%d0%bd%d1%8f-%d0%bf%d0%bb%d0%b0%d0%b3%d0%b8%d0%bd/)
 *  Plugin Author [SendPulse](https://wordpress.org/support/users/sendpulse/)
 * (@sendpulse)
 * [3 years, 1 month ago](https://wordpress.org/support/topic/%d1%87%d1%82%d0%be-%d1%85%d0%be%d1%87%d0%b5%d1%82-%d0%be%d1%82-%d0%bc%d0%b5%d0%bd%d1%8f-%d0%bf%d0%bb%d0%b0%d0%b3%d0%b8%d0%bd/#post-16870941)
 * Добрый день!
   Плагин просто сообщает что папка storage в директории плагина недоступна
   для записи и плагин работает в режиме сессии. Вы просто можете закрыть это предупреждение.
   На работу плагина это сообщение никак не влияет. Оба режима работают идентично.
   Если вы хотите использовать файловое хранилище нужно поставить 775 права на папку
   storage в папке плагина. Для этого лучше обратиться в тех поддержку вашего хостинга.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SendPulse Email Marketing Newsletter] New version cause critical errors](https://wordpress.org/support/topic/new-version-cause-critical-errors/)
 *  Plugin Author [SendPulse](https://wordpress.org/support/users/sendpulse/)
 * (@sendpulse)
 * [3 years, 10 months ago](https://wordpress.org/support/topic/new-version-cause-critical-errors/#post-16058215)
 * Hi!
    We already fix problem. Rename installed plugin dir via ftp. And reinstall
   new version via wordpress admin.
 * We apologize for the inconvenience caused to you.
    -  This reply was modified 3 years, 10 months ago by [SendPulse](https://wordpress.org/support/users/sendpulse/).
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[SendPulse Email Marketing Newsletter] Fatal error](https://wordpress.org/support/topic/fatal-error-2614/)
 *  Plugin Author [SendPulse](https://wordpress.org/support/users/sendpulse/)
 * (@sendpulse)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/fatal-error-2614/#post-9453338)
 * Добрый день!
 * Просьба предоставить инфо о конфигурации Вашего сайта.
    Возможно, Ваш хостер 
   просто выключил не поддерживаемые старые функции в PHP
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[SendPulse Email Marketing Newsletter] toooo slow](https://wordpress.org/support/topic/toooo-slow/)
 *  Plugin Author [SendPulse](https://wordpress.org/support/users/sendpulse/)
 * (@sendpulse)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/toooo-slow/#post-9453334)
 * Добрый день!
 * Просьба предоставить инфо о конфигурации Вашего сайта.
 * Плагин требует версию PHP 5.6 и выше, при этом рекомендуемая версия для Вордпресс–
   7.0. Полезные рекомендации можно найти на странице [Требования](https://ru.wordpress.org/about/requirements/)
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[SendPulse Email Marketing Newsletter] Не запустился плагин](https://wordpress.org/support/topic/%d0%bd%d0%b5-%d0%b7%d0%b0%d0%bf%d1%83%d1%81%d1%82%d0%b8%d0%bb%d1%81%d1%8f-%d0%bf%d0%bb%d0%b0%d0%b3%d0%b8%d0%bd/)
 *  Plugin Author [SendPulse](https://wordpress.org/support/users/sendpulse/)
 * (@sendpulse)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/%d0%bd%d0%b5-%d0%b7%d0%b0%d0%bf%d1%83%d1%81%d1%82%d0%b8%d0%bb%d1%81%d1%8f-%d0%bf%d0%bb%d0%b0%d0%b3%d0%b8%d0%bd/#post-9453327)
 * Добрый день!
 * Плагин требует версию PHP 5.6 и выше, при этом рекомендуемая версия для Вордпресс–
   7.0. Полезные рекомендации можно найти на странице [Требования](https://ru.wordpress.org/about/requirements/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SendPulse Email Marketing Newsletter] file missing](https://wordpress.org/support/topic/file-missing-2/)
 *  Plugin Author [SendPulse](https://wordpress.org/support/users/sendpulse/)
 * (@sendpulse)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/file-missing-2/#post-9453321)
 * Hello !
    We have updated the plugin. Please install the new version
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SendPulse Email Marketing Newsletter] Пропадает админка](https://wordpress.org/support/topic/%d0%bf%d1%80%d0%be%d0%bf%d0%b0%d0%b4%d0%b0%d0%b5%d1%82-%d0%b0%d0%b4%d0%bc%d0%b8%d0%bd%d0%ba%d0%b0/)
 *  Plugin Author [SendPulse](https://wordpress.org/support/users/sendpulse/)
 * (@sendpulse)
 * [9 years ago](https://wordpress.org/support/topic/%d0%bf%d1%80%d0%be%d0%bf%d0%b0%d0%b4%d0%b0%d0%b5%d1%82-%d0%b0%d0%b4%d0%bc%d0%b8%d0%bd%d0%ba%d0%b0/#post-9335889)
 * Добрый день.
    Мы выпустили новую версию- проверьте сейчас.

Viewing 11 replies - 1 through 11 (of 11 total)