osdwebdev
Forum Replies Created
-
Forum: Reviews
In reply to: [OSD Exclude From Search Results] Works as describedthanks!
Forum: Plugins
In reply to: [OSD Exclude From Search Results] Exclude custom post type not workingGreat! Good ratings are appreciated π
Forum: Plugins
In reply to: [OSD Social Media Sharing] Update ProblemGoldHatTrick,
The update we discussed has been released. To recreate the pinterest link it would be like this:
http://www.pinterest.com/pin/create/button/?url=[page]&description=[title][page] – this will be the page that the user is on
[title] – this will be the title of the page that the user is onThanks!
Forum: Plugins
In reply to: [OSD Subscribe] Not able to modify the Subscribe text field and buttonravindrasahu,
could you please re-post this question on our Mailchimp Plugin support page?
https://ww.wp.xz.cn/support/plugin/osd-mailchimp-forms
Thank you!
Forum: Plugins
In reply to: [OSD MailChimp Forms] Changing the "Processing" messageAdded this to the updates list…
Right now there is not a way to change that message without editing the code of the plugin. If you have FTP access the file located at wp-content -> plugins -> osd-mailchimp-forms -> includes -> js.php
line 65 reads
messages[i].innerHTML = "Processing...";you will need to change that to
messages[i].innerHTML = "Processando...";I am sorry that there is not an easier way to change that out of box. The plugin was not planned to be multilingual. We will include the ability to change this message in the update.
thanks – OSD
Forum: Plugins
In reply to: [OSD Exclude From Search Results] Exclude custom post type not workingwolfhelp,
Thank you for noticing this. I have released an update. Please get it and let me know if it resolves your issue.
Thanks! – osd
Forum: Plugins
In reply to: [OSD Social Media Sharing] Share to Google Page instead of HomeMediaMania,
I am not sure that I completely understand your question. The google+ sharing button will share the page that you are on to the google+ account that you log into.
So for example if I was on your website and viewing a post called ’10 ways to share blog posts’ and clicked the share on google+ icon a dialog box would open to sign me into google and then share the ’10 ways to share blog posts’ on the feed of whatever google account that I just logged into.
If you want to share a google+ member page with someone it would just be a link to said google+ members profile. You can achieve this effect by adding a custom icon and link.
If I haven’t answered your question please explain in a little more detail and we will get you what you need to have the effect you are looking for.
Thanks – OSD
Noted on our list for updates.
Forum: Plugins
In reply to: [OSD MailChimp Forms] How can I change the text for the submit button?no, problem.
Forum: Plugins
In reply to: [OSD MailChimp Forms] Focing a value to be selected in the formThank you for providing a usage scenario outside of what we use the plugin for here to help improve it as a good and usable plugin. The main reason we created it was to cover the short comings of the other free plugins.
Thank you again – OSD
Forum: Plugins
In reply to: [OSD MailChimp Forms] Focing a value to be selected in the formIn your list go to: manage subscribers > groups
This is where you can have “checkboxes” mailchimp handles them in a special way and calls them groupings. I believe this is because the field is not a name => value situation. It is a name => array(value1, value2, …)
Having said that, no, we have not incorporated mailchimp Groupings into OSD MC forms. Since you have pointed it out I really think it needs to be.
I will definitely be adding this to the new release of OSD MC forms.
Forum: Plugins
In reply to: [OSD MailChimp Forms] Focing a value to be selected in the formAh if you are editing the files throught the WordPress interface it could have some funky copy / pasting results. Normally I FTP in to the host and edit the files with code editing software. Here is a copy will all quotes fixed –
function mc_add_preset_field_casar($fields) { $fields .= "<input type='hidden' value='Vou Me Casar' name='fields[SILO]'>"; return $fields; } add_filter('osd_mc_forms_1', 'mc_add_preset_field_casar', 10, 1); function mc_add_preset_field_mae($fields) { $fields .= "<input type='hidden' value='Vou Ser Mae' name='fields[SILO]'>"; return $fields; } add_filter('osd_mc_forms_2', 'mc_add_preset_field_mae', 10, 1); function mc_add_preset_field_retratos($fields) { $fields .= "<input type='hidden' value='Retratos' name='fields[SILO]'>"; return $fields; } add_filter('osd_mc_forms_3', 'mc_add_preset_field_retratos', 10, 1); function mc_add_preset_field_fotografia($fields) { $fields .= "<input type='hidden' value='Fotografia' name='fields[SILO]'>"; return $fields; } add_filter('osd_mc_forms_4', 'mc_add_preset_field_fotografia', 10, 1); function mc_change_submit_text($submit) { $submit = str_replace("Submit", "Inscrever-se", $submit); return $submit; } add_filter('osd_mc_forms_1', 'mc_change_submit_text', 10, 1); add_filter('osd_mc_forms_2', 'mc_change_submit_text', 10, 1); add_filter('osd_mc_forms_3', 'mc_change_submit_text', 10, 1); add_filter('osd_mc_forms_4', 'mc_change_submit_text', 10, 1);Forum: Plugins
In reply to: [OSD MailChimp Forms] Focing a value to be selected in the formAh, I am still seeing some right and left single quotes in there around the values. clean up those and see if it works. IE value=βRetratosβ should be value=’Retratos’
Forum: Plugins
In reply to: [OSD MailChimp Forms] How can I change the text for the submit button?It is the double quotes around the replacement text for the submit button. They need to be the straight double quote. like ” not β
here it is with the straight double quotes:
function mc_change_submit_text($submit) { $submit = str_replace("Submit", "Inscrever-se", $submit); return $submit; }Did you imagine you would be editing php and writing WordPress filters? π
thanks -osd
Forum: Plugins
In reply to: [OSD MailChimp Forms] Speeding up the Form loading timeOk, we will add it to the implementation list π