John Huebner
Forum Replies Created
-
Forum: Plugins
In reply to: [Private Content] Update ProblemsLooking at it some more it appears that the shortcodes have changed
from [pc-pvt-content allow=”53″]
to [private role=”administrator”]
Any way for me to correct this without needing to edit every page on this site?
Yes, the plugin does support adding fields to categories and custom taxonomy terms. You do this when creating a field group and assigning it a location(s)
Forum: Plugins
In reply to: [Dynamic Select for Contact Form 7] Manually set default selectedCurrently there isn’t a way to set the default value. This would be a good addition, but I need to figure out how I can allow setting a default value as well as still be backward compatible.
I’ve put it on my to do list https://github.com/Hube2/contact-form-7-dynamic-select-extension/issues
Forum: Plugins
In reply to: [Dynamic Select for Contact Form 7] Building a filter for Woo Productsbasically you would do something like this
$label = $post->post_title.' '.$post->post_date;you may want to do more than that to format the day the way you want it to display.
If you still need help you should probably start a new thread rather than add to an already resolved one.
Forum: Plugins
In reply to: [Dynamic Select for Contact Form 7] Label instead of value in mailI have been looking into this and I can’t seem to figure out how to incorporate pipes and _raw_ into this plugin. The problem here is that the values of the select field do not actually appear in the cf7 tag to cause it do the processing that would normally be done in when pipes are included the select values.
I would welcome input on this if there is someone that thinks they can modify this plugin to add this feature. I have this plugin on github https://github.com/Hube2/contact-form-7-dynamic-select-extension, along with my other plugins. I will accept pull requests and give credit to other developers for any contributions. My only request is that the plugin stays focused on dynamic select fields and does not expand into other types of fields.
Forum: Plugins
In reply to: [Dynamic Select for Contact Form 7] simplehidden instead dynamicselectThank you for letting me know about this bug.
Please update your plugin to v1.1.1 and let me know if this corrects the problem or if you’re still having problems with it.
Forum: Plugins
In reply to: [Dynamic Select for Contact Form 7] simplehidden instead dynamicselectIt appears that there was a bug introduced into this plugin the last time I updated it. Working on the problem now.
Forum: Plugins
In reply to: [Dynamic Select for Contact Form 7] A demo of this pluginWhat kind of a demo are you looking for? What aspect of this plugin are you looking to see in action?
Hi,
You can put your filter function into your function.php file in your theme.
You don’t need to call the function, this plugin deals with calling your filter.
// example of what goes in functions.php // in add filter // "my-filter-name" is the name of the filter // Enter this into the filter field when creating the CF7 field // "my_filter_function" is the name of the function that is called add_filter('my-filter-name', 'my_fitler_function', 10, 2); function my_filter_function($value, $args) { // set value and return $value = 'my value'; return $value; }Hoping this helps.
Forum: Plugins
In reply to: [Dynamic Select for Contact Form 7] Label instead of value in mailThanks for the info, I will add this to my to-do list over on the github repo https://github.com/Hube2/contact-form-7-dynamic-select-extension. Going to have to dig through the code and see when I have some time.
Forum: Plugins
In reply to: [Dynamic Select for Contact Form 7] Label instead of value in mailRight now I’m just returning the selected value as sent in $_POST.
Can you post a link to documentation for this on standard select fields in CF7 and I’ll dig through it and the CF7 code to see what I can do.
In the mean time you can set the label and value to the same value in your filter. That was my thinking when I created the plugin so that it could be as simple a possible and let the filter make all of the decisions.
Forum: Plugins
In reply to: [Dynamic Select for Contact Form 7] Building a filter for Woo ProductsThanks for posting this great example of using this plugin.
Forum: Plugins
In reply to: [Blunt AJAX] No working exampleSorry, I took done that plugin and the site. The parametric search plugin was too bugging and I didn’t want people using it until I could work some major kinks out of it. The documentation here is complete. If anyone has specific questions about the documentation or how to do something specific I can try to answer questions. The focus of this plugins is other developers.
Not sure, it works fine for me as long as the email address I’m sending to is not also the address I’m sending from. Also the from needs to match the email account that’s sending the email. We generally make our clients set up email addresses specifically for this purpose, so in your case we would use info@domain.com for the SMTP to send the emails.
This has to do with Gmail and having the same address in the from as the to. If I do testing using my email to test with and send those emails to myself then it does not matter what is in the reply to, when I hit reply it goes to myself again. I’m sure this happens with other emails services and clients. You really need a separate email address to send all emails from.