By bell on
I'm migrating a site to Drupal that includes a Paypal store and donation buttons. I tried cutting and pasting the old forms into Drupal nothing within the
tags is showing up in the html served to my users even though I can still see it in the html visible using the text editor. What's up? Clearly my html is getting filtered, but how do I either:
1. Turn the filter off, or
2. Create an online store the "Drupal" way?
Thanks in advance for pointing me the right direction.
Comments
There are two input filters
There are two input filters when entering Drupal content: filtered html and full html. You need full html.
However, if I understand you correctly, you're trying to duplicate the old store by copying and pasting the code into Drupal nodes??? I would certainly recommend against trying this approach... I don't think it will work. You need to look at the Drupal Ubercart module.
Suggestion 1 Worked
I thought that with the permissions I had I could post unfiltered html everywhere on the site. It turns out I had to set the "input format" for the page I was editing to full html.
Ubercart looks great for the future. I think at this point I'll be able to do what I need to do (a very simple store) by copying and pasting the old html.
Thanks!