Jonathan Goldford
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: In what order does WordPress process CSS files?The theme will dictate the order of the css files and using a child theme will allow you to override files in the parent theme. Check out http://codex.wordpress.org/Child_Themes#Template_files for more information on overriding parent theme files.
If you know how to view the source of your pages, you can just look at the code to see which files are being loaded and in what order. As I’m sure you know, if CSS rules have the same specificity, the one loaded last will be used.
Sorry I can’t be more helpful with the Mystique theme specifically. I’ve never worked with it before.
Forum: Fixing WordPress
In reply to: Category to tag converterAre the instructions at http://wordpress.org/extend/plugins/wpcat2tag-importer/installation/ helpful? Try going to the Tools –> Import screen and see if you can find what you’re looking for there.
Forum: Fixing WordPress
In reply to: Hiding my website until it's readyWhen you say there were “only two choices” where were you seeing that? Was that through your host or through the WordPress admin section?
Also, who is your host and have you tried contacting them for help?
It looks like it fixed itself when I moved from localhost to an external server. I don’t know why that would fix it, but it seems alright now. Maybe there was an indexing issue.
I appreciate you checking in on it. If you ever need a review or testimonial I’d be happy to give one. Not only is the plugin awesome, but your support has been great.
Forum: Plugins
In reply to: [W3 Total Cache] W3 Total Cache and Backup BuddyWe are using BackupBuddy version 3.0.40.
For some reason this morning everything was working fine with no errors at all. I wish we could provide a fix here, but unfortunately we don’t really know what happened.
We think it might have had something to do with cron not working correctly, but we aren’t sure. Good luck figuring it out.
Forum: Plugins
In reply to: [W3 Total Cache] W3 Total Cache and Backup BuddyFor some reason this morning everything was working fine with no errors at all. I wish we could provide a fix here, but unfortunately we don’t really know what happened.
We think it might have had something to do with cron not working correctly, but we aren’t sure. Good luck figuring it out.
Thanks a lot for pointing me in the right direction. This was a bug in the Photo Galleria plugin. I added a line of code that checks to see if we’re in search and not run if we are. That fixed the problem. In case anyone needs it I’m using Photo Galleria 0.3.3 and I adjusted photo-galleria.php from:
$attachments = get_children("post_parent=$id&post_type=attachment&post_mime_type=image&orderby={$orderby}");To:
if(!is_search()) $attachments = get_children("post_parent=$id&post_type=attachment&post_mime_type=image&orderby={$orderby}");Thanks again for the help. I’ll mark this as resolved.
I am also running into the same problem. All we did was move the website to a different domain on the same server and the rewrite issues started popping up. All we changed to:
– A new domain
– A new IP address
– A new SSL certificate.The server itself is the same. Any suggestions on how to fix this? I’ve read through all the other forum posts on this, and it seems like most people suggest going to basic page caching and turning off url rewriting for minify, but those don’t seem to be best for performance.
Thanks.
Forum: Plugins
In reply to: [W3 Total Cache] W3 Total Cache and Backup BuddyAre you getting any kind of error from BackupBuddy? What happens when you try to make a backup?
We are running into a similar issue over here, but we are also having issues with getting W3 Total Cache working. Is W3 Total Cache working correctly for you?
Forum: Plugins
In reply to: [Plugin: Gravity Forms Custom Post Types] Automatically Choose CategoryI’m not exactly sure how you have everything setup, but you most likely want to use the gform_pre_submission hook to adjust the form. Since I did this a while ago, I’ve forgotten a lot of how it is done, but the code I have within the hooked function is:
//Set the category to be education
//Education is category ID 9
$_POST['input_9_1'] = 9;
This is where education was the category I wanted chosen by default.
I hope that’s at least slightly helpful for you.
Forum: Plugins
In reply to: Using wp_editor() to Replace Default Category Description TextareaFor some reason that link doesn’t seem to be working for me. Am I missing something?
Thanks for the help.
I was able to fix this by using a modified version of this shortcode: http://css-tricks.com/snippets/wordpress/disable-automatic-formatting-using-a-shortcode/
It strips out formatting for all content within the [raw][/raw] shortcode.
Did any of you guys ever find a solution to this problem? Do you have to reset all of the thumbnails for this to work?
The sitemap is located at http://www.fordasphalt.com/sitemap_index.xml. For some reason Google is no longer giving me the error now. Everything seems to be working.
Even after clearing the sitemap from the page cache, Google had been saying it was in an incorrect format. Maybe it takes Google a while to refresh on their end.
All is well now though. Thanks for the help.