Jesper Johansen (jayjdk)
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Cakifo] Change home page colorHello,
If you mean the background it can be changed in
Appearance > Background.If that’s not what you mean, I recommend you sign-up for support on Theme Hybrid as I’m offering limited free support.
– Jesper
Forum: Themes and Templates
In reply to: [Cakifo] Center Header ImageDo you use a child theme or Jetpack? If you use Jetpack (sounds like the best solution for you) you go to
Appearance > Edit CSSand add the CSS in the text box.– Jesper
Forum: Themes and Templates
In reply to: [Cakifo] Center Header ImageHello,
You can either use Jetpack’s custom CSS feature or a create a child theme.
This CSS should work (thanks Andrew Nevins):
#site-title { width: 100%; text-align: center; }– Jesper
Forum: Themes and Templates
In reply to: [Cakifo] Static front page not workingGlad that it works. I’ll take a look at the customizer thing.
I’m sorry but I’m proving additional support for the theme on Theme Hybrid.
I can help you with that there’s a filter called
cakifo_recent_posts_querythat allows you to change the Recent Posts query in a child theme: https://github.com/jayj/Cakifo/blob/master/section-recentposts.php#L26-L53If you mean in the Categories boxes you should be able to choose 4 categories under “Headline Categories” and the number of posts “Headlines Posts”. By default posts won’t show in those lists if they are in the “Recent Posts” list. If that is what you mean I can give you a solution on Theme Hybrid.
– Jesper
Forum: Themes and Templates
In reply to: [Cakifo] Static front page not workingHello,
You should be able to set the slider and categories list under
Appearance > Theme Settings. If it still doesn’t work please write again.– Jesper
Forum: Themes and Templates
In reply to: [Cakifo] breadcrumb navigation removalHello,
Thank you!
You should add this to your child theme setup function:
add_filter( 'breadcrumb_trail', '__return_false' );How to create a child theme: https://github.com/jayj/Cakifo/wiki/Child-themes
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 support on Theme Hybrid.
– Jesper
Forum: Themes and Templates
In reply to: [Cakifo] How can I change the color of text and page templatesI’m marking this as resolved. If it’s not, feel free to write again 🙂
– Jesper
Forum: Themes and Templates
In reply to: [Cakifo] Edit for BuddyPress ComaptibilityIt should work with BuddyPress 1.7
http://buddypress.org/2013/04/buddypress-1-7-is-now-available/Forum: Themes and Templates
In reply to: [Cakifo] Same Author in the HeadlineYou can use a section-headlines.php in your child theme but then you won’t get any changes made to it in the next version.
I’m not completely sure what you’re doing. There shouldn’t be any need to create that file in a child them. You should be able to select child categories on the
Appearance > Theme Settingspage. It won’t show that it’s a child category, I might take a look at that.– Jesper
Forum: Themes and Templates
In reply to: [Cakifo] Same Author in the HeadlineHello,
Thank you for the bug report. It’s has been fixed in the development version: https://github.com/jayj/Cakifo/commit/581ed411158fd9773f1498ce790002ae2b807c60
While I never recommend editing the parent theme files yourself, it’s properly the best solution here until Cakifo 1.6 is released.
Open
section-headlines.php, find line 58 and add this before the $GLOBALS stuff:setup_postdata( $post );Hope that helps you.
– Jesper
Forum: Themes and Templates
In reply to: [Cakifo] Translating commenting notifications settingsHello,
That’s not a part of the theme. You’re probably using a comment subscription plugin (maybe Jetpack?).
– Jesper
Please use the support forum on Theme Hybrid where Cakifo has it’s own support forum or look in the Wiki https://github.com/jayj/Cakifo/wiki – The breadcrumb thing is mentioned under “Theme Extensions”.
– Jesper
Yes. Exactly. Glad it worked 🙂
Oh, right. I know what you mean. That’s a bug in the theme that will get fixed in Cakifo 1.6
I recommend you put this in your child theme functions.php:
<?php add_action( 'after_setup_theme', 'my_child_setup', 11 ); function my_child_setup() { /* Get the parent theme prefix. */ $prefix = hybrid_get_prefix(); /* Set the layout for the front page. */ add_action( 'template_redirect', 'my_cakifo_child_frontpage_layout' ); /* Other Actions and filters calls go here. */ } function my_cakifo_child_frontpage_layout() { if ( is_front_page() && ! is_home() ) add_filter( 'get_theme_layout', 'my_cakifo_child_layout_home' ); } function my_cakifo_child_layout_home() { return 'layout-3c-l'; // 3c-l, 3c-r or 3c-c } ?>Hello,
I’m not sure I understand what you’re saying. Is this correct:
- You have a page called “Home” and you’re using the default template
- Under “Layout” you have it set to “Three Columns, Right/left/center”
- You say the result is not what you wanted. What is the result and how is it different from what you wanted? Do you have a link to your page?
If you excepted a result like the demo you should set the page template to “Front Page”.
—
If you want to change the styling you should use a child theme.
—
Hope that helps you. If not, feel free to write again. If you have any questions beside these I recommend you sign-up for support on Theme Hybrid.
– Jesper