Jesper Johansen (jayjdk)
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Cakifo] Updating cakifo removed widgets from front pageI see what you mean now. It appears to be a bug in the theme. I’ll make sure to fix it in the next version.
You can fix it 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', 'cakifo_theme_layout_two_columns_left' ); } function cakifo_theme_layout_two_columns_left() { return 'layout-2c-l'; } ?>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] Updating cakifo removed widgets from front pageYou should not include the parent theme CSS in your child theme. You should import it instead by using:
@import url( '../cakifo/style.css' );and then only overwrite the necessary things.
Forum: Themes and Templates
In reply to: [Cakifo] Blank website after activatingTry going through http://wordpress.org/support/topic/troubleshooting-wordpress-35-master-list or look at the solutions in some of these posts http://wordpress.org/tags/whitescreen
Forum: Themes and Templates
In reply to: [Cakifo] Blank website after activatingYes, try re-installing WordPress (you can do that from
Dashboard > Updatesif you didn’t know)Forum: Themes and Templates
In reply to: [Cakifo] Blank website after activatingHello again,
Which plugins are you using? There might be a conflict between the theme and a plugin. I know there’s a conflict between the theme and Widgets Reloaded but I don’t know about anyone else.
– Jesper
Forum: Themes and Templates
In reply to: [Cakifo] Blank website after activatingWhat happens if you try to download 1.5.1 instead? There was a bug in 1.5 but 1.5.1 haven’t been pushed out yet. You can download it from here:
http://wordpress.org/extend/themes/download/cakifo.1.5.1.zipForum: Themes and Templates
In reply to: [Poloray] Warning: _() expects exactly 1 parameter, 2 given inCharles, it doesn’t have anything to do with that.
It’s because the theme author misses a underscore/e in the function name on this line:
<li class="posted_by"><?php _( 'By', 'poloray' ); ?> <?php the_author_posts_link(); ?></li>It should be
__()or_e()not_().Quite strange how the theme author nor the reviews haven’t noticed that.
Forum: Themes and Templates
In reply to: [Cakifo] edited style.css but blog not updatedInstead of editing style.css you should create a child theme https://github.com/jayj/Cakifo/wiki/Child-themes – that way you won’t lose your changes if you update the theme in the future. If you use the Jetpack plugin, you can use the Custom CSS module instead.
But as Andrew Nevins said, the reason why it’s not being updated might be because of the selectors. It can also be because the style.css is cached in your browser.
Forum: Themes and Templates
In reply to: [Cakifo] remove comment section from each page?If you want it for some pages:
- Edit a page
- Find the “Discussion” meta box
- Uncheck “Allow comments”
If you want it disallow comments for all pages (not posts) you can create a child theme and add this to the functions.php:
<?php add_action( 'init', 'cakifo_child_theme_disable_comments' ); function cakifo_child_theme_disable_comments() { remove_post_type_support( 'page', 'comments' ); } ?>Hope that helps you. If not, feel free to write again.
But if you have any question beside this one, I recommend that you signup for Theme support on Theme Hybrid. You’ll find a section called “Cakifo” on the support forum.
Forum: Reviews
In reply to: [Cakifo] Clean, concise themeThank you very much for the kind words – it’s much appreciated 🙂
Forum: Themes and Templates
In reply to: Help with theme…Yes, it is. You can also see it on the link @alchymyth posted http://wordpress.org/extend/themes/cakifo
You can download the theme from my website as well – but that link is just a redirect to the WordPress.org download URL.
Forum: Themes and Templates
In reply to: Help with theme…Before version 1.4, Cakifo was released under GPL but it used elements incompatible with GPL. But that was changed in 1.4 when Cakifo was added to the official theme directory. If that’s not the case, it’s a mistake. But since it’s got accepted, it should be totally licensed under GPL.
Forum: Themes and Templates
In reply to: Help with theme…Hello,
I’m the theme author of Cakifo.
Do you mean that you want to remove the “You are here: Home / Services” section?
If so, you should create a child theme and add this to your child theme setup function:
remove_theme_support( 'breadcrumb-trail' );Hope that helps you. If not, feel free to ask again.
But if you have any question beside this one, I recommend that you signup for Theme support on Theme Hybrid. You’ll find a section called “Cakifo” on the support forum.
@esmi
Do you mean that Cakifo is not GPL? or did he/she use another theme at the time you wrote that?Forum: Themes and Templates
In reply to: Removing EXIF data from CakifoHello,
I recommend you create a child theme and put this in the functions.php:
Try to put this in a child theme functions.php:
<?php /* Do theme setup on the 'after_setup_theme' hook. 11 runs after parent theme, 9 runs before */ add_action( 'after_setup_theme', 'cakifo_child_theme_setup', 11 ); /** * Theme setup function. */ function cakifo_child_theme_setup() { /* Get action/filter hook prefix */ $prefix = hybrid_get_prefix(); add_action( "{$prefix}_image_info", '__return_false' ); } ?>I hope that helps you. If you have any more questions, I recommend you sign-up for support on Theme Hybrid.
– Jesper
Forum: Themes and Templates
In reply to: Error after theme activationHello Hoji,
I’m the author of Cakifo. Do you use the latest version of WordPress? The wp_get_theme() function was introduced in WordPress 3.4 and Cakifo is not compatible with earlier versions. You should follow kevinhaig’s instructions and rename the theme folder. After that you should update to the latest version of WordPress and try to active the theme again.
@fip
I think it’s better if you create a new thread. But try to delete the ‘pixopoint-menu’ folder.