Title: WebAssembler's Replies | WordPress.org

---

# WebAssembler

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 33 total)

1 [2](https://wordpress.org/support/users/webassembler/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/webassembler/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/webassembler/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Registration Options for BuddyPress] 500 error on plugins ajax form](https://wordpress.org/support/topic/500-error-on-plugins-ajax-form/)
 *  Thread Starter [WebAssembler](https://wordpress.org/support/users/webassembler/)
 * (@webassembler)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/500-error-on-plugins-ajax-form/#post-15265256)
 * Thanks, I think that’s perfectly reasonable for a free plugin! Cheers for your
   proactive support.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Registration Options for BuddyPress] 500 error on plugins ajax form](https://wordpress.org/support/topic/500-error-on-plugins-ajax-form/)
 *  Thread Starter [WebAssembler](https://wordpress.org/support/users/webassembler/)
 * (@webassembler)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/500-error-on-plugins-ajax-form/#post-15263687)
 * Thanks for the update Michael, it’s not particularly easy to edit the plugin 
   code on the site I’m working on so I will probably wait for the next plugin release.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Adding a Featured Image Changes My Blog Images](https://wordpress.org/support/topic/adding-a-featured-image-changes-my-blog-images/)
 *  [WebAssembler](https://wordpress.org/support/users/webassembler/)
 * (@webassembler)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/adding-a-featured-image-changes-my-blog-images/#post-13292010)
 * The might be another way. You can either try adding `!important` to the code 
   above. I.e.
 *     ```
       body.single-post article.type-post div.entry-content img.alignleft.size-full,
       body.single-post article.type-post div.entry-content img.aligncenter.size-full,
       body.single-post article.type-post div.entry-content img.alignright.size-full {
           max-width: 400px !important;
       }
       ```
   
 * OR,
 * If that doesn’t work, in the WordPress Admin > Appearance > Theme Editor you 
   can enter the code above at the very bottom of the main stylesheet. This should
   be a file called something like style.css or main.css which will have a comment
   at the top: Theme Name:, Theme URL etc
 * Make sure the code above is on it’s own line at the bottom (is not in between
   any curly brackets { or }
 * I would also recommend copying the entire file to a text editor like Notepad 
   or TextEdit as a backup before pasting the code, then you’ll have a copy if anything
   goes wrong. If this doesn’t work then the theme developer will need to help. 
   Fingers crossed!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Adding a Featured Image Changes My Blog Images](https://wordpress.org/support/topic/adding-a-featured-image-changes-my-blog-images/)
 *  [WebAssembler](https://wordpress.org/support/users/webassembler/)
 * (@webassembler)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/adding-a-featured-image-changes-my-blog-images/#post-13287553)
 * Yes most likely. I am not official support by the way, just a developer trying
   to help in my spare time.
 * So you can try this for all the images:
 *     ```
       body.single-post article.type-post div.entry-content img.alignleft.size-full,
       body.single-post article.type-post div.entry-content img.aligncenter.size-full,
       body.single-post article.type-post div.entry-content img.alignright.size-full {
           max-width: 400px;
       }
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Is there a way updates to pages can be emailed to subscribers?](https://wordpress.org/support/topic/is-there-a-way-updates-to-pages-can-be-emailed-to-subscribers/)
 *  [WebAssembler](https://wordpress.org/support/users/webassembler/)
 * (@webassembler)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/is-there-a-way-updates-to-pages-can-be-emailed-to-subscribers/#post-13285863)
 * Ok, so your question was:
 * > I “update” the announcement subtab with the latest announcements. Is there 
   > a way to email these Updates to the announcements to my subscribers
 * So what I meant my trigger is, with WordPress you can attach custom code to certain
   events, such as saving a post and then trigger the code to run at that time.
 * These are know as hooks (actions and filters) [https://developer.wordpress.org/plugins/hooks/](https://developer.wordpress.org/plugins/hooks/)
 * So if you wanted to trigger an email to be sent, you could do something like…
 *     ```
       add_action( 'save_post', 'email_my_subscribers' );
       function email_my_subscribers($post_ID, $post, $update) {
         if( $update === true ) {
               $title = $post->post_title . ' was updated';
               // Add code below to email subscribers.
         }
       }
       ```
   
 * The code above is not tested, I just added it to get you going in the right direction.
   If you’re not confident with custom coding, perhaps you could hire a developer
   to do what you need. The code above could be placed in the functions.php file
   and you can test it in a development environment to get it working how you like.
 * I hope that answers your question.
    -  This reply was modified 5 years, 8 months ago by [WebAssembler](https://wordpress.org/support/users/webassembler/).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Adding a Featured Image Changes My Blog Images](https://wordpress.org/support/topic/adding-a-featured-image-changes-my-blog-images/)
 *  [WebAssembler](https://wordpress.org/support/users/webassembler/)
 * (@webassembler)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/adding-a-featured-image-changes-my-blog-images/#post-13285783)
 * Hi, thanks for that.
 * Can you add the following code to the CSS of your website.
 *     ```
       body.single-post article.type-post div.entry-content img.aligncenter.size-full {
           max-width: 400px;
       }
       ```
   
 * What this does is target any images that are aligned “center” and full-size inside
   a **single blog post**. The max width of 400px is what the other blog post image
   was set to so I used that value. Feel free to adjust the number up or down depending
   on what you like the look of.
 * You can add CSS anywhere that your theme allows you. Most likely this will be
   in the WordPress Customiser which is found in Appearance > Customise. There should
   be an Additional CSS box where you can paste the above code.
    -  This reply was modified 5 years, 8 months ago by [WebAssembler](https://wordpress.org/support/users/webassembler/).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Is there a way updates to pages can be emailed to subscribers?](https://wordpress.org/support/topic/is-there-a-way-updates-to-pages-can-be-emailed-to-subscribers/)
 *  [WebAssembler](https://wordpress.org/support/users/webassembler/)
 * (@webassembler)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/is-there-a-way-updates-to-pages-can-be-emailed-to-subscribers/#post-13276371)
 * I can’t say for sure, you’ll have to test in a development environment before
   pushing something out live. It was just a point in the right direction if you
   want to trigger things based on actions, such as saving posts.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Plugin development for custom post type](https://wordpress.org/support/topic/plugin-development-for-custom-post-type/)
 *  [WebAssembler](https://wordpress.org/support/users/webassembler/)
 * (@webassembler)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/plugin-development-for-custom-post-type/#post-13274819)
 * Ah I see. I’m not really sure what to suggest except have you activated your 
   custom plugin to see the post type shows in the admin bar?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Toolbar scroll lock?](https://wordpress.org/support/topic/toolbar-scroll-lock/)
 *  [WebAssembler](https://wordpress.org/support/users/webassembler/)
 * (@webassembler)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/toolbar-scroll-lock/#post-13273788)
 * Hello,
 * In the Gutenberg editor sidebar you can click the three vertical dots (top right)
   and select from the following display options:
 * Top Toolbar, Spotlight Mode, or Full Screen Mode.
 * Maybe try unselecting Top Toolbar and then the toolbars should appear on each
   block. Also you can use the Home and End buttons on your keyboard (Windows) or
   CMD+Up or CMD+down (Mac) to fast scroll to top or bottom.
    -  This reply was modified 5 years, 9 months ago by [WebAssembler](https://wordpress.org/support/users/webassembler/).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Is there a way updates to pages can be emailed to subscribers?](https://wordpress.org/support/topic/is-there-a-way-updates-to-pages-can-be-emailed-to-subscribers/)
 *  [WebAssembler](https://wordpress.org/support/users/webassembler/)
 * (@webassembler)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/is-there-a-way-updates-to-pages-can-be-emailed-to-subscribers/#post-13273762)
 * If you’re saving a post, you could hook into the save_post action an attach a
   PHP mailer function to it: [https://developer.wordpress.org/reference/hooks/save_post/](https://developer.wordpress.org/reference/hooks/save_post/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Adding a Featured Image Changes My Blog Images](https://wordpress.org/support/topic/adding-a-featured-image-changes-my-blog-images/)
 *  [WebAssembler](https://wordpress.org/support/users/webassembler/)
 * (@webassembler)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/adding-a-featured-image-changes-my-blog-images/#post-13273689)
 * Hello,
 * I think this very much depends on the theme you are using as the developer of
   the theme could have added code that increases the image size whenever a featured
   image is set. Do you have a public example of this (i.e a live URL) versus a 
   blog post for how it is supposed to look?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [website under Maintenance Mode without plugin](https://wordpress.org/support/topic/website-under-maintenance-mode-without-plugin/)
 *  [WebAssembler](https://wordpress.org/support/users/webassembler/)
 * (@webassembler)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/website-under-maintenance-mode-without-plugin/#post-13273656)
 * If you have access to the WP CLI you can use the following commands: [https://developer.wordpress.org/cli/commands/maintenance-mode/](https://developer.wordpress.org/cli/commands/maintenance-mode/)
 * Alternatively, you can put the following into functions.php
 *     ```
       // Activate WordPress Maintenance Mode
       function wp_maintenance_mode() {
           if (!current_user_can('edit_themes') || !is_user_logged_in()) {
               wp_die('<h1>Under Maintenance</h1><br />Website under planned maintenance. Please check back later.');
           }
       }
       add_action('get_header', 'wp_maintenance_mode');
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Interface of posts partly non-responsive](https://wordpress.org/support/topic/interface-of-posts-partly-non-responsive/)
 *  [WebAssembler](https://wordpress.org/support/users/webassembler/)
 * (@webassembler)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/interface-of-posts-partly-non-responsive/#post-13273605)
 * Hello,
 * What WP version are you using? I would suggest looking at Tools > Site Health
   if you have a more modern version of WP.
 * Is there any way you can access your theme wp-config.php? You can enable the 
   debug logging to check what is going wrong under the hood:[https://wordpress.org/support/article/debugging-in-wordpress/](https://wordpress.org/support/article/debugging-in-wordpress/)
 * Alternatively there is a plugin that helps show warnings and errors: [https://wordpress.org/plugins/query-monitor/](https://wordpress.org/plugins/query-monitor/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Image view & thumbnail, featured error](https://wordpress.org/support/topic/image-view-thumbnail-featured-error/)
 *  [WebAssembler](https://wordpress.org/support/users/webassembler/)
 * (@webassembler)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/image-view-thumbnail-featured-error/#post-13273554)
 * Check the images actually exist in that location on your server and are they 
   readable by WordPress (i.e. file permissions)? You could also check the Site 
   Health page in Tools page to see if anything is amiss.
 * Alternatively you could try to regenerate the thumbnails with a plugin like: 
   [https://en-gb.wordpress.org/plugins/regenerate-thumbnails/](https://en-gb.wordpress.org/plugins/regenerate-thumbnails/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Plugin development for custom post type](https://wordpress.org/support/topic/plugin-development-for-custom-post-type/)
 *  [WebAssembler](https://wordpress.org/support/users/webassembler/)
 * (@webassembler)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/plugin-development-for-custom-post-type/#post-13273528)
 * Are you putting this in your functions.php file? If you just include the add_action(‘
   init’,’newposttype_create’) with the function newposttype_create(), do you see
   the “mysliderservice” in the wordpress admin? If so, then your register post 
   type is working and it’s a problem with the form.

Viewing 15 replies - 1 through 15 (of 33 total)

1 [2](https://wordpress.org/support/users/webassembler/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/webassembler/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/webassembler/replies/page/2/?output_format=md)