jeffinmotion
Forum Replies Created
-
Hi @caimin_nwl,
I sent the access links / credentials to our staging site via the Events Manager contact page with a link back to this post.
FYI, my relevant plugin versions (all should be latest)
Events Manager: Version 5.8.1.3
Events Manager and WPML Compatibility: Version 1.1WPML Multilingual CMS: Version 3.9.3
WPML CMS Nav: Version 1.4.22
WPML Media: Version 2.2.3
WPML Sticky Links: Version 1.4.3
WPML String Translation: Version 2.7.3
WPML Translation Management: Version 2.5.2@netweblogic thanks so much! I absolutely missed the little globe. All set now.
Best,
JeffHi @angelo_nwl,
My apologies for the slow response—I didnt seem to get a follow-up email.
EM version: 5.8.1.1
EM WPML: 1.0.1Our site is on a staging server that requires basic auth access, how can I securely send you the credentials?
Edit: I have sent you the access info via your contact form on your website: https://wp-events-plugin.com/contact-us/
Best,
Jeff- This reply was modified 6 years, 10 months ago by jeffinmotion.
Thanks!
Forum: Plugins
In reply to: [WP Easy Post Types] [Plugin: WP Easy Post Types] Get Checkbox value in ThemeTJList,
No you aren’t missing anything! This got me stuck too. There’s just a bug in the plugin. Go to line 63 of classes/custom-checkbox/custom-checkbox.php and change this line:
$value=$this->load_fields(array('postid'=>$postid, 'field_name'=>$name));
to:
$value=$this->load_fields(array('postid'=>$post->ID, 'field_name'=>$name));
and that should do it!
Forum: Themes and Templates
In reply to: is_home() not working in functions.phpHi David,
Yes, you surmise correctly that I am trying to conditionally include a script on the homepage — and the solution you describe is exactly how I initially worked around this issue! I appreciate your response.
However, I really like the mechanism that WordPress has for queueing/dequeuing scripts with support for dependencies. It’s a really clean way to declare my scripts and I’d love to use it — so I poked around the action reference and answered my own question.
The answer is: is_home() will work the way I want it to if I register my function under the get_header action. Like:
add_action('get_header', 'custom_head');
Thanks!