Title: Jesper Johansen (jayjdk)'s Replies | WordPress.org

---

# Jesper Johansen (jayjdk)

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Cakifo] Mobile version](https://wordpress.org/support/topic/mobile-version-70/)
 *  Theme Author [Jesper Johansen (jayjdk)](https://wordpress.org/support/users/jayjdk/)
 * (@jayjdk)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/mobile-version-70/#post-7008483)
 * Hello,
 * You are right, it’s the plugin slider that is causing the mobile issues.
 * It’s created using tables which makes it very hard to style differently on mobile
   devices.
 * – Jesper
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Cakifo] Comment submit button gone?](https://wordpress.org/support/topic/comment-submit-button-gone/)
 *  Theme Author [Jesper Johansen (jayjdk)](https://wordpress.org/support/users/jayjdk/)
 * (@jayjdk)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/comment-submit-button-gone/#post-6082223)
 * Try this:
 *     ```
       add_action( 'after_setup_theme', 'my_child_setup', 11 ); // maybe change 11 to a higher number
   
       function my_child_setup() {
          remove_filter( 'comment_form_defaults', 'hybrid_comment_form_args' );
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Cakifo] Comment submit button gone?](https://wordpress.org/support/topic/comment-submit-button-gone/)
 *  Theme Author [Jesper Johansen (jayjdk)](https://wordpress.org/support/users/jayjdk/)
 * (@jayjdk)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/comment-submit-button-gone/#post-6082205)
 * Hello,
 * I’m sorry for the long answer.
 * Unfortunately WordPress changed something with the comment form in the latest
   version.
 * It was fixed in WordPress two weeks ago: [https://core.trac.wordpress.org/ticket/32312](https://core.trac.wordpress.org/ticket/32312)
 * I don’t know when the next WordPress release will be so you can try this code
   in your child theme until then:
    `remove_filter( 'comment_form_defaults', 'hybrid_comment_form_args');`
 * I’ll make sure to release an update to Cakifo as soon as possible (hopefully 
   within the next month)
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Grid Columns Media Button] Handy shortcut](https://wordpress.org/support/topic/handy-shortcut/)
 *  Plugin Author [Jesper Johansen (jayjdk)](https://wordpress.org/support/users/jayjdk/)
 * (@jayjdk)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/handy-shortcut/#post-7932146)
 * Hello dloewen4,
 * Thanks for the review and the suggestion! I’ll keep that in mind that for the
   next version of the plugin 🙂
 * – Jesper
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Cakifo] Logo not showing in mobile](https://wordpress.org/support/topic/logo-not-showing-in-mobile/)
 *  Theme Author [Jesper Johansen (jayjdk)](https://wordpress.org/support/users/jayjdk/)
 * (@jayjdk)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/logo-not-showing-in-mobile/#post-5824425)
 * Hello wailamliu,
 * What image format did you try? Every format supported by WordPress should work.
   The default logo is in png format
 * – Jesper
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Youtube Profile Field] Plugin Not Working](https://wordpress.org/support/topic/plugin-not-working-252/)
 *  Plugin Author [Jesper Johansen (jayjdk)](https://wordpress.org/support/users/jayjdk/)
 * (@jayjdk)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/plugin-not-working-252/#post-5720502)
 * Hello,
 * Could you please give some more information?
 * Have you entered your Youtube username or Channel ID on your profile page? If
   yes, could you post it here (or send it to me privately on [http://jayj.dk/contact/](http://jayj.dk/contact/))
   so I can test it?
 * If that still not works, you do you have link to your site?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Cakifo] "Secondary" menu on Tablet](https://wordpress.org/support/topic/secondary-menu-on-tablet/)
 *  Theme Author [Jesper Johansen (jayjdk)](https://wordpress.org/support/users/jayjdk/)
 * (@jayjdk)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/secondary-menu-on-tablet/#post-5713206)
 * Hello Technically Blonde,
 * Bojan’s solution is correct.
 * Another solution is to use this in the child theme functions.php as you did with
   the Recent Posts heading.
 *     ```
       /**
        * Changes the 'Secondary Menu' name
        *
        * @link http://codex.wordpress.org/Plugin_API/Filter_Reference/gettext
        */
       function tb_cakifo_change_secondary_menu_title( $translated_text, $untranslated_text, $domain ) {
   
           if ( $untranslated_text === 'Secondary Menu' ) {
               return 'Main menu';
           }
   
           return $translated_text;
       }
   
       add_filter('gettext', 'tb_cakifo_change_secondary_menu_title', 20, 3);
       ```
   
 * In Cakifo 1.7, it will use the name of the menu instead of ‘Secondary’ menu 🙂
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Cakifo] Front Page # articles](https://wordpress.org/support/topic/front-page-articles/)
 *  Theme Author [Jesper Johansen (jayjdk)](https://wordpress.org/support/users/jayjdk/)
 * (@jayjdk)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/front-page-articles/#post-5574388)
 * Hello,
 * Sorry for the late reply.
 * I’m not sure I understand you but I think I does. Try this in your child theme
   functions.php:
 *     ```
       add_filter( 'cakifo_recent_posts_query', 'tb_cakifo_child_recent_posts_query' );
   
       function tb_cakifo_child_recent_posts_query( $query ) {
          $query['posts_per_page'] = 8; // number of posts
   
          return $query;
       }
       ```
   
 * You might have to change some CSS as well.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Cycnus] Display Pages?](https://wordpress.org/support/topic/display-pages-1/)
 *  Theme Author [Jesper Johansen (jayjdk)](https://wordpress.org/support/users/jayjdk/)
 * (@jayjdk)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/display-pages-1/#post-5611546)
 * Hello,
 * Sorry for the late reply.
 * You can add a menu on the `Appearance > Menus` page
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Youtube Profile Field] Awesome plugin](https://wordpress.org/support/topic/awesome-plugin-1004/)
 *  Plugin Author [Jesper Johansen (jayjdk)](https://wordpress.org/support/users/jayjdk/)
 * (@jayjdk)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/awesome-plugin-1004/#post-7913535)
 * Thanks 🙂
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Cakifo] Changing Text "Recent Posts" on front page](https://wordpress.org/support/topic/changing-text-recent-posts-on-front-page/)
 *  Theme Author [Jesper Johansen (jayjdk)](https://wordpress.org/support/users/jayjdk/)
 * (@jayjdk)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/changing-text-recent-posts-on-front-page/#post-5572051)
 * Hello,
 * Glad you found a solution 🙂
 * Another solution is to create a child theme ([https://github.com/jayj/Cakifo/wiki/Child-themes](https://github.com/jayj/Cakifo/wiki/Child-themes))
   and use this in the child theme functions.php:
 *     ```
       /**
        * Changes the 'Recent Posts' heading.
        *
        * @link http://codex.wordpress.org/Plugin_API/Filter_Reference/gettext
        */
       function tb_cakifo_change_recent_heading( $translated_text, $untranslated_text, $domain ) {
   
           if ( $untranslated_text === 'Recent Posts' ) {
               return 'Life at Basill Manor';
           }
   
           return $translated_text;
       }
   
       add_filter('gettext', 'tb_cakifo_change_recent_heading', 20, 3);
       ```
   
 * That way you won’t lose your changes if you update Cakifo.
 * – Jesper
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Cakifo] Header colour](https://wordpress.org/support/topic/header-colour-3/)
 *  Theme Author [Jesper Johansen (jayjdk)](https://wordpress.org/support/users/jayjdk/)
 * (@jayjdk)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/header-colour-3/#post-5503337)
 * Hello Thea,
 * Try this:
 *     ```
       .site-header > a:hover {
          color: #HEX;
       }
       ```
   
 * Hope that helps you. If not, feel free to write again.
 * – Jesper
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Cycnus] Hooks from Theme Hybrid](https://wordpress.org/support/topic/hooks-from-theme-hybrid/)
 *  Theme Author [Jesper Johansen (jayjdk)](https://wordpress.org/support/users/jayjdk/)
 * (@jayjdk)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/hooks-from-theme-hybrid/#post-5109414)
 * Hello,
 * It’s a child theme of Socially Awkward ([http://wordpress.org/themes/socially-awkward](http://wordpress.org/themes/socially-awkward))
   which doesn’t use any Atomic hooks. So no, sorry.
 * – Jesper
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Cakifo] ho to change "recent posts"?](https://wordpress.org/support/topic/ho-to-change-recent-posts-1/)
 *  Theme Author [Jesper Johansen (jayjdk)](https://wordpress.org/support/users/jayjdk/)
 * (@jayjdk)
 * [12 years ago](https://wordpress.org/support/topic/ho-to-change-recent-posts-1/#post-4792246)
 * Hello Cara,
 * First you should create a child theme: [https://github.com/jayj/Cakifo/wiki/Child-themes](https://github.com/jayj/Cakifo/wiki/Child-themes)
 * —
 * 1. Translation.
 * You can create a german translation to translate the theme. To be able to translate,
   do you need a `.po` file editor. I recommend [Poedit](http://www.poedit.net/)(
   both for PC & Mac)
 * After you’ve downloaded the program, go to the Cakifo theme folder and find the`
   languages` folder. In that is there a file called `default.pot`. Open that and
   save in your **child theme** languages folder as `cakifo-de_DE.po`.
 * You should now be able to theme the whole theme – or if you want, just the “Recent
   Posts” string.
 * —
 * 2. Post date
 * Where on the page is the strings you want removed?
 * —
 * 3. White background
 * Yes, that can be changed in the child theme style.css
 * —
 * 4. Contact form 7
 * Try this CSS in your child theme style.css
 *     ```
       input, select, textarea {
          width: auto;
       }
       ```
   
 * Hope that helps you. If not, feel free to write again. If you have any questions
   beside this one I recommend you sign-up for theme support on Theme Hybrid.
 * – Jesper
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Grid Columns Media Button] Great for clients](https://wordpress.org/support/topic/great-for-clients-1/)
 *  Plugin Author [Jesper Johansen (jayjdk)](https://wordpress.org/support/users/jayjdk/)
 * (@jayjdk)
 * [12 years ago](https://wordpress.org/support/topic/great-for-clients-1/#post-7826773)
 * Glad you like it, thanks for the review 🙂

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

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