Title: Coding Our Web's Replies | WordPress.org

---

# Coding Our Web

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

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

 Search replies:

## Forum Replies Created

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

1 [2](https://wordpress.org/support/users/codingourweb/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/codingourweb/replies/page/3/?output_format=md)…
[5](https://wordpress.org/support/users/codingourweb/replies/page/5/?output_format=md)
[6](https://wordpress.org/support/users/codingourweb/replies/page/6/?output_format=md)
[7](https://wordpress.org/support/users/codingourweb/replies/page/7/?output_format=md)
[→](https://wordpress.org/support/users/codingourweb/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Boxer] Box move the other boxes](https://wordpress.org/support/topic/box-move-the-other-boxes/)
 *  Plugin Author [Coding Our Web](https://wordpress.org/support/users/codingourweb/)
 * (@codingourweb)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/box-move-the-other-boxes/#post-3457180)
 * Yes, this is the default behavior. If you remove the height attribute of the 
   fourth content block, you’ll be fine
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Boxer] Centering the image](https://wordpress.org/support/topic/centering-the-image/)
 *  Plugin Author [Coding Our Web](https://wordpress.org/support/users/codingourweb/)
 * (@codingourweb)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/centering-the-image/#post-3446475)
 * If you send me an email, I’ll mail you an update. Maybe that fixes the issue 
   for you…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Boxer] Centering the image](https://wordpress.org/support/topic/centering-the-image/)
 *  Plugin Author [Coding Our Web](https://wordpress.org/support/users/codingourweb/)
 * (@codingourweb)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/centering-the-image/#post-3446472)
 * Hi Kasper,
 * The images should automatically be centered. If they’re not, I’m guessing your
   theme is applying some margin of its own to images, thus overruling Boxers’ margin…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Boxer] in line editing possible for content?](https://wordpress.org/support/topic/in-line-editing-possible-for-content/)
 *  Plugin Author [Coding Our Web](https://wordpress.org/support/users/codingourweb/)
 * (@codingourweb)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/in-line-editing-possible-for-content/#post-3427846)
 * Hi,
 * You could alter the template which is used for the single posts (stories) and
   add something like:
 *     ```
       <?php $custom_fields = get_post_custom(); ?>
       <div class="author_profile">
           <a href="#" alt="" title="<?php echo $custom_fields["author_name"][0]; ?>"><?php echo $custom_fields["author_name"][0]; ?></a>
           <p><?php echo $custom_fields["author_bio"][0]; ?></p>
           <figure>
               <img src="<?php echo $custom_fields["author_photo"][0]; ?>" alt="<?php echo $custom_fields["author_name"][0]; ?>">
           </figure>
       </div>
       ```
   
 * Keep in mind this is only pseudo code and it contains no styling at all. That
   would be up to you. Also you would have to manually specify the 3 custom fields
   on each and every story.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Boxer] Error!](https://wordpress.org/support/topic/error-109/)
 *  Plugin Author [Coding Our Web](https://wordpress.org/support/users/codingourweb/)
 * (@codingourweb)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/error-109/#post-3304240)
 * Mailed you in the other thread!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Boxer] IE & Firefox Issues](https://wordpress.org/support/topic/ie-firefox-issues-1/)
 *  Plugin Author [Coding Our Web](https://wordpress.org/support/users/codingourweb/)
 * (@codingourweb)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/ie-firefox-issues-1/#post-3421298)
 * [@pikamatt](https://wordpress.org/support/users/pikamatt/) This is really strange!
   Do you think it is in any way possible I could have a look at your site? I want
   to help you but I do need temporary admin access. If you agree, send the creds
   to this address..
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Boxer] in line editing possible for content?](https://wordpress.org/support/topic/in-line-editing-possible-for-content/)
 *  Plugin Author [Coding Our Web](https://wordpress.org/support/users/codingourweb/)
 * (@codingourweb)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/in-line-editing-possible-for-content/#post-3427833)
 * Hi Donna,
 * If I understand you correctly, what you want is very well possible with Boxer.
   Just create a separate content block for every author. Such a content block consists
   of a title (=headline), content (=bio) and an image (=photo).After that it is
   just a matter of adding a shortcode to the individual posts. Something like
 * `[wpbp_blocks id="1234"]`
 * You should never have to copy HTML code between posts!!!
    Let me know if this
   is in any way clear 😉
 * Cheers,
    Mark
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Boxer] Google Crawl Errors](https://wordpress.org/support/topic/google-crawl-errors-1/)
 *  Plugin Author [Coding Our Web](https://wordpress.org/support/users/codingourweb/)
 * (@codingourweb)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/google-crawl-errors-1/#post-3391677)
 * I also use Google Webmaster Tools and I have no crawl errors whatsoever. Can 
   you post any details regarding the errors?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Boxer] Issues upgrading from 1.3 to 2.2.0](https://wordpress.org/support/topic/issues-upgrading-from-13-to-220/)
 *  Plugin Author [Coding Our Web](https://wordpress.org/support/users/codingourweb/)
 * (@codingourweb)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/issues-upgrading-from-13-to-220/#post-3381778)
 * Strange! Glad it’s working now!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Boxer] Issues upgrading from 1.3 to 2.2.0](https://wordpress.org/support/topic/issues-upgrading-from-13-to-220/)
 *  Plugin Author [Coding Our Web](https://wordpress.org/support/users/codingourweb/)
 * (@codingourweb)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/issues-upgrading-from-13-to-220/#post-3381705)
 * There should be an **Upgrade From Older Version** option in the _Settings _section
   of _WP Boxer_. Just make sure you create a backup of your WP database first though,
   because this action cannot be undone!!!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Boxer] Posts](https://wordpress.org/support/topic/posts-28/)
 *  Plugin Author [Coding Our Web](https://wordpress.org/support/users/codingourweb/)
 * (@codingourweb)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/posts-28/#post-3282106)
 * Oops! Sorry for the delay. Holidays and all…
 * Were those all existing posts? Open one up, save it and try again. Does it show
   up then?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Boxer] Short code not working](https://wordpress.org/support/topic/short-code-not-working-1/)
 *  Plugin Author [Coding Our Web](https://wordpress.org/support/users/codingourweb/)
 * (@codingourweb)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/short-code-not-working-1/#post-3344170)
 * Yes, please try `[wpbp_blocks set="default"]` or `[boxer set="default"]`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Boxer] Error!](https://wordpress.org/support/topic/error-109/)
 *  Plugin Author [Coding Our Web](https://wordpress.org/support/users/codingourweb/)
 * (@codingourweb)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/error-109/#post-3304216)
 * We figured it out
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Boxer] Can a video be used as a box image?](https://wordpress.org/support/topic/can-a-video-be-used-as-a-box-image/)
 *  Plugin Author [Coding Our Web](https://wordpress.org/support/users/codingourweb/)
 * (@codingourweb)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/can-a-video-be-used-as-a-box-image/#post-3296365)
 * As you can see [here](http://wpboxer.codingourweb.com/examples/) it can be done.
   Just place the video inside the content blocks’ content.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Boxer] how to load google fonts???](https://wordpress.org/support/topic/how-to-load-google-fonts/)
 *  Plugin Author [Coding Our Web](https://wordpress.org/support/users/codingourweb/)
 * (@codingourweb)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/how-to-load-google-fonts/#post-3183875)
 * Under **Settings | WP Boxer**

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

1 [2](https://wordpress.org/support/users/codingourweb/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/codingourweb/replies/page/3/?output_format=md)…
[5](https://wordpress.org/support/users/codingourweb/replies/page/5/?output_format=md)
[6](https://wordpress.org/support/users/codingourweb/replies/page/6/?output_format=md)
[7](https://wordpress.org/support/users/codingourweb/replies/page/7/?output_format=md)
[→](https://wordpress.org/support/users/codingourweb/replies/page/2/?output_format=md)