Mailchimp editor integrate with my website - drag-and-drop

Is it possible to integrate Mailchimp Drag & Drop editor to my webpage? (http://blog.mailchimp.com/introducing-mailchimps-new-editor/) In my website users need to design a Email template & i need one drag & drop editor exactly like MailChimp. Does mailchimp provide any widget or something that i can use in my website to get that editor integrated into my website? (I already googled a lot reg the same, could'nt find anything like it)

did you find something similar?
I'm afraid that it's not possible to use MailChimp editor in your own web....
It seems to me one of the best email template editor around,
The only idea I had is to let my customer use Mailchimp and export it into my web application.
Not quite the same but...

Related

Creating a custom Feature/plugin in SuiteCommerce Advanced?

My question is regarding Netsuite SCA/Sitebuilder website related. I would like to know if anyone has tried making custom feature for website in netsuite UI? for eg: we have "Add to cart button show for facet result" checkbox in Suitecommerce configuration OR we have feature like "Password protect entire website" feature in shopping tab of setup website, where if we enable/disable that button it reflect on website directly, just like this if anyone want to create their own functionality and bundle it or create module which can be used in general for other website of netsuite also, How can we do this or is it possible or not? Can we make Reusable module in Netsuite for website purpose?
Thanks!
Yes, I have done it almost all point mentioned above, everything is possible in Netsuite SCA, I am not sure about site builder, But SCA is grt customization capabilities. Do check out my other answer on StackOverflow. Let me know if you have more question.

an online WYSIWYG editor, drag and drop editor

Hello Stack community I m deepak a fellow user of your site.
My question to you was regarding and online WYSIWYG editor, as i wanted to develop a website for a client which is an e-commerce site(dynamic) so I started working on "opencart" and many other tools like "nopcommerce" which haves cart,email notification,sms api and indian currency option available to that particular tool if not then can be integrated later on.
Now the client is in need of a show-off e-commerce site which have the advance views like parallax scrolling if not then extra views to be added which is most likely to be seen in an static show-off site with basic features of email and sms api to be included in the website
I started using template and dreamweaver to work on but I was unable to do so as I don't know about any standalone cart software which can be integrated to a live website or template so i moved on to Drag n Drop website editor which haves indian currency like "wix" but due to some reasons i was limited by the features of "wix"
I wanted to know what are the other option would I have now as the most of the time has passed out and the client want the site to be live in faster basis,
so I am requesting an answer of what to do now is there any other editor like "wix" which have all the three functions (sms api, email notifications,indian currency) available or any other way of using tools, template, software or something like "open cart" or dreamweaver/template if any or else do i have an option to edit the whole view of open cart as I want to edit all the basic structure of open cart and change the colour theme of open cart from blue to orange, if yes then how ?
I hope that i would get the answer or help what i m looking for in community
Regards,
Deepak Verma

Any wordpress form building plugin for my requirements?

I'm looking for a WP plugin which can allow me to create different forms and embed them on pages and following are the requirements:
Only a single textbox required in each of those forms
The submit button will only be shown if a custom entry/answer is inputted into the textbox. (basically a client-side validation)
The submitted answer should be stored in the back-end with the usermeta (or just the username of the user logged in) so that I can export the entries in a format like csv, etc.
Any thoughts?
P.S. I have found one but not sure if the PRO version of this allows me to have a validation for a custom text. This is the plugin: http://wordpress.org/extend/plugins/visual-form-builder/
Gravity Forms is the most robust form builder plugin for WordPress. You can, with the right knowledge and skills, make it do pretty much anything you'd like. You can find it here: Gravity Forms.
Very well, I've found this. There are actually good plugins however, you will have to purchase it. I'm looking for a free one. http://www.webdesignboom.com/2013/formcraft-wordpress-form-builder/

Pre-configure Contact Form 7 inside a WordPress theme

I really like the capabilities of Contact Form 7.
Does anyone know if there is a way to incorporate Contact Form 7 into a commercial theme without the user having to create the form himself by going in the plugin settings and then obtaining an ID for the shortcode?
The desired functionality is for the user to simply use my theme's page template. The custom Contact Form to be programmed inside the template file.
It is important to not use any plugin hacks, so that plugin upgrades will not break the functionality.
Any help will be much appreciated.

How can I program a button on an Access form to link to a browser window that looks up multiple addresses on Google Maps?

My problem is very similar to the one posted here:
http://www.utteraccess.com/forum/Plotting-Addresses-Maps-t1968130.html
except that thread never found any solutions. Basically, I'm working on an Access form that has a datasheet as a subform. Upon clicking a button on the main form I'm trying to make it so that a browser window opens up and, using the address columns from the spreadsheet data in the subform, plot all the address markers listed. I've looked up a lot of ways to attempt this but I've yet to find a way that seems to work.
I'm not even sure if it's possible to plot multiple markers on Google Maps, but according to research (and after trying it myself) it seems like it isn't, although I don't want to rule it out entirely because I'm still not 100% sure. However I know both Google Earth and batchgeo.com do allow this. I still want to try and do this on Google Maps, but if that doesn't work I want to try to do it using batchgeo.com and if that still doesn't work, then Google Earth (I don't want to make the user download external software if possible).
If it helps, from what I've read API's seem like a useful tool, though I'm not sure how to apply it to an Access form, it seems more like a way to embed to already existing websites.
I'd really appreciate if someone could help me figure out how to approach this problem!
Maybe this would help?
http://ramblings.mcpher.com/Home/excelquirks/getmaps/mapmarkers
It is Excel but should be translatable.
Here is another example, this time using Access:
http://www.utteraccess.com/forum/Google-Maps-Multiple-Mar-t1973499.html
...from what I've read API's seem like a useful tool, though I'm not
sure how to apply it to an Access form, it seems more like a way to
embed to already existing websites.
You're right. There's no way, that I'm aware of, to embed a Google Maps object in a form (like an ActiveX control). Microsoft MapPoint is a software product that lets you do Map integration by way of an ActiveX control (no need to use HTML and/or javascript).
What I usually do on a project like you're working on is I get my HTML page working the way I want it to, outside and independent of MS Access. You should be able to program and test the HTML file locally without having to use an actual web server. Just use something like NotePad++ or Sublime Text Editor 2 to write your HTML and Javascript and then open the file in your browser to see if it works. I'm quite sure you'll need to use Javascript in your HTML page to make this work. That's what the Google Maps API is all about.
After you have your webpage working, then you will have to go into Access and write code to create that web page on the fly with the address data for the current data set. You can just write it out to the Windows Temp folder and then open your browser control that that web page.
Julian Knight's answer links to more specifics on how to create the HTML page on the fly. It looks like gobble-de-gook, mostly because it is. Outputting HTML/Javascript/CSS from VBA is far less than optimal. This is why you troubleshoot it outside of Access, as much as you can.