jtdesign00
Forum Replies Created
-
Beautiful! Works perfectly. Sorry again for my ignorance on the subject.
Hi Otto,
thanks for the quick response! I apologize for my ignorance, but I’m not 100% on how to implement that then.This is what I’ve tried so far just as something simple and it doesn’t return anything.
<div id="profile">If Profile</div> <div id="guest">If Guest</div> <script> if (sfc_get_user()) { document.getElementById('guest').style.display = "none"; //hide guest document.getElementById('profile').style.display = "block"; //show profile } else { document.getElementById('guest').style.display = "block"; //show guest document.getElementById('profile').style.display = "none"; //hide profile } </script>
Thank you again and thanks for the awesome plugin!
Hey Chris,
Thanks so much for the quick response. I had tried working with the CF7_get_current_user as a starting point before searching the forums. Cimy writes the user meta to its own table and I don’t have the programming knowledge to create the calls myself.I found WP User Manager which adds the meta info into the same table and am using that instead of the Cimy plugin. That made it really easy to use your code with the additional keys we created!
For anyone else who may find this useful, we’re using the default code to call in the standard user info. For example: [dynamictext user-email “CF7_get_current_user key=’user_login'”]
Using CF7 DTX in conjunction with WP User Manager, we’ve created additional user fields such as ‘phone’ and can easily call in the info dynamically. For example: [dynamictext user-email “CF7_get_current_user key=’wpum_phone'”] ‘The wpum_’ is a default prefix to the key when using WP User Manager.
Hey Chris,
Great plugin! We’re using Cimy User Extra Fields to get more info when a user signs up to use the site. We’d like to dynamically fill in the contact form with the custom user data when a user is signed in. Is it possible to ties these 2 plugins together somehow?Awesome plugin! The default info is so easy to use! Thanks in advance.
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Redirect to Thank you page on submitBeautiful! Thanks guys!
What about if you have separate forms that you wish to redirect to separate pages. Example: form1 redirects to form1-thanks and form2 redirects to form2-thanks
Thanks in advance!
Forum: Fixing WordPress
In reply to: WP 2.7 Index title fails after upgradeBeautiful!!! Thanks so much!!!
Forum: Fixing WordPress
In reply to: WP 2.7 Index title fails after upgrade<?php if (is_home()) { bloginfo('name'); ?><?php } elseif (is_category() || is_page() ||is_single()) { ?> <?php } ?><?php wp_title(''); ?>
Here is the code I have for the Title Tags. They work fine for the every page but the index. Also, I have upgraded another site to 2.7 that uses the blog as the home page and the title tags are fine. It’s only when another page is set to be the index page.
Thanks in advance for your help!
Forum: Fixing WordPress
In reply to: WP 2.7 Index title fails after upgradeYeah… me too. It’s only in 2.7
I have 2 sites that I’ve upgraded to 2.7 and am not using the blog as the home pages, but rather having a static page as the home pages (same as posts above). So I don’t know if its fine with having the blog on the home page… but any ideas on how to fix this? I’ve tried messing with the php and have had no luck