kevinweber
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [TwentyXS] [Theme: TwentyXS] Suggestions and wishes?Hey luseens,
go to your wp-config.php file and search for a line that looks like this:
define ('WPLANG', 'en_EN');
Replace en_EN by da_DK
(More informations: Installing WordPress in your language)Then go to the ‘languages’ folder of your TwentyXS theme.
Download the necessary language file (https://www.2shared.com/file/g9YOzDaw/da_DK.html) and upload it. Most things should be translated afterwards.With regards,
KevinForum: Themes and Templates
In reply to: [TwentyXS] [Theme: TwentyXS] Suggestions and wishes?Delete title-elements from the whole blog:
#content .entry-title{display:none;}
The code to solve the ‘space’-problem:
h3#comments-title {padding-bottom:5px;} ol.commentlist {margin-bottom:5px !important;} #respond {margin-top:5px;}
Sorry, I can’t help you relating to the change of the language for now. You could edit the code manually. Maybe I can help you in two weeks (or so) when I’ve more time.
Best wishes
Forum: Themes and Templates
In reply to: [TwentyXS] [Theme: TwentyXS] Suggestions and wishes?But of course you can ask me for help ??
To modify height of the comment field paste the following code into the ‘Custom CSS’ box on your TwentyXS Settings page and change the number in front of ‘px’ as you like:
#respond textarea {height:100px;}
I could give you a code snippet that removes the title-elements from the whole blog. But you want to remove the titles from single pages only, don’t you? So paste the following code in advance. It will work when the next update of TwentyXS is available:
.content-post .entry-title{display:none;}
Regards
Forum: Themes and Templates
In reply to: [TwentyXS] [Theme: TwentyXS] Suggestions and wishes?No, the links in the menu shouldn’t turn pink as they’re moused over yet. But with the next update this should change.
Here is the most important code to change the headmost navigation’s style manually:
[CSS code moderated – please use the pastebin or post a link to your site]
Just insert it into the ‘Custom CSS’ box and customize the colours etc.
Best wishes
KevinForum: Themes and Templates
In reply to: [TwentyXS] [Theme: TwentyXS] Suggestions and wishes?Hello TiffannieAmber,
nice to hear that you like the theme TwentyXS!Your problem is actually a bug (many thanks for the hint/your post!). I’m going to work on permantent a solution.
This should help in your case:
1. Go to the TwentyXS Settings page of your blog.
2. Remove the tick from the option ‘Centred Navigation’.
3. Insert the following code into the ‘Custom CSS’ box:
#access .menu-header > ul {margin-right:21px;}
Did this solve your problem?
Best regards
KevinForum: Fixing WordPress
In reply to: WP 3.1 Admin bar: Add menu for CSS editor?Yeah, there you will find the code: https://it-runde.de/6757/editor-link-fur-die-neue-admin-bar-in-wordpress
I wrote a little plugin, too. Download it from here.Forum: Plugins
In reply to: [Flattr] Remove Flattr Button from RSS/Atom Feed?Jeah, great, it’s working without problems now ??
Forum: Plugins
In reply to: [Flattr] Remove Flattr Button from RSS/Atom Feed?Oh yeah, I have a solution.
Go to the plugin editor and choose the ‘flattr’-plugin. Navigate to ‘flattr/flattr5.php’ and search for ‘function flattr_post2rss($content)’.Comment the lines by ‘//’ out.
// function flattr_post2rss($content) { // global $post; // // $flattr = ""; // $flattr_post_types = get_option('flattr_post_types'); // // if (is_feed() && in_array(get_post_type(), $flattr_post_types)) { // $id = $post->ID; // $md5 = md5($post->post_title); // $permalink = urlencode(get_permalink( $id )); // // $flattr.= ' <p><a href="'. get_bloginfo('wpurl') .'/?flattrss_redirect&id='.$id.'&md5='.$md5.'" title="Flattr" target="_blank"><img src="'. FLATTRSS_PLUGIN_PATH .'/img/flattr-badge-large.png" alt="flattr this!"/></a></p>'; // } // return ($content.$flattr); // } // // if(function_exists('curl_init')) { // add_filter('the_content_feed', 'flattr_post2rss',999999); // }
I think the plugin works correctly after commenting the lines out.
~~~~~~~~~~
kevinw.deForum: Plugins
In reply to: [Flattr] Remove Flattr Button from RSS/Atom Feed?I’ve the same problem, too.
(Blog: The Green Bird)Please, plugin developer, add an option to remove the button from feeds.
Best regards
Forum: Themes and Templates
In reply to: (Lightword) "Tab" doesn't change*push*
Forum: Themes and Templates
In reply to: “>>” before links went awayI solved the problem by adding a few words:
.entry ul li:before, #sidebar ul ul li:before { content: "0BB 020"; }
–>>
.entry ul li:before, #sidebar ul ul li:before, #sidebar ul li ul li:before { content: "0BB 020"; }