Haz
Forum Replies Created
-
Forum: Plugins
In reply to: Error loading stylesheet: A network error occurred loading an XSLT stylesheetI am having the same problem. You posted 2 weeks ago. Has anyone gotten back to you yet?
When I try to use my XML Sitemap builder, I generate the sitemap and I get the following message when I check the sitemap:
Error loading stylesheet: A network error occurred loading an XSLT stylesheet:https://www.aquariumcarebasics.com/main-sitemap.xsl
I am running twenty twelve on WP 3.8 and Version 1.4.19 of Yoast.
Thanks!
Haz
Thanks for getting back to me Mikko. That’s what I thought.
Forum: Plugins
In reply to: [Form Manager] Version 1.6.42 Error – Will Not ActivateLOL! seems to be working fine now, thanks!
The last update to WP 3.7.1 seems to have solved the issue.
Forum: Plugins
In reply to: [Yoast SEO] Warning: Missing argumentthe last update seems to have solved the issue. thanks!
Forum: Plugins
In reply to: [Yoast SEO] Warning: Missing argumentMe too, I have the same error…ant ETA on when it will be fixed. And yes, my sitemaps went haywire too….
Warning: Missing argument 3 for wpseo_upgrader_process_complete()
Forum: Fixing WordPress
In reply to: After Update to 3.7 – WP Pages Not FoundHi Tara, thanks for getting back to me so quickly. As it turns out, the issue was on my hosting side…they heeded to update my site’s version of php.
Thanks!
Forum: Plugins
In reply to: [W3 Total Cache] JS minify settings…is there a tutorial?Thanks for the reply. I really appreciate it.
Forum: Fixing WordPress
In reply to: Twenty Twelve / Remove "This entry was posted in…"Thanks a million! It worked!
Forum: Fixing WordPress
In reply to: Twenty Twelve / Remove "This entry was posted in…"ooops, by “language” I mean remove the words “This entry was posted in…” and the like.
I will try this out later tonight and let you know how I make out.
Thanks again for all of your help.
John T
Forum: Fixing WordPress
In reply to: Twenty Twelve / Remove "This entry was posted in…"Wow, this is a great help.
So I just copy and paste this into a new functions.php file and put it into the child theme folder? And this file will take priority over the parent functions.php?
And then I can tweak the language in the child functions.php file?
Do I have it straight?
John T
Forum: Fixing WordPress
In reply to: Twenty Twelve / Remove "This entry was posted in…"Thanks Esmi. Not quite sure how to do that. When I try I always get error messages.
What are the steps?
Forum: Fixing WordPress
In reply to: Twenty Twelve / Remove "This entry was posted in…"I did sort of the same thing. I went to the parent function.php and found the link of code and deleted what I didn’t want, so that took care of that.
The issue is what we update the theme, we will have to always go back and do the same thing manually again.
The better way would be to preserve our changes in a child functions.php, but I can never seem to get it to work without errors.
Any help from the board would be appreciated.
Forum: Plugins
In reply to: [Yoast SEO] Problem with force rewrite titlesActually, I seem to be having the same problem.
I check “force rewrite titles” and everything works fine, and then soon thereafter, the box is unchecked.
Any thoughts?
Thanks, John T
https://www.aquariumcarebasics.com/Forum: Fixing WordPress
In reply to: Child functions.phpwell, that didn’t work, because I had ‘the_excerpt’ as the first argument for remove_filter() and add_filter(). So I removed the first argument for both. My code now reads:
add_action('after_setup_theme','childtheme_adjust_ec_theme_setup'); function childtheme_adjust_ec_theme_setup() { remove_filter('ec_theme_setup'); add_filter('childtheme_ec_theme_setup'); } function childtheme_ec_theme_setup() { global $content_width; if ( ! isset( $content_width ) ) $content_width = 608; //Set content width add_theme_support( 'post-formats', array('aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio', 'chat') ); add_theme_support( 'post-thumbnails' ); set_post_thumbnail_size( 720, 240, true ); add_theme_support('automatic-feed-links'); add_editor_style(); }
And predictably, I am getting the following error message:
Warning: Missing argument 2 for remove_filter(), called in /home/postpr7/public_html/aquariumcarebasics.com/wp-content/themes/Eclipse-Pro-Child-Theme-2013-02-05/functions.php on line 30 and defined in /home/postpr7/public_html/aquariumcarebasics.com/wp-includes/plugin.php on line 260
Warning: Missing argument 2 for add_filter(), called in /home/postpr7/public_html/aquariumcarebasics.com/wp-content/themes/Eclipse-Pro-Child-Theme-2013-02-05/functions.php on line 31 and defined in /home/postpr7/public_html/aquariumcarebasics.com/wp-includes/plugin.php on line 65
I’m stumped as to what the remove and add arguments should be, and also whether my approach is on the right track at all.
Any help regarding this would be sincerely appreciated.