Title: [Theme: Museum Core] Comments
Last modified: August 20, 2016

---

# [Theme: Museum Core] Comments

 *  Resolved [anemoone](https://wordpress.org/support/users/anemoone/)
 * (@anemoone)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/theme-museum-core-comments/)
 * Hello.
 * I’ve installed the theme. I’ve noticed two problems.
 * Comments lack commentators’ names nad dates.
 * The other problem was in the customizable footer (via Theme Options). The links
   did’t link properly, so I had to unlink some words.
 * [http://wordpress.org/extend/themes/museum-core/](http://wordpress.org/extend/themes/museum-core/)

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

1 [2](https://wordpress.org/support/topic/theme-museum-core-comments/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/theme-museum-core-comments/page/2/?output_format=md)

 *  [Michael](https://wordpress.org/support/users/alchymyth/)
 * (@alchymyth)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/theme-museum-core-comments/#post-2687642)
 * in functions.php of the theme, nearly half-way down:
    add `echo` to this line(
   shown after the edit):
 *     ```
       <?php echo sprintf(__('On %1$s at %2$s %3$s said:','museum-core'), get_comment_date(), get_comment_time(), get_comment_author_link()) ?>
       ```
   
 *  Thread Starter [anemoone](https://wordpress.org/support/users/anemoone/)
 * (@anemoone)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/theme-museum-core-comments/#post-2687700)
 * Thank you.
 * I’ve added the word. Now comments are OK.
 *  Theme Author [Chris Reynolds](https://wordpress.org/support/users/jazzs3quence/)
 * (@jazzs3quence)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/theme-museum-core-comments/#post-2687889)
 * Sorry about that guys. I didn’t have emails set up on this tag yet. As soon as
   I get SVN access to update the theme, I’ll take care of this. I _think_ I found
   and fixed the customizable footer, but I’ll take a look at that, too. For now,
   the latest version is up on GitHub. I’ve added these as tickets in the issue 
   tracker there: [https://github.com/jazzsequence/AP-Museum_Core](https://github.com/jazzsequence/AP-Museum_Core)
 *  Theme Author [Chris Reynolds](https://wordpress.org/support/users/jazzs3quence/)
 * (@jazzs3quence)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/theme-museum-core-comments/#post-2687893)
 * [@anemoone](https://wordpress.org/support/users/anemoone/) The issue with the
   footer links has been found and will be fixed in the next version. For now, if
   you want to fix it, open footer.php and find this:
 *     ```
       <div class="credit">
       				<?php if ( $options['footer'] != '' ) {
       				echo $options['footer'];
       				} else {
       					echo $defaults['footer'];
       				} ?>
       			</div>
       ```
   
 * and replace that with this
 *     ```
       <div class="credit">
       				<?php if ( $options['footer'] != '' ) {
       				echo stripcslashes($options['footer']);
       				} else {
       					echo $defaults['footer'];
       				} ?>
       			</div>
       ```
   
 * That _should_ take care of it — there’s some other stuff I’m fixing in the theme-
   options.php but that should resolve the root issue (assuming your links were 
   doing what mine were, which was trying to link to `http://mydomain.com/"http://
   mynewlink.com/"`)
 *  Thread Starter [anemoone](https://wordpress.org/support/users/anemoone/)
 * (@anemoone)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/theme-museum-core-comments/#post-2687901)
 * [@chris](https://wordpress.org/support/users/chris/) Reynolds
 * > assuming your links were doing what mine were, which was trying to link to 
   > [http://mydomain.com/”http://mynewlink.com/&#8221](http://mydomain.com/”http://mynewlink.com/&#8221);
 * Yes, that’s the same error.
 * I’ve changed that fragment of code.
    Now it’s fine. Thanks.
 *  Theme Author [Chris Reynolds](https://wordpress.org/support/users/jazzs3quence/)
 * (@jazzs3quence)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/theme-museum-core-comments/#post-2687902)
 * This will be fixed in the next version which I’ve uploaded today.
 * Edit: …and it’s now live [http://wordpress.org/extend/themes/museum-core/](http://wordpress.org/extend/themes/museum-core/)
 *  Thread Starter [anemoone](https://wordpress.org/support/users/anemoone/)
 * (@anemoone)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/theme-museum-core-comments/#post-2687906)
 * When I updated to the newest version, this warning appeared on my page:
 * “Warning: sprintf() [function.sprintf]: Too few arguments in /home/anemoone/public_html/
   wp-content/themes/museum-core/functions.php on line 335”
 * So I replaced functions.php file with the the same file from the earlier version
   of the theme, found in Theme SVN.
 *  Theme Author [Chris Reynolds](https://wordpress.org/support/users/jazzs3quence/)
 * (@jazzs3quence)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/theme-museum-core-comments/#post-2687907)
 * Looking now.
 *  Theme Author [Chris Reynolds](https://wordpress.org/support/users/jazzs3quence/)
 * (@jazzs3quence)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/theme-museum-core-comments/#post-2687908)
 * found it.
 * Line 335 in functions.php.
 * Was:
 * `'footer' => sprintf( __( '%1$s %2$s %3$s . ', 'museum-core' ), '©', date('Y'),
   get_bloginfo('title') ) . sprintf( __( 'Museum Core by %1$sMuseum Themes%2$s 
   is proudly powered by %4$sWordPress%2$s.', 'museum-core' ), '<a href="http://
   museumthemes.com/" target="_blank" title="Museum Themes">', '</a>', '<a href="
   http://wordpress.org" target="_blank">' ),`
 * Should be:
 * `'footer' => sprintf( __( '%1$s %2$s %3$s . ', 'museum-core' ), '©', date('Y'),
   get_bloginfo('title') ) . sprintf( __( 'Museum Core by %1$sMuseum Themes%2$s 
   is proudly powered by %3$sWordPress%2$s.', 'museum-core' ), '<a href="http://
   museumthemes.com/" target="_blank" title="Museum Themes">', '</a>', '<a href="
   http://wordpress.org" target="_blank">' ),`
 *  Theme Author [Chris Reynolds](https://wordpress.org/support/users/jazzs3quence/)
 * (@jazzs3quence)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/theme-museum-core-comments/#post-2687909)
 * fixed in 1.0.7.2
 *  Thread Starter [anemoone](https://wordpress.org/support/users/anemoone/)
 * (@anemoone)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/theme-museum-core-comments/#post-2687910)
 * Installed that version. No problems.
 *  Theme Author [Chris Reynolds](https://wordpress.org/support/users/jazzs3quence/)
 * (@jazzs3quence)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/theme-museum-core-comments/#post-2687912)
 * excellent. thanks for the feedback. Helped me clean out the bugs. 🙂
 *  Thread Starter [anemoone](https://wordpress.org/support/users/anemoone/)
 * (@anemoone)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/theme-museum-core-comments/#post-2687913)
 * There’s one more thing. Why pignback from my site didn’t appear below the text?
 * Don’t know if it is the theme’s fault.
 * [http://kratery.com/2012/04/16/smolensk-impresje/](http://kratery.com/2012/04/16/smolensk-impresje/)
 *  Theme Author [Chris Reynolds](https://wordpress.org/support/users/jazzs3quence/)
 * (@jazzs3quence)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/theme-museum-core-comments/#post-2687914)
 * Hm. Not sure. I’ll look into it.
 * Want to help out with a Polish language file for the theme?
 *  Thread Starter [anemoone](https://wordpress.org/support/users/anemoone/)
 * (@anemoone)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/theme-museum-core-comments/#post-2687915)
 * > Want to help out with a Polish language file for the theme?
 * Of course I could help, but have little experience. I translated for myself most
   of the words in two themes I used before (in my editor). Didn’t prepare any files.

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

1 [2](https://wordpress.org/support/topic/theme-museum-core-comments/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/theme-museum-core-comments/page/2/?output_format=md)

The topic ‘[Theme: Museum Core] Comments’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/museum-core/2.1.6/screenshot.png)
 * Museum Core
 * [Support Threads](https://wordpress.org/support/theme/museum-core/)
 * [Active Topics](https://wordpress.org/support/theme/museum-core/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/museum-core/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/museum-core/reviews/)

 * 19 replies
 * 3 participants
 * Last reply from: [Chris Reynolds](https://wordpress.org/support/users/jazzs3quence/)
 * Last activity: [14 years, 2 months ago](https://wordpress.org/support/topic/theme-museum-core-comments/page/2/#post-2687919)
 * Status: resolved