Title: cpkthirdoakpro's Replies | WordPress.org

---

# cpkthirdoakpro

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Site Health after installing Ver 6.6](https://wordpress.org/support/topic/site-health-after-installing-ver-6-6/)
 *  [cpkthirdoakpro](https://wordpress.org/support/users/cpkthirdoakpro/)
 * (@cpkthirdoakpro)
 * [1 year, 11 months ago](https://wordpress.org/support/topic/site-health-after-installing-ver-6-6/#post-18006593)
 * FYI, this bug has now been patched in WP v6.6.2!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Site Health after installing Ver 6.6](https://wordpress.org/support/topic/site-health-after-installing-ver-6-6/)
 *  [cpkthirdoakpro](https://wordpress.org/support/users/cpkthirdoakpro/)
 * (@cpkthirdoakpro)
 * [2 years ago](https://wordpress.org/support/topic/site-health-after-installing-ver-6-6/#post-17922815)
 * Hi everyone, I was noticing this issue to and realized it is a bug in v6.6 and
   v6.6.1. All you need to do is add “fonts” directory (folder) back to the “wp-
   content/uploads/” folder and it will work again. I guess they deleted it in these
   versions and forgot to reprogram this section. If you don’t want to go in the
   file manager for every site you have, I programmed a quick fix plugin, you can
   download it here: [https://thirdoakproductions.com/wp-content/uploads/2024/07/wordpress-directories-and-sizes-v6-6-patch.zip](https://thirdoakproductions.com/wp-content/uploads/2024/07/wordpress-directories-and-sizes-v6-6-patch.zip)–
   It will patch on activation and you can immediately uninstall and delete this
   plugin once it’s patched (and it will still work). I have used it on many sites
   and it works great, it will only activate if you have WP v6.6. or higher. Once
   they patch this, this plugin will be useless fyi. Hope that helps!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Code Manager] Enhancement Request](https://wordpress.org/support/topic/enhancement-request-18/)
 *  [cpkthirdoakpro](https://wordpress.org/support/users/cpkthirdoakpro/)
 * (@cpkthirdoakpro)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/enhancement-request-18/#post-14169737)
 * Hi there, check out the solution [I posted here](https://wordpress.org/support/topic/woul-it-be-by-any-chance-possible-to-have-a-code-mixing-html-php-and-sql/),
   is that what you’re looking for?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Code Manager] Woul it be by any chance possible to have a code mixing html/Php and SQL](https://wordpress.org/support/topic/woul-it-be-by-any-chance-possible-to-have-a-code-mixing-html-php-and-sql/)
 *  [cpkthirdoakpro](https://wordpress.org/support/users/cpkthirdoakpro/)
 * (@cpkthirdoakpro)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/woul-it-be-by-any-chance-possible-to-have-a-code-mixing-html-php-and-sql/#post-14169712)
 * Hi Sacha, I didn’t program this plugin but yes you can absolutely do this. You
   have to write the code in PHP. Create PHP code like this, make sure to replace“
   your_table” with a table that exists in your DB and “id” with the column name
   in your table:
 *     ```
       <?php
           global $wpdb; //Mandatory
           $row = $wpdb->get_row("SELECT * FROM your_table WHERE id = '1'", ARRAY_A);
       ?>
       <!-- Now you can write HTML, and inject the PHP variables in it -->
   
       <!-- Will display name, if you have a column in your table labeled "name" -->
       <h2>Name: <?= $row['name'] ?></h2> 
   
       <!-- Will display email, if you have a column in your table labeled "email" -->
       <h2>Email: <?= $row['email'] ?></h2>
       ```
   
 * Also, be sure to wrap your_table and id with grave accent symbols in your SQL.
   Hope that helps!
    -  This reply was modified 5 years, 5 months ago by [cpkthirdoakpro](https://wordpress.org/support/users/cpkthirdoakpro/).
    -  This reply was modified 5 years, 5 months ago by [cpkthirdoakpro](https://wordpress.org/support/users/cpkthirdoakpro/).

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