Title: hogmark's Replies | WordPress.org

---

# hogmark

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Cirrus] get rid of the border box when hovering](https://wordpress.org/support/topic/get-rid-of-the-border-box-when-hovering/)
 *  [hogmark](https://wordpress.org/support/users/hogmark/)
 * (@hogmark)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/get-rid-of-the-border-box-when-hovering/#post-3196523)
 * You can remove it with CSS. Also, if you have plugins or functions that alter
   the colors of your tag cloud (in general) these changes will also affect WP-Cirrus.
   At least it did for me.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [How to change footer language in multilingual website?](https://wordpress.org/support/topic/how-to-change-footer-language-in-multilingual-website/)
 *  [hogmark](https://wordpress.org/support/users/hogmark/)
 * (@hogmark)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/how-to-change-footer-language-in-multilingual-website/#post-2719669)
 * This [page](http://shailan.com/3283/displaying-content-based-on-current-language-using-qtranslate/)
   is also very useful!
 * Tested with the following code that is basically the same:
 *     ```
       <?php if( qtrans_getLanguage() == 'en' ){ ?>
           <!-- English content here -->
       <?php }else { ?>
           <!-- Other language content here -->
       <?php } ?>
       ```
   
 * Works well. Cheers!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [How to change footer language in multilingual website?](https://wordpress.org/support/topic/how-to-change-footer-language-in-multilingual-website/)
 *  [hogmark](https://wordpress.org/support/users/hogmark/)
 * (@hogmark)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/how-to-change-footer-language-in-multilingual-website/#post-2719668)
 * Hi,
 * I don’t know PHP, but I wanted to reply with my solution to this issue. I’m running
   a [site with two languages](http://www.byskan.se/?lang=en) (English and Swedish).
   I reformatted the code by brasofilo, after reading [this post](http://www.stoimen.com/blog/2010/03/10/php-if-else-endif-statements/),
   and here’s my code in footer.php for showing site-generator content in the correct
   language:
 *     ```
       <div id="site-generator">
   
       	<?php $lingo = qtrans_getLanguage();?>
       	<?php if ($lingo == 'en') : ?>
       	<!-- English HTML here -->
       	<?php else : ?>
       	<!-- Other language HTML here -->
       	<?php endif ?>
   
       </div>
       ```
   
 * Hopefully this information will aid.

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