Scriptrunner (Doug Sparling)
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Temporarily disable RSS feedForum: Fixing WordPress
In reply to: Temporarily disable RSS feedThen install the plugin. I’ve used Disable Feeds and it simply redirects calls to the feeds page back to the home page. (which may or may not be what you want, but never the less, feeds aren’t accessible)
Forum: Fixing WordPress
In reply to: My RSS Feed looks damaged – how do i repair it?Check if you’re running DEBUG mode in production. I was just able to reproduce the feed error with the Syntax Highligher plugin and DEBUG mode set to true. What’s happening is that the plugin is causing warnings to appear, and they appear at the top of every page (including feeds) due to running in DEBUG mode.
In wp-config.php, make sure you have:
define('WP_DEBUG', false);not
define('WP_DEBUG', true);Forum: Fixing WordPress
In reply to: Remove Comments Section – Misty Lake ThemeYou need to do two things…
1) Settings->Discussions – Uncheck
Allow people to post comments on new articles2) For older posts, you’ll have to disable them individually. Go to
Posts->All Posts
and then click on “Quick Edit” for each post and uncheck “Allow Comments.”
If you have a lot of posts, you can do a bulk edit and set them all at once.
Forum: Fixing WordPress
In reply to: Do I need to update jquery?No, you don’t need to update jQuery. This is a well known bug with the plugin that author has yet to fix:
Since this is a problem with the plugin, it’s best to go the support forum for the plugin itself (and there you’ll see others are having the same problem you are and there doesn’t seem to be any response from the plugin author. Other users have posts fixes):
http://wordpress.org/support/plugin/comprehensive-google-map-plugin
Forum: Fixing WordPress
In reply to: Getting "Fatal error: Call to undefined method"The reason I ask is because
is_main_query()wasn’t added to WordPress until version 3.3. If you are using an older version of WordPress then 1) You need to update WordPress for this theme to work and 2) running an older version of WordPress is a severe security risk.Forum: Fixing WordPress
In reply to: Getting "Fatal error: Call to undefined method"What version of WordPress are you using?
Forum: Fixing WordPress
In reply to: How to remove all page/post titlesRegardless if you use a child theme or modify the theme you downloaded (and WPyogi is right, if you update the theme, these changes will be overwritten and lost), to remove the title from the posts, do the same thing with
content-single.phpas you did forcontent-page.php.Forum: Fixing WordPress
In reply to: Arabic language ?It could be a character encoding issue. Check wp-config.php. You should see a line like this:
define('DB_CHARSET', 'utf8');If not, add it.
I’ve had others tell me the plugin Convert WP Database to UTF-8 has helped when Arabic displays as ?????.
It’s not clear to me if this is a new install or if you have content from your previous install. This happens sometimes when moving to a newer version of MySQL. Never the less, do back up your data (content) first if there is any from your previous install.
Forum: Fixing WordPress
In reply to: How to remove all page/post titlesIn the theme file content-page.php, remove or comment out lines 9-11:
<?php if(trim(get_the_title()) != ""): ?> <h1 class="entry-title"><?php the_title(); ?></h1> <?php endif; ?>It’s specifically line 10 that outputs the title
<h1 class="entry-title"><?php the_title(); ?></h1>but if you’re not going to display the title, then you don’t need the logic around it.
Forum: Fixing WordPress
In reply to: Arabic language ?Have you looked at the following Codex page?
Forum: Fixing WordPress
In reply to: Temporarily disable RSS feedI’d just Disable Feeds plugin (or one like it).
I can’t tell from the OP’s question and WPyogi’s response if this site is or isn’t on WordPress.com, but if you can install plugins, then that would be the easiest way.
Forum: Fixing WordPress
In reply to: Fault in database after hosting changeAre there any other error messages? (with a filename and line number) If not (and if it isn’t set already), set DEBUG to true in your wp-config.php. Need to know where the SQL is being generated.
Forum: Fixing WordPress
In reply to: Sharing ad revenue with authorsWe use what they call “custom targeting.” We just send a key/value pair where the value is an internal code for the feature. (in theory, our creators can have multiple features, but most don’t. we pay per feature, so that’s how we track, but you could pass anything that was relevant to your business)
Forum: Fixing WordPress
In reply to: Fault in database after hosting changeYou’re not selecting anything:
SELECT FROM wp_posts WHERE 1=1 ORDER BY wp_posts.post_date DESC;should be something like:
SELECT * FROM wp_posts WHERE 1=1 ORDER BY wp_posts.post_date DESC;or
SELECT post_title, post_author FROM wp_posts WHERE 1=1 ORDER BY wp_posts.post_date DESC;And
WHERE 1=1seems superfluous, but it may be something in the context I’m not seeing with one snippet of SQL.