Medizinische Abkuerzungen
Forum Replies Created
-
Forum: Hacks
In reply to: [Q] How can I cahnge the posts order on rss feed?I found this in an old post
In wp-includes folder edit the feed-rss2.php file
Add this code…
<?php query_posts($query_string . “&order=ASC”) ?>Above the
<?php while( have_posts()) : the_post(); ?>Forum: Themes and Templates
In reply to: Flickr.com layout without flickrApplying:
<img src=”…” class=”flickr_badge_image” id=”flickr”>class uses thes styles with #
id the styles with a leading .My opinion: extract the stlyes you want and add them as a single.
#my_foto_styles {…}
<img src=”…” class=”my_foto_styles”>Forum: Fixing WordPress
In reply to: Links sort descending ratinguse ‘_rating’
see https://codex.www.ads-software.com/Template_Tags/get_links
Forum: Themes and Templates
In reply to: Flickr.com layout without flickrYou want to use your own pictures?
Forum: Themes and Templates
In reply to: Need a quick CMS theme for a charity website…Do you want to use wordpress? It comes with a standard theme!?
Forum: Fixing WordPress
In reply to: Is this possible?If you want to show two different versions of one page (some content, second version some added content) there are three different ways:
-Send whole page, use javascript to show elements on request (part of web2.0). Use cookies to remember preferences from page to page
-use php to serve out different versions (via session or cookie)
-make two pages, with the content (you have to update two different versions) and link in between.
Forum: Fixing WordPress
In reply to: Image Border not working in IE but does in FFDo you have an url?
Forum: Themes and Templates
In reply to: css conflict? add 3px image padding?Looks fine for me?
The images have borders…
Perhaps you should try the Web Developer_extension for firefox (you can switch of styles and modify them via css-edit css in your browser)
Forum: Themes and Templates
In reply to: When form is activated related button gains a black border in IEIt is just a gimmick of the internet-explorer to activate the submit-button of the actual form (there is no underlaying javascript have a look here: https://www.alles-in-aachen.de/ -my page, no code, I know for sure)
I think there is no way to activate it on firefox or netscape except using javascript.
Forum: Fixing WordPress
In reply to: SQL SELECT statement that excludes a Category@whooami
Yeah, it took me five minutes from first view to write it down.Added too late….
Forum: Themes and Templates
In reply to: When form is activated related button gains a black border in IEadd it to the button
<input type=”submit” value=”<?php _e(‘Search’); ?>” style=”border:none;”/>
Forum: Fixing WordPress
In reply to: T-STRING?<?php bloginfo(‘charset’); “/>
Missing ?>
<?php bloginfo(‘charset’); ?> “/>
Forum: Fixing WordPress
In reply to: SQL SELECT statement that excludes a CategorySELECT ID, post_title FROM ” . $wpdb->posts . ” WHERE post_status=’publish’ and post_category !=’31’ ORDER BY post_date DESC LIMIT …
Have a look in your database that post_category the right field
Too late
Forum: Fixing WordPress
In reply to: Getting height of divRead something about style-sheets and positioning of elements. There are many things you can do without knowing the specif sizes.
The only way to get information abot the elements after displaying them is Javascript. But whooami is right, that is the wrong way.
Forum: Fixing WordPress
In reply to: footer: only show a line when on home.phpshow the result of is_home is it 1/true on every page?
echo is_home();