Jesper Johansen (jayjdk)
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Cakifo] language FrCan you upload the files somewhere so I can see them?
Forum: Themes and Templates
In reply to: [Cakifo] language FrHello Jean,
You’re not the first one to mention that. Where are you saving the .po and .mo files?
If it doesn’t work by creating cakifo-fr-FR.po and cakifo-fr-FR.mo in the languages/ folder it might be a issue with Hybrid Core which is the framework used in the theme.
The best way to get support for that is by signing up at Theme Hybrid where I have a Cakifo support forum as well.
– Jesper
Forum: Themes and Templates
In reply to: [Cakifo] Edit for BuddyPress ComaptibilitySorry but I can’t help you with BuddyPress. You might be able to get help from the supports forum over at Theme Hybrid.
Forum: Themes and Templates
In reply to: [Cakifo] TR Hover and Page Title LinksThank you 🙂 If you run into any bugs let me know
Forum: Themes and Templates
In reply to: [Cakifo] TR Hover and Page Title LinksThanks for the feedback!
The idea was to bring focus to the data but I’ll write it on my list and think about it for the next update.
However, I’m not sure I agree that it’s a very specific selector. The selector used is
tr:hover td– Jesper
Forum: Themes and Templates
In reply to: [Cakifo] How can I change the color of text and page templatesHave you resolved this issue?
Forum: Themes and Templates
In reply to: [Cakifo] TR Hover and Page Title LinksHello kzarske,
The page title thing will be fixed in the next version. Here’s what you can do:
Create a child theme (if you haven’t already) and put this in the child theme functions.php:add_action( 'after_setup_theme', 'cakifo_child_theme_setup', 11 ); /** * Theme setup function. Runs after the parent theme */ function cakifo_child_theme_setup() { /* Get action/filter hook prefix */ $prefix = hybrid_get_prefix(); add_action( "{$prefix}_entry_title", 'cakifo_child_page_title' ); } function cakifo_child_page_title( $title ) { if ( is_page() ) return do_shortcode( '[entry-title permalink=""]' ); return $title; }—
Personally, I like hovers on table rows. Could you give a specific example on a situation where you find it strange to have a hover?
—
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.
Forum: Themes and Templates
In reply to: [Cakifo] the homepageHello,
I’m not sure I understand what you mean. But if your articles are showing in full, you might have to use the
<!-- more -->tag (see http://en.support.wordpress.com/splitting-content/more-tag/)Forum: Themes and Templates
In reply to: [Cakifo] How can I change the color of text and page templatesHave you tried to customize the link color? That should change the title’s color.
What pink-ish boxes do you mean? Do you have a link to your site or a screenshot?
You can download a sample Cakifo child theme right here: http://themehybrid.com/themes/cakifo-child
If you don’t know how to install the child theme you can find free guides by googling it or follow this tutorial: http://themehybrid.com/docs/tutorials/how-to-install-a-wordpress-theme
– Jesper
Forum: Themes and Templates
In reply to: [Cakifo] How can I change the color of text and page templatesThe link color can be changed in the Theme Customizer or Theme Options Page (
Appearance > CustomizeorAppearance > Theme Options)If you want futher customizations, I recommend you 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.
Forum: Themes and Templates
In reply to: [Cakifo] Blank website after activatingThat’s strange. I see you’ve created a new topic in the “How-To and Troubleshooting” forum – would it be okay if I mark this topic as “resolved”?
Forum: Themes and Templates
In reply to: [Cakifo] Blank website after activatingDid you solve this issue?
Forum: Themes and Templates
In reply to: [Cakifo] Navigation barUnder
Appearance > Menusyou can create your own menu and assign it to either a Primary or Secondary theme location.Forum: Themes and Templates
In reply to: [Cakifo] Sidebar images not showing upWhat’s strange. I have no problems using your code. Do normal text in the text widget show up?
Forum: Themes and Templates
In reply to: [Cakifo] Sidebar images not showing upIt’s hard to help without any more information.
What’s your site? How are you trying to add images – in a text widget? What code are you trying to use?