Title: Martin Greenwood's Replies | WordPress.org

---

# Martin Greenwood

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

 *   [Profile](https://wordpress.org/support/users/beardeddev/)
 *   [Topics Started](https://wordpress.org/support/users/beardeddev/topics/)
 *   [Replies Created](https://wordpress.org/support/users/beardeddev/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/beardeddev/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/beardeddev/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/beardeddev/engagements/)
 *   [Favorites](https://wordpress.org/support/users/beardeddev/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: [[Page Builder by SiteOrigin] Data not saving](https://wordpress.org/support/topic/data-not-saving-5/)
 *  Thread Starter [Martin Greenwood](https://wordpress.org/support/users/beardeddev/)
 * (@beardeddev)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/data-not-saving-5/#post-15232595)
 * It’s part of a plug-in we built and ship with our theses. There are about 30 
   or so widgets and regardless of which one we use they all refuse to save data.
   The widgets save to the page but non of the content in any of the meta fields
   save.
 * We have to completely clear the browser cache of any site data and save again.
   Then when you update it doesn’t update the content until the cache and site data
   is cleared again.
 * This is only happening on 2.15.1 and greater
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Page Builder by SiteOrigin] Data not saving](https://wordpress.org/support/topic/data-not-saving-5/)
 *  Thread Starter [Martin Greenwood](https://wordpress.org/support/users/beardeddev/)
 * (@beardeddev)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/data-not-saving-5/#post-15228562)
 * Sorry about the late reply but sure here you go…
 * [https://we.tl/t-MHWxGDUPPr](https://we.tl/t-MHWxGDUPPr)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Page Builder by SiteOrigin] Data not saving](https://wordpress.org/support/topic/data-not-saving-5/)
 *  Thread Starter [Martin Greenwood](https://wordpress.org/support/users/beardeddev/)
 * (@beardeddev)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/data-not-saving-5/#post-15138803)
 * Hi,
 * Yes, it persists with any version above 2.15.0
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Missing a temporary folder](https://wordpress.org/support/topic/missing-a-temporary-folder-38/)
 *  [Martin Greenwood](https://wordpress.org/support/users/beardeddev/)
 * (@beardeddev)
 * [6 years ago](https://wordpress.org/support/topic/missing-a-temporary-folder-38/#post-12546372)
 * Have you tried this?
 * Log into your server or use your FTP.
 * Open public_html folder.
 * Now create a file with a name php.ini
 * Place the following code inside the file:
    upload_tmp_dir= your/path/to/public_html/
   temp/
 * Save the file.
 * Create a temp folder at the same location, i.e. inside public_html.
 * If the issue is not resolved, I strongly recommend you to contact your hosting
   provider as this is a server configuration problem
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Missing a temporary folder](https://wordpress.org/support/topic/missing-a-temporary-folder-38/)
 *  [Martin Greenwood](https://wordpress.org/support/users/beardeddev/)
 * (@beardeddev)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/missing-a-temporary-folder-38/#post-12473819)
 * It’s in the wp-config.php file. which is located in the root of your WordPress
   installation.
 * You will need to open it using a FTP Programme or through your file editor on
   your website hosing account.
 * If you don’t have access to this, contact your hosting company and ask them to
   check your WordPress folder permissions.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Missing a temporary folder](https://wordpress.org/support/topic/missing-a-temporary-folder-38/)
 *  [Martin Greenwood](https://wordpress.org/support/users/beardeddev/)
 * (@beardeddev)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/missing-a-temporary-folder-38/#post-12473758)
 * Have you go this in your wp-config file?
 * `define('WP_TEMP_DIR', dirname(__FILE__) . '/wp-content/temp/');`
 * If not, paste this code to the file just before the line that says ‘That’s all,
   stop editing! Happy blogging’
 * If this doesn’t, then check the directory permissions for your wp-content folder
   and make sure it is writeable by the server – it should be 755
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Get Image details from wp-uploads sub-folder.](https://wordpress.org/support/topic/get-image-details-from-wp-uploads-sub-folder/)
 *  [Martin Greenwood](https://wordpress.org/support/users/beardeddev/)
 * (@beardeddev)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/get-image-details-from-wp-uploads-sub-folder/#post-12473730)
 * I think you may need to change `$files = glob("images/*.*");` to point to the
   WP Content Directory. Try this:
 * `$files = glob(WP_CONTENT_DIR . "images/*.*");`
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How can I hide that](https://wordpress.org/support/topic/how-can-i-hide-that/)
 *  [Martin Greenwood](https://wordpress.org/support/users/beardeddev/)
 * (@beardeddev)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/how-can-i-hide-that/#post-12473690)
 * You could add the following to your CSS a quick fix:
 *     ```
       .container.main_title {
       display:nooe;
       }
       ```
   
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [metabox html not updating after publish](https://wordpress.org/support/topic/metabox-html-not-updating-after-publish/)
 *  [Martin Greenwood](https://wordpress.org/support/users/beardeddev/)
 * (@beardeddev)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/metabox-html-not-updating-after-publish/#post-12473673)
 * Try changing
 * `<input type="checkbox" name="cabtv_send_notification" value="true" <?php if (
   $checked) echo 'checked'; ?>></input>`
 * to this
 * `<input type="checkbox" name="cabtv_send_notification" value="true" <?php if (
   $checked):?>checked<?php endif; ?>; ?>></input>`
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Messed up installing WP and now can’t acces my site’s wp](https://wordpress.org/support/topic/messed-up-installing-wp-and-now-cant-acces-my-sites-wp/)
 *  [Martin Greenwood](https://wordpress.org/support/users/beardeddev/)
 * (@beardeddev)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/messed-up-installing-wp-and-now-cant-acces-my-sites-wp/#post-12473656)
 * You could log into the database via the PHPMYADMIN tool on hostgator, and edit
   the wp_users database to change the registered email to your new one. Failing
   that edit wp_options and change the contents of admin_email to your new one.
 * If you cannot do that delete the WordPress files and folders using a FTP, then
   remove the database using the control panel in hostgator and reinstall.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Centering of captions looks fine in console, but not on the blog](https://wordpress.org/support/topic/centering-of-captions-looks-fine-in-console-but-not-on-the-blog/)
 *  [Martin Greenwood](https://wordpress.org/support/users/beardeddev/)
 * (@beardeddev)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/centering-of-captions-looks-fine-in-console-but-not-on-the-blog/#post-12473593)
 * From what I can tell, the ones that are left aligned are galleries and not individual
   images
 * Try adding this to your CSS
 *     ```
       .wp-block-gallery .blocks-gallery-caption {
           text-align: center;
       }
       ```
   

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