StarryMom
Forum Replies Created
-
Forum: Plugins
In reply to: [WP eCommerce] PHP error – customer.php line 21It’s a blank line.
She’s on a managed VPS so I told her to contact them to see if they’ve changed anything.
Forum: Plugins
In reply to: [WP eCommerce] PHP error – customer.php line 21Trust me, I’m just as lost as you!
I’m fairly sure it has to do with the upgrade to 3.9 since we didn’t have this previously.
PHP version – 5.4.19
mysql – 5.5.36-cll
No cachingI’m also getting this issue:
Warning: Creating default object from empty value in /wp-includes/capabilities.php on line 657
So I’m sure there is just a conflict there.
Forum: Plugins
In reply to: [WP eCommerce] PHP error – customer.php line 21I can’t, it’s for a client of mine.
I already went through all of the other plugins (deactivating them) and the only time the error comes up is when WP e-commerce is activated (as the ONLY plugin activated).
Forum: Plugins
In reply to: [Custom Comment Form Title] Not working at allWorks perfectly! Switched from
<?php comment_form_title( 'Leave a Reply', 'Leave a Reply to %s' ); ?>
to that snippet.I also had already created a custom comment form function which ALSO solved the issue.
Yay for learning today!
Forum: Plugins
In reply to: [Custom Comment Form Title] Not working at allI’m just going to copy the code from wp-includes and turn it into a custom function in my functions.php
This goes to show how much I want to use your plugin LOL!
Forum: Plugins
In reply to: [Custom Comment Form Title] Not working at allLOL or I could just suck it up and change.
Forum: Plugins
In reply to: [Custom Comment Form Title] Not working at allI never liked doing comment_form in general, however now that I know what you’re updating, it helps me try and figure out how to pull the information!
Forum: Plugins
In reply to: [Custom Comment Form Title] Not working at allOr even (didn’t get a chance to look over your code) pulling the meta?
<?php echo get_post_meta($post->ID, 'Custom Comment Form Title', true); ?>
Forum: Plugins
In reply to: [Custom Comment Form Title] Not working at allIt’s custom… by me lol.
The comment form itself is manually coded into the theme itself, not a function (only the comments themselves are a function) so that’s probably where the issue stands as I’m not using
<?php comment_form(); ?>
Is there a way to pull it manually? Like
<?php echo custom_comment_form_title(); ?>