neonWired
Forum Replies Created
-
The reason there are so many problems is because the plugin doesn’t register it’s scripts. Bit of a novice mistake.
Forum: Installing WordPress
In reply to: Redirect loop error during installBecause the installation hasn’t completed, as far as I know, it will keep trying to install which is what causes the loop so when you go to https://chrysalis.neonwired.net/blahblahblah it’s just ending up back at wp-admin/install.php with the loop.
Forum: Installing WordPress
In reply to: Redirect loop error during installURL is https://chrysalis.neonwired.net. I haven’t created a .htaccess file yet. All I have done is upload the files.
Forum: Fixing WordPress
In reply to: Constant 500 Internal Server ErrorsNot sure they can do wordpress support
Forum: Plugins
In reply to: WP_Query – Search by post_titleThe reason I’m using WP_query is because I am searching a custom_post_type and searching post_meta and a custom taxomony also. WP_Query can do all that except post name.
Forum: Plugins
In reply to: $wpdb class, how to update on duplicate keyI know but a function or argument in the insert function would be useful
Forum: Plugins
In reply to: WP_Query – Search by post_titlewhy not?
Forum: Plugins
In reply to: FLV Embed Not workingI had some issues with this plugin too, there was a line break in the code that for some reason was causing wordpress to insert a paragraph tag in the middle of the javascript code. It’s around line 1117 in flv-embed.php, removing the black line seems to stop it. Although this wasn’t the end of the issues I had. I haven’t got it to actually load my FLVs yet.
Forum: Plugins
In reply to: [eShop] [Plugin: eShop] Generate discount code when user registersI figured out you can just insert a code into the discount code table in the user_register action. No problem.
Forum: Plugins
In reply to: [jQuery Colorbox] [Plugin: jQuery Colorbox] Breaks tinymce visual editorYou’re right, thanks
Forum: Plugins
In reply to: [jQuery Colorbox] [Plugin: jQuery Colorbox] Breaks tinymce visual editorIt’s my own theme but it still happens with the Twenty Ten theme, i’ve tested all plugins i’m using (listed below) and jquery colorbox was the one that seems to be causing the issue. It actually causes a javacript error when you click the ‘visual’ button: “cannot call method ‘getLength’ of null”
Does this plugin even add any javascript to admin pages?
- Exclude Pages from Navigation
- Google XML Sitemaps
- Headspace 2
- Insert Link Class Plugin
- MM Forms Pro
- NextGEN Gallery
- Page Menu Editor
- WordPress Hit Counter
- YouTube Embed
YD recent posts widget will do what you need without any hacking but i needed multiple instances which it doesn’t do.
Forum: Fixing WordPress
In reply to: theme preview stopped workingTurned out to be a browser cache issue, strange it never happened before.
I had the same issue with this plugin and hacked it. If you find this line around line 455:
if (!$hideposttitle) $postlist .= '<a href="' . get_permalink($post->ID) . '" title="'. $post_title .'" >' . $image . $post_title .'</a>';
and replace it with:
if (!$hideposttitle) { $postlist .= '<a href="' . get_permalink($post->ID) . '" title="'. $post_title .'" >' . $image . $post_title .'</a>'; } else { $postlist .= '<a href="' . get_permalink($post->ID) . '" title="'. $post_title .'" >' . $image . '</a>'; }
so if hide post titles is set to true it displays an image link instead of nothing.
Forum: Fixing WordPress
In reply to: Possible bug with titleless pages and permalinksAny comments?