Jesper Johansen (jayjdk)
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Cakifo] the content of my articles are no longer displayedHello Jean,
I didn’t understand much of what you mean. Is it possible for you to show a screenshot of the post edit screen?
Forum: Themes and Templates
In reply to: [Cakifo] the content of my articles are no longer displayedHello Jean,
That is very weird. Have you tried to disable all your plugins and enable them one by one to see if one of them causes the issue? If that’s not the issue, does the content display if you switch to the default theme?
If Cakifo is still the problem, could you please upload a screenshot of the edit screen?
Forum: Themes and Templates
In reply to: [Cakifo] Font size chageHello again,
Question 1:
I see you have the Jetpack plugin activated. Try activating the Custom CSS module and copy the CSS I wrote intoAppearance > Custom CSS.Question 2:
The posts are missing from the boxes because they are displayed in the ‘Recent Posts’ row.
You can change that by creating a child theme (see link above) and adding this to the child theme functions.php (it’s untested but should work):
add_action( 'after_setup_theme', 'my_child_setup', 11 ); function my_child_setup() { /* Get the parent theme prefix. */ $prefix = hybrid_get_prefix(); /* Show all posts in the headline boxes. */ add_action( "{$prefix}_open_headlines", 'my_cakifo_child_show_all_posts' ); /* Other Actions and filters calls go here. */ } function my_cakifo_child_show_all_posts() { $GLOBALS['cakifo_do_not_duplicate'] = array(); }Forum: Themes and Templates
In reply to: [Cakifo] 404 issue with Cakifo & Yoast SEO PluginYou’re welcome 🙂
I’ve marked this topic as resolved then.
– Jesper
Forum: Themes and Templates
In reply to: [Cakifo] Pics do not show up on front page sliderDid you solve this issue?
– Jesper
Forum: Themes and Templates
In reply to: [Cakifo] Responsive not working on iPhone 4Version 1.6 is now out.
Resolving this issue
– Jesper
Forum: Themes and Templates
In reply to: [Cakifo] 404 issue with Cakifo & Yoast SEO PluginHave you tried the support forum for that plugin?
Forum: Themes and Templates
In reply to: [Cakifo] Font size chageHello,
You should not make CSS changes in the theme files. Either create a child theme (https://github.com/jayj/Cakifo/wiki/Child-themes) or use Jetpack’s Custom CSS feature.
This CSS should work for the body text:
body { font-size: 14px; }—
Question 2:
Posts will not be displayed in the ‘headlines’ section if they are in the ‘Recent Posts’ section. Is that the case? It is possible to change. For more help a link to your site would be nice.—
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 where you will find the Cakifo support forum.
– Jesper
Forum: Themes and Templates
In reply to: [Cakifo] 404 issue with Cakifo & Yoast SEO PluginHello,
What URL do you submit?
http://fourthfloorreview.com/sitemap_index.xml does not return a 404 error. I don’t see any content but when looking at the page source, it seems there’s content.
http://fourthfloorreview.com/post-sitemap.xml is also working. Again, the same problem with the content.
I dont’ see how it’s related to the theme. Could you try switching to the default theme and see if the problem is still there?
– Jesper
Forum: Themes and Templates
In reply to: [Cakifo] Changing colors of the lines on the top of the footerThe new version is out now
Here’s the release post: http://wpthemes.jayj.dk/cakifo/2013/cakifo-1-6/
Forum: Plugins
In reply to: [Grid Columns Media Button] Why Media Button instead of TinyMCE button?The first version of the plugin used a Quicktag but since it needs user input the quicktag didn’t provide a very good user experience (a series of popups)’
You can download the first version on Github and try it for yourself:
https://github.com/jayj/grid-columns-media-button/tree/c93254233ba61f33fd82c11ec044e555e8e3e939Hope that answers your questions. If not, feel free to write again and I’ll try to explain more if needed.
– Jesper
Forum: Themes and Templates
In reply to: [Cakifo] Changing colors of the lines on the top of the footerYou can read about creating a child theme for Cakifo here: https://github.com/jayj/Cakifo/wiki/Child-themes (includes a download link to a sample child theme)
I would image your child theme style.css would look something like this:
/** * Theme Name: Cakifo child * Theme URI: http://link-to-your-site.com * Description: Describe what your theme should be like. * Version: 1.0 * Author: Your Name * Author URI: http://link-to-your-site.com * Tags: Add, Whatever, Tags, You, Want * Template: cakifo */ @import url( '../cakifo/style.min.css' ); /* Custom code goes below here. */ #content, #footer { background-image: none; border-top: 5px solid #bada55; /* your color here */ padding-top: 34px; }This CSS may not work when you update to the next version (but you won’t need it if you do update)
– Jesper
Forum: Themes and Templates
In reply to: [Cakifo] Changing colors of the lines on the top of the footerHello,
You will be able to easily change that in the next version. Hopefully it will be released in the next few weeks. Hope you can wait. If not, you can create a child theme and change the CSS.
– Jesper
Forum: Themes and Templates
In reply to: [Cakifo] Pics do not show up on front page sliderHello Katie,
You can change the default WordPress image sizes under
Settings > Media.
The theme has some other image sizes registered:- Slider: 500 x 230 pixel
- Recent Posts: 220 x 150 pixel
- Small: 100 x 100 pixel
All image sizes will automatically be generated when you upload an image. If you change your image sizes, you can make WordPress generate them for your old images by using the Regenerate Thumbnails plugin.
To get an image to should in the slider you should set it as “Featured Image”.
Hope that helps you.
– Jesper
Forum: Themes and Templates
In reply to: [Cakifo] "are you cheeting?"The word “cheeting” is no where in the theme files so it’s most likely a plugin issue.
Have you tried disabling all plugins and activating them one by one to see which one causes the issue?
– Jesper