Blutarsky
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: [Plugin: WordPress.com Stats] Stats is no longer accurate?!same problem, suddenly the post read count started decreasing…..
Forum: Plugins
In reply to: [Plugin: Google XML Sitemaps] 3.14 still doesn’t work with qTranslateI have patched a previous version of XML Sitemaps, but now there’s a new version, and wish stop patching ??
Forum: Fixing WordPress
In reply to: Selecting duplicates posts from one category (SQL)Any mySQL expert here?
Forum: Fixing WordPress
In reply to: Get $user->ID from postYou rock mate!
Forum: Fixing WordPress
In reply to: Mass delete unused tags & relationshipsthis is the select statment that hangs…
SELECT * FROM wp_terms wt INNER JOIN wp_term_taxonomy wtt ON wt.term_id=wtt.term_id INNER JOIN wp_term_relationships wtr ON wtr.term_taxonomy_id=wtt.term_taxonomy_id LEFT JOIN wp_posts wp ON wp.ID=wtr.object_id WHERE taxonomy='post_tag' AND ID IS NULL AND NOT EXISTS(SELECT * FROM wp_terms wt2 INNER JOIN wp_term_taxonomy wtt2 ON wt2.term_id=wtt2.term_id WHERE wtt2.parent=wt.term_id) ORDER BY name
Help!
Forum: Fixing WordPress
In reply to: Export/publish a single post to another WP blog?I’ll give it a go thanks
Same problem I was struggling to catch the bloaty plugin and at the end discovered that it was the wordpress.com stats plugin…
I adore that plugin but it was pushing page load time up to 12s. Now down to 4s without the plugin…Any help?
Forum: Installing WordPress
In reply to: Planning a development site on a notebookNow I need to copy the official version and find a good strategy to synch
Forum: Fixing WordPress
In reply to: Does the_content() adds extra <p> & <br> to HTML comments?Thanks for the in-depth test!
I’ll do some testing too.Thanks again
Forum: Fixing WordPress
In reply to: Does the_content() adds extra <p> & <br> to HTML comments?<!--pagetitle!--> <!--beginspoiler!--> <div class="jumps">In a rush? Jump to <a href="somelinkhere">the solution in a nutshell!</a></div> <!--endspoiler!-->
Try the code above in a post
Forum: Fixing WordPress
In reply to: Does the_content() adds extra <p> & <br> to HTML comments?Actually the content is typed in HTML mode. There are no signs of HTML comments in visual mode….maybe a bug? Or a faulty plugin?
Try this in HTML mode (the code in the following message)
Forum: Fixing WordPress
In reply to: Hide some post contents from index.php,without using PHPOk this is what I’ve done:
– created some html comments/tags in the post
– modified an existing plugin that sticks a filter to the_content() and coded a conditional is_home() formatting.It works.
Forum: Fixing WordPress
In reply to: Hide some post contents from index.php,without using PHPOk but what if I need to hide something in index.php and show it in single.php?
example:
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi quam. Ut ullamcorper ornare nunc. <strong>*show-a-link-on-single.php-but-not-on-index.php*</strong> Nam cursus, felis sit amet posuere fermentum, erat odio pretium lacus, at mattis augue lectus et purus. Praesent eleifend ullamcorper urna. Aenean orci diam, pretium eget, consequat eget, accumsan ut, nibh.<p>
Forum: Fixing WordPress
In reply to: Indexing other WordPress DB columns…Ok, thanks!
Forum: Fixing WordPress
In reply to: Indexing other WordPress DB columns…What you mean ” to create an index while running”?
I thought index creation could occur only behind the scene, using phpmyadmin…
could you clarify?