manon1165
Forum Replies Created
-
Forum: Plugins
In reply to: [Cimy Swift SMTP] Gravity Forms forms not being sentNo. Basically, Gravity Forms isn’t compatible with any of these SMTP plugins if you need to do any sort of complex routing.
But my understanding from the Gravity Forms developers is that they’re working on their own separate SMTP solution that will eliminate this problem.
So going to wait it out and just use one forwarding email in notifications that forwards to all necessary parties.
And I don’t want to use any other form plugin. Gravity Forms is the absolute best right now.
Forum: Plugins
In reply to: [WP Accounting] PHP Script error in Ledgercool! much thanks for the speed. you have a very nice plugin that answers a lot of my needs.
Forum: Plugins
In reply to: [WP Accounting] PHP Script error in LedgerAlso in Ledger screen:
Notice: Undefined index: filter_type in /…/wp-content/plugins/wp-accounting/inc/tables/ledger.php on line 144
Notice: Undefined index: start_date in /…/wp-content/plugins/wp-accounting/inc/tables/ledger.php on line 158
Notice: Undefined index: end_date in /…/wp-content/plugins/wp-accounting/inc/tables/ledger.php on line 161
Notice: Undefined index: start_date in /…/wp-content/plugins/wp-accounting/inc/tables/ledger.php on line 231
End Date:
Notice: Undefined index: end_date in /…/wp-content/plugins/wp-accounting/inc/tables/ledger.php on line 233Notice: Undefined index: filter_type in /…/wp-content/plugins/wp-accounting/inc/tables/ledger.php on line 235
Notice: Undefined index: end_date in /…/wp-content/plugins/wp-accounting/inc/tables/ledger.php on line 235
Notice: Undefined index: start_date in /…/wp-content/plugins/wp-accounting/inc/tables/ledger.php on line 235
Forum: Fixing WordPress
In reply to: How to query posts or attachments in a shortcode?Isn’t it supposed to be:
return $return_string .= ‘</div>’;
Forum: Plugins
In reply to: [WP Mobile Detector] [Plugin: WP Mobile Detector] On MAC detection problemhaving same problem. and there is a link but the View Full Site button doesn’t send you to desktop version.
Forum: Fixing WordPress
In reply to: Fatal error: Out of memory in class-http.phpHad the same problem. When I deactivated all my plugins, it worked beautifully. Then after update, reactivated plugins. It seems it may be a plugin conflict problem.
Forum: Requests and Feedback
In reply to: www.remarpro.com SearchNever knew this. Much thanks!
Forum: Requests and Feedback
In reply to: www.remarpro.com SearchGlad to help, and no problem. It’s a good thing I keep a bookmark list of your codex topics in Evernote ??
Thank you! Images now present and accounted for!
Forum: Networking WordPress
In reply to: Child theme do not showO and I’m not using Multisite. It’s a standard single site install. And yes, both themes are in their separate folders under the Theme directory, as according to WordPress Codex on Child Themes.
Forum: Networking WordPress
In reply to: Child theme do not showI’m having the same issue as well.
My child theme’s style.css has this:
/*
Theme Name: Child Silvano
Description: Child theme for the Eatery theme
Author: Manon Michel
Template: Eatery
*/And my parent theme’s style.css has this:
/*
Theme Name: Eatery
Theme URI: https://manond.com/
Description: Starter framework
Author: Manon Michel
Author URI: https://manona.com/
Version: 0.1.0
*/But the child theme is not showing up at all in my Themes. I can only see the parent theme and Twenty Ten.
Have no idea what’s happening. Any help would be appreciated.
Forum: Plugins
In reply to: [More Fields] More Fields plugin – documentation & check if value existsForget it. Figured it out myself. Just had to change the strtotime to echo rather than as part of the variable:
<?php $exhibitionstartdate = get_post_meta( $post->ID, 'exhibition_start_date', true ); if(!empty($exhibitionstartdate)) { echo '<div class="cf-exhibition-date"><span>Exhibition Date: </span>' .date( "M j",strtotime( $exhibitionstartdate ) ); } ?>
Weird. Couldn’t find a solution anywhere on the net, and just kept playing around with it…
Forum: Plugins
In reply to: [More Fields] More Fields plugin – documentation & check if value exists@danno63: how did you accomplish this? i’m having the same problem. even though i used the following conditional statement on sites before the plugin was upgraded, but it’s no longer working:
<?php $exhibitionstartdate = date( "M j",strtotime( get_post_meta( $post->ID, 'exhibition_start_date', true ) ) ); if($exhibitionstartdate !== '') { echo '<div class="cf-exhibition-date"><span>Exhibition Date: </span>' .$exhibitionstartdate; } ?>
jan 1, 1970 shows up. the same for time fields. 12:00am – 12: 00am shows up even though the field is completely empty.
@kalstrom: if you have any ideas how to implement a conditional, it would be great to know.
Forum: Plugins
In reply to: [Plugin: Events Manager] No fields required on RSVP formdidn’t work for me. don’t know what i did wrong.
Forum: Fixing WordPress
In reply to: [Plugin: Google Analyticator] Analyticator causes Widget Page errorI don’t get any error messages, just all my widgets disappearing on the admin side, though they’re working just fine on the frontend. Plus because I can’t see any widgets in the widgets page, I can’t add or delete any of them as well. Not a big problem as I’ll just add the code to my footer manually.