ruffneck119
Forum Replies Created
-
Not multi-site I will try with another admin account.
I was using Better WordPress Minify so I turned it off and it solved the problem.
I will try another minify plugin to see if it’s compatible.
Has anybody done this before? I just need to edit the gallery shortcode output.
Forum: Plugins
In reply to: [Contact Form 7] CF7 Server/Ajax Error (arrow just spins)Figured out the issue. I took out the code from the plugin script.js file:
data = data.substring(data.indexOf(“{“));
data = $.parseJSON(data);
Because this kept being called over and over again:
data: { ‘_wpcf7_is_ajax_call’: 1 },
dataType: ‘json’,
success: function(data) {Forum: Plugins
In reply to: [Contact Form 7] CF7 Server/Ajax Error (arrow just spins)The way jQuery is called in my theme is like this (in functions.php):
function load_jquery() {
// only use this method is we’re not in wp-admin
if (!is_admin())
{
wp_deregister_script( ‘jquery’ );
wp_register_script(‘jquery’, ”, FALSE, ‘1.8.3’);
wp_enqueue_script(‘jquery’);
}
}
add_action(‘template_redirect’, ‘load_jquery’);And then it is loaded in my header:
<script type=’text/javascript’ src='<?php bloginfo(‘template_directory’); ?>/js/jquery-1.8.3.js’></script>Forum: Plugins
In reply to: [Contact Form 7] CF7 Server/Ajax Error (arrow just spins)I have the wp head and wp footer. No script conflicts in firebug. Validation was fine.
This is the only error I get on submission:
http://screencast.com/t/drXdlRbn
http://screencast.com/t/qxtuLZNhJForum: Plugins
In reply to: [Contact Form 7] CF7 Server/Ajax Error (arrow just spins)So I figured it’s not the server, but I am still having the same issue. I have no clue whats wrong. I disabled all other plugins and a few other scripts now when you do not enter the form right it takes you to another page and the css is messed up for the warning messages.
Forum: Plugins
In reply to: [List category posts] Fatal Error: Call to undefined method CatListDisplayerI am not sure when the issue came up (I think when I upgraded to WP 3.5), but, I fixed it by updating the template files in my themes folders: /list-category-posts/.
Just took out the old files and put in the new (default.php).
Forum: Fixing WordPress
In reply to: Error: Files in directory not found even though they are there.I found the answer right here:
http://kb.siteground.com/how_to_exclude_a_folder_from_wordpress_permalinks/
Basically disable re-write rules for sub directories.
AWESOME.
Forum: Fixing WordPress
In reply to: Sorting Tags by Posts Leads to Page Not Found (404)So I tried everything on the list and this site still cannot sort tags. Has anyone else had this issue and fixed it?
Forum: Fixing WordPress
In reply to: Sorting Tags Leads to 404I am having this same issue no one seems to acknowledge the error. People suggested disabling all plugins and trying a different theme but I keep getting the same error.
As a <a href="http://www.nblawgroup.com/personal-injury-lawyer-los-angeles/">Los Angeles personal injury lawyer</a>,Oops it turned it into a link.
Forum: Fixing WordPress
In reply to: Sorting Tags by Posts Leads to Page Not Found (404)If I disable my theme I will have to put back all the custom settings for it and the site cannot have any downtime.
Oh well. I was hoping someone else has had the same problem and actually fixed it.
Forum: Fixing WordPress
In reply to: Sorting Tags by Posts Leads to Page Not Found (404)I did the plugin thing. I cannot disable my theme or re-upload everything. It will sort the tags by name though.
PS: just upgraded to 3.4 still the same deal.
So there is no alternative?