Title: webmasterpcsb's Replies | WordPress.org

---

# webmasterpcsb

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Customize WordPress Emails and Alerts - Better Notifications for WP] Permalink display as page ID, not post name](https://wordpress.org/support/topic/permalink-display-as-page-id-not-post-name/)
 *  Thread Starter [webmasterpcsb](https://wordpress.org/support/users/webmasterpcsb/)
 * (@webmasterpcsb)
 * [8 years, 5 months ago](https://wordpress.org/support/topic/permalink-display-as-page-id-not-post-name/#post-9858739)
 * Try this link: [Permalinks](https://www.dropbox.com/s/0z353n7ct7p4aew/Permalinks.jpg?dl=0)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Customize WordPress Emails and Alerts - Better Notifications for WP] Permalink display as page ID, not post name](https://wordpress.org/support/topic/permalink-display-as-page-id-not-post-name/)
 *  Thread Starter [webmasterpcsb](https://wordpress.org/support/users/webmasterpcsb/)
 * (@webmasterpcsb)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/permalink-display-as-page-id-not-post-name/#post-9851316)
 * Here’s the screenshot:
    [permalink settings](http://wp9000intra.polk-fl.net/pd/wp-content/uploads/sites/13/2018/01/Permalinks.jpg)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Customize WordPress Emails and Alerts - Better Notifications for WP] Permalink display as page ID, not post name](https://wordpress.org/support/topic/permalink-display-as-page-id-not-post-name/)
 *  Thread Starter [webmasterpcsb](https://wordpress.org/support/users/webmasterpcsb/)
 * (@webmasterpcsb)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/permalink-display-as-page-id-not-post-name/#post-9848181)
 * After further investigation, it would appear that it might be a WordPress problem
   relaying the post name from the get_permalink() function. This would be the type
   of configuration we are trying to obtain:
 *     ```
       $permalink1 = get_permalink( $post->ID );
       $permalink1 = substr($permalink1, 0, strpos($permalink1, "?")) . $post->post_name;
       $message = str_replace( '[permalink]', $permalink1,  $message );
       ```
   
 * By editing the /includes/engine/class-bnfw-engine.php with the snippet above,
   the format we were trying to achieve works.
 * This is not the best way to do this. Do you have any recommendations?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Customize WordPress Emails and Alerts - Better Notifications for WP] Permalink display as page ID, not post name](https://wordpress.org/support/topic/permalink-display-as-page-id-not-post-name/)
 *  Thread Starter [webmasterpcsb](https://wordpress.org/support/users/webmasterpcsb/)
 * (@webmasterpcsb)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/permalink-display-as-page-id-not-post-name/#post-9848056)
 * I not sure if it would apply, but we are using a multi-site configuration for
   WordPress. We use a nginx web server and this is our current configuration:
 *     ```
       server {
         listen 80;
         server_name subdomain.example.com www.subdomain.example.com;
   
         root /var/www/wordpress/public;
         index index.php;
   
         access_log /var/log/nginx/access.log;
         error_log /var/log/nginx/error.log;
   
         if (!-e $request_filename) {
           rewrite /wp-admin$ $scheme://$host$uri/ permanent;
           rewrite ^(/[^/]+)?(/wp-.*) $2 last;
           rewrite ^(/[^/]+)?(/.*\.php) $2 last;
         }
   
         location / {
           try_files $uri $uri/ /index.php?$args;
         }
   
         location ~ \.php$ {
           include snippets/fastcgi-php.conf;
           fastcgi_pass unix:/run/php/php7.0-fpm.sock;
         }
       }
       ```
   
 * Is there any information that I can provide to verify this issue?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Customize WordPress Emails and Alerts - Better Notifications for WP] Permalink display as page ID, not post name](https://wordpress.org/support/topic/permalink-display-as-page-id-not-post-name/)
 *  Thread Starter [webmasterpcsb](https://wordpress.org/support/users/webmasterpcsb/)
 * (@webmasterpcsb)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/permalink-display-as-page-id-not-post-name/#post-9845344)
 * I will look into this. I’m not sure what it could be either.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Customize WordPress Emails and Alerts - Better Notifications for WP] WP new release notification](https://wordpress.org/support/topic/wp-new-release-notification/)
 *  [webmasterpcsb](https://wordpress.org/support/users/webmasterpcsb/)
 * (@webmasterpcsb)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/wp-new-release-notification/#post-9053605)
 * I too would like to be notified of new releases but cannot figure out how/where
   to make that happen. I dont really understand the previous resolution.

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