Jesper Johansen (jayjdk)
Forum Replies Created
-
Forum: Reviews
In reply to: [Grid Columns Media Button] Works greatThanks for the review 🙂
Forum: Reviews
In reply to: [Twitter Profile Field] Twitter Profile Field , work wellThank you for the review 🙂
Forum: Themes and Templates
In reply to: [Cakifo] Pics do not show up on front page sliderHello,
Could you please create a new topic? Then I’ll take a look at it later today.
– Jesper
Forum: Themes and Templates
In reply to: [Cakifo] Slider appearanceHello,
The slider shows an excerpt of the post. Either the manually entered excerpt or an auto-generated excerpt. So the whole post should never be shown.
I don’t know what you mean by “If i set another “continue reading” in my post, only the one on the slider counts”.
Bold and italic fonts: WordPress automatically strips out HTML of the excerpt. You could try this plugin: http://wordpress.org/plugins/advanced-excerpt/ (don’t know if it works)
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: Themes and Templates
In reply to: [Cakifo] German translationSorry, I can’t help with that.
Justin Tadlock, the author of the framework this theme uses, has been in contact with the Codestyling plugin author about the issues but apparently those issues hasn’t been addressed yet.
You can use poEdit to translate the theme by using the included languages/default.pot.
– Jesper
Forum: Themes and Templates
In reply to: [Cakifo] Since update complete blogpost is shownThat’s odd. The theme has always displayed full content instead of a excerpt on the blog page. You’ll see the except on archive pages.
There’s two possible solutions:
1) Use the
<!--more-->tag in your posts. It will create a “Continue Reading” link and separate the content. See http://en.support.wordpress.com/splitting-content/more-tag/On the downside, you’ll have to edit your old posts so perhaps solution two is better for you.
2) Create a child theme (https://github.com/jayj/Cakifo/wiki/Child-themes) and copy the content.php file from the parent theme over in your new child theme. Find line 78 and change it to
<?php the_excerpt(); ?>.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: Themes and Templates
In reply to: [Cakifo] Remove the thumbnail on top of my post in Cakifo themeFantastic! You’re welcome 🙂
Forum: Themes and Templates
In reply to: [Cakifo] Remove the thumbnail on top of my post in Cakifo themeSorry! This should work:
add_action( 'after_setup_theme', 'my_child_setup', 11 ); function my_child_setup() { /* Get the parent theme prefix. */ $prefix = hybrid_get_prefix(); /* Filter Get the Image output */ add_filter( 'get_the_image', 'my_child_hide_thumbnail' ); /* Other Actions and filters calls go here. */ } function my_child_hide_thumbnail( $output ) { if ( ! cakifo_is_active_slider() ) { return false; } return $output; }Forum: Themes and Templates
In reply to: [Cakifo] Remove the thumbnail on top of my post in Cakifo themeHello Candra,
I haven’t tested this code but I think it will work. First you should create a child theme (see https://github.com/jayj/Cakifo/wiki/Child-themes) and put this code in the child theme functions.php:
add_action( 'after_setup_theme', 'my_child_setup', 11 ); function my_child_setup() { /* Get the parent theme prefix. */ $prefix = hybrid_get_prefix(); /* Filter Get the Image arguments */ add_filter( 'get_the_image_args', 'my_child_hide_thumbnail' ); /* Other Actions and filters calls go here. */ } function my_child_hide_thumbnail( $args ) { if ( ! cakifo_is_active_slider() ) { return false; } return $args; }Hope that helps. If it does not work, please write again.
– Jesper
Forum: Themes and Templates
In reply to: [Cakifo] Page of PostsThank you!
The easiest way is probably to use a plugin like Remove Posts in Category From Homepage to hide posts from a category.
Forum: Themes and Templates
In reply to: [Cakifo] Page of PostsHello,
I’m not quite sure what you asking. You want a page that displays a list of specific posts? If so, you can either use categories or tags as they both have their own archive pages.
– Jesper
Forum: Reviews
In reply to: [Cycnus] Awesome child themeHello Justin,
Thank you very much for the kind words 🙂
You’re a big inspiration, and and as I already said on Theme Hybrid, the theme was a pleasure to work with 🙂
I hope it’s okay I’ve added your review at the theme page http://jayj.dk/themes/cycnus/
– Jesper
Forum: Themes and Templates
In reply to: [Cakifo] dates et authorsHello,
You’ll have to filter the
byline_{$format}hooks. You can read more on this page: http://themehybrid.com/docs/tutorials/filter-hooksI am providing limited free support for this theme. I recommend that you sign-up for Theme support on Theme Hybrid. You’ll find a section called “Cakifo” on the support forum.
– Jesper
Forum: Plugins
In reply to: [MP6] Google Fonts Slows Down Page Load (IMMENSELY)Hello Till,
I think the first one is only the case if Open Sans is not enqueued by the theme. The font is not loading on themes without Open Sans, as expected. But if a is enqueuing Open Sans (by using
wp_enqueue_style( 'open-sans', ...)), MP6 overwrites that version – even if the toolbar is not showing.Example: If a theme is loading font weight 300, 400, and 700. Open Sans is loading 300, 400, 600. Thus font weight 700 is no longer loaded.
This can be fixed if the theme (or MP6) uses a other name than Open Sans, like Twenty Twelve does, but then Open Sans is loaded twice when the toolbar is showing.
– Jesper
Forum: Themes and Templates
In reply to: [Cakifo] previous_posts_link and nextHello,
The easiest solution is to hide them with CSS:
.post-pagination { display: none; }– Jesper