Jesper Johansen (jayjdk)
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Cakifo] Mobile versionHello,
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
In reply to: [Cakifo] Comment submit button gone?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
In reply to: [Cakifo] Comment submit button gone?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.www.ads-software.com/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
In reply to: [Grid Columns Media Button] Handy shortcutHello 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
In reply to: [Cakifo] Logo not showing in mobileHello wailamliu,
What image format did you try? Every format supported by WordPress should work. The default logo is in png format
– Jesper
Forum: Plugins
In reply to: [Youtube Profile Field] Plugin Not WorkingHello,
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 https://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
In reply to: [Cakifo] "Secondary" menu on TabletHello 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 https://codex.www.ads-software.com/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
In reply to: [Cakifo] Front Page # articlesHello,
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
In reply to: [Cycnus] Display Pages?Hello,
Sorry for the late reply.
You can add a menu on the
Appearance > Menus
pageForum: Reviews
In reply to: [Youtube Profile Field] Awesome pluginThanks ??
Forum: Themes and Templates
In reply to: [Cakifo] Changing Text "Recent Posts" on front pageHello,
Glad you found a solution ??
Another solution is to create a child theme (https://github.com/jayj/Cakifo/wiki/Child-themes) and use this in the child theme functions.php:
/** * Changes the 'Recent Posts' heading. * * @link https://codex.www.ads-software.com/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
In reply to: [Cakifo] Header colourHello 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
In reply to: [Cycnus] Hooks from Theme HybridHello,
It’s a child theme of Socially Awkward (https://www.ads-software.com/themes/socially-awkward) which doesn’t use any Atomic hooks. So no, sorry.
– Jesper
Forum: Themes and Templates
In reply to: [Cakifo] ho to change "recent posts"?Hello Cara,
First you should create a child theme: 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 (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 calleddefault.pot
. Open that and save in your child theme languages folder ascakifo-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
In reply to: [Grid Columns Media Button] Great for clientsGlad you like it, thanks for the review ??