AnimaliX
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Float] not working on PAGES!I using directly WP float settings not windget settings
and I tried this:<script> jQuery(document).ready(function(){ jQuery('[id*=wpf]').css('position','absolute'); }); </script>from
http://wordpress.org/support/topic/stationary-positioning#post-4187851
“you can create a text widget and add the code to it”…
and I find strange thing… if i change Permalinks to default format “http://web.eu/?p=123” then it works… but with “http://web.eu/sample-post/” format not at alland search result is still the same… without floating 🙂
Forum: Plugins
In reply to: [WP Float] not working on PAGES!in search result same problem 🙁
and creating text widget with script or inserting code directly inside php not helping also
Forum: Fixing WordPress
In reply to: complex excludei experimenting with this
<?php $skip = false; $skip_tag = 'demo'; $tags = get_the_tags($post->ID); if ($tags) { foreach ($tags as $tag) { if ($tag->name == $skip_tag) { $skip = true; } } if (!$skip) { //your post display stuff goes here -- like the_title, the_content, the_excerpt } } ?>from http://wordpress.org/support/topic/how-to-hide-post-by-tag?replies=2
Forum: Fixing WordPress
In reply to: truncate texti need truncate text between tags …
“Excerpt Editor” is not for my situation… i using php and some complex coding in posts plus multilanguage system…
this java code in my first post working good… but only with first post 🙁
(sorry for “this” english)
Forum: Fixing WordPress
In reply to: truncate textpls… someone?
Forum: Fixing WordPress
In reply to: limit text inside tagsany idea? 🙁
Forum: Fixing WordPress
In reply to: Update Post with Datei find plugin “Custom Post Order”
Forum: Fixing WordPress
In reply to: Update Post with Datei create two test posts:
TEST02 – “Published on: Aug 18, 2010 @ 23:09” (Last edited is same)
TEST01 – “Published on: Aug 18, 2010 @ 22:44” BUT “Last edited by admin on August 18, 2010 at 23:12”on website is TEST02 still in first place 🙁
Forum: Fixing WordPress
In reply to: Update Post with Datei testng all on online server and in my local private server (basic WP witn no plugins) …and with no luck 🙁
Forum: Fixing WordPress
In reply to: Update Post with DateI testing this on default Twenty Ten 1.1 and only in archive, attachment and functions.php have something with “date”.
default date/time format in functions.php is:
function twentyten_posted_on() { ...some code... esc_attr( get_the_time() ), get_the_date()and change into:
function twentyten_posted_on() { ...some code... esc_attr( get_the_modified_time() ), get_the_modified_date()but with no changes on web 🙁