WebCodin
Forum Replies Created
-
Forum: Plugins
In reply to: [WCP OpenWeather] DatetimeHi gri0,
Мы исправили эту проблему. Вы можете обновить плагин и проверить.
We’ve fixed this issue. You can update plugin and check.Forum: Reviews
In reply to: [WCP OpenWeather] Easy to use, and no problemHi sobydesign,
Thanks for your feedback. We’re pleased that you appreciate our plugin.
With kind regards,
WebCodin TeamForum: Reviews
In reply to: [WCP OpenWeather] v.1.0 was just a good, but now this plugin is perfect!Grio,
Спасибо за отзыв. Мы рады, что наш плагин Вам понравился. 🙂
Thanks for your feedback. We’re pleased that you appreciate our plugin.
With kind regards,
WebCodin Team.Forum: Reviews
In reply to: [WCP OpenWeather] v.1.0 was just a good, but now this plugin is perfect!Hi Grio,
We added TinyMCE button for shortcode generation: http://c2n.me/3kRo7F6.
Based on selected plugin language, when you add city name – http://c2n.me/3kRoIXe – the city name will be displayed on your language. As result you will have following shortcode: http://c2n.me/3kRp1OE and after the page saving: http://c2n.me/3kRpelb – result on the site fronted.
Widgets are working in similar way.With kind regards,
WebCodin Team.Forum: Reviews
In reply to: [WCP OpenWeather] v.1.0 was just a good, but now this plugin is perfect!Hi Grio,
We updated our plugin with multilingual funcionality. Currently we are support only 3 languages: english, russian and ukrainian, but we are working on adding of other translation.
With kind regards,
WebCodin Team.Forum: Plugins
In reply to: [WCP OpenWeather] you just broke it!WeBuyPinball,
Seems we have found this issue. Please update plugin to the newest version.
Pls let us know if this will help.
Forum: Plugins
In reply to: [WCP OpenWeather] you just broke it!Dear Aaron,
We apologise for this inconvenience.
Could you please try to clean up site cookies in browser?
If it is not help, could you please send more details about this issue, perhaps you can send error message or something else.
We are waiting on your feedback.
With best regards,
WebCodin WordPress TeamForum: Reviews
In reply to: [WCP OpenWeather] v.1.0 was just a good, but now this plugin is perfect!Hi gri0,
Thanks for your feedback.
1. Could you please send theme name and OS/browser with this issue or link on the site where we can check it?
2. Multilingual support will be added in the next plugin release.With kind regards,
WebCodin Team.Forum: Plugins
In reply to: [WCP Contact Form] PlaceholdersHi Tynermeister,
It is not a problem.
Thank you for using our plugin!Forum: Plugins
In reply to: [WCP Contact Form] PlaceholdersHi Tynermeister,
As mentioned in the previous post, current plugin functionality basically do not support placeholders. We will add this in future releases.
As temporary solution for developers purposes we added some hook as described above that should be added in functions.php file of your theme.
This code allows you to manually add placeholders for form fields that configured in admin panel.For example, if you have a form with fields: Name, Email, Message, you will need to add following code in the functions.php:
add_filter( 'wcp_contact_form_get_fields_settings', 'tm6830_my_placeholders' ); function tm6830_my_placeholders ($data) { foreach ($data as &$item) { switch ($item['name']) { case 'Name': $item['atts']['placeholder'] = 'Name Placeholder Text'; break; case 'Email': $item['atts']['placeholder'] = 'Email Placeholder Text'; break; case 'Message': $item['atts']['placeholder'] = 'Message Placeholder Text'; break; default: break; } } return $data; }Please let us know if this is help.
Forum: Plugins
In reply to: [WCP Contact Form] PlaceholdersHi Tynermeister,
We resolved this issue. If you have other questions you can reopen this thread.
Forum: Plugins
In reply to: [WCP Contact Form] Repeated 404 errors for four WCP Contact filesHi Mike,
OK, we will wait on your feedback.
Regarding to our previous message about BulletProof Security with copy-paste form plugin changelog, if we understand principles of work of this plugin correctly it works in following way: when you load BSP plugin pages in the Admin panel, the plugin adds suffix “roque-script-nulled” to all other javascripts and css files that are not related to this plugin and are not WordPress native scripts.
Since these scripts with the suffix does not exist, they are not loaded and an error 404 is written to the log.
Probably this plugin tries to secure its pages, but this does not mean, that scripts are really malicious or infected.
The List of files that you sent (js and css files) are using for work and styling in the Admin Panel for our plugin. Seems, BulletProof Security marked them as “roque-script-nulled” as described above.
We hope that this info help you to find out with this issue.
Forum: Plugins
In reply to: [WCP Contact Form] PlaceholdersHi Tynermeister,
We are sorry for delay with the answer.
We strongly recommend do not change plugin code directly in the plugin folder, because you can loose your changes after the plugin update to a new version.
Regarding to your question about the placeholders, currently plugin functionality do not allow to add placeholders to form fields. We will add this functionality for future updates.
But, we have added possibility to add placeholders via specific filter directly in function.php in your theme.
To use this filter you will need:
1) Update plugin to the latest version (v2.1.1)
2) Add to function.php in your theme following code:add_filter( 'wcp_contact_form_get_fields_settings', 'tm6830_my_placeholders' ); function tm6830_my_placeholders ($data) { foreach ($data as &$item) { switch ($item['name']) { case 'My Field': $item['atts']['placeholder'] = 'My Placeholder'; break; case 'My Field 2': $item['atts']['placeholder'] = 'My Placeholder 2'; break; //... default: break; } } return $data; }Where,
‘My Field’, ‘My Field 2’,… – values of the “Name” field from the settings table for which we want to add placeholders;
‘My Placeholder’, ‘My Placeholder 2’, … – corresponding placeholders values.Please let us know, if this information help you.
Forum: Plugins
In reply to: [WCP Contact Form] Repeated 404 errors for four WCP Contact filesHi Mike,
Have you any news about your issue or we can resolve this topic, because this issue does not relate directly to the plugin functionality?
Forum: Plugins
In reply to: [WCP Contact Form] Where is the "unique form id"??Hi, amodoke,
We added useful hints in the settings of the contact form, hot-button for shortcode adding in the TinyMCE toolbar and other features in the new plugin release. Also we reorganized and improved plugin documentation for better understanding (Description/Installation/FAQ).
As additional, you can find extended plugin documentation on our demo site.