Is it possible to create a subscription page with different options for blog, newsletter, product announcements, training events, etc?

I would like to create a subscription page for my Muse site with different subscription choices, but I am not sure if it is possible or, if it is how I should construct it. Any ideas?

Hi
This can be done from hosting platform end. If you are using Business Catalyst to host your site , then you can use events module, campaign subscriptions , secure zone subscriptions etc.
You can create the events/announcements on BC end and then add the module in Muse page which on publish will show the modules on page.
Thanks,
Sanjit

Similar Messages

  • Is it possible to create a customer master with different address

    Hi Gurus,
    Is it possible to create a customer master with different address as we maintain in SAP CRM.
    Kindly help me onthis issue \
    Regards
    Kannan

    Hi Kannan,
    There are no multiple addresses but you can use multiple unloading ponts for the same address for the ship to Party.
    So when you create a Sales order the system will give a pop up with the unloading points allowing you to select the desired one.
    I hope I understand your query correctly.
    Regards
    Yogesh

  • Is it possible to create a web page to launch Reflection for UNIX and Digital program using Dreamweaver CS6?

    I am planning to create a web page that could launch Reflection for UNIX and Digital program as part of my project in my working area.
    Is this possible?
    I am a beginner in using DW. I am still studying how to properly use Dreamweaver thinking that I could provide the requirement of my project.
    Thank you for your comments.

    This is a question for Attachmate, the maker of Reflection, not Adobe, the maker of Dreamweaver.
    Dreamweaver is a tool, not a technology. It builds applications using HTML and Javascript that run on web servers using the HTTP protocol. So I think the question to as Attachmate is:
    Can Reflection be launched from an apache webserver using HTML, PHP or Javascript?

  • Is it possible to create a multi provider with different info providers?

    hi all,,
    Can anyone let me know is it possible to create multi-providers from different info providers.
    thanxs
    haritha

    Hi..
    An infoprovider is an SAP BW object you can use to create and excute queries .  Info providers include  objects that physically  contain  data ,  for expale ... data target  like info cube ,  ods onjects , and info objects  ( char , att, text or hier ..)
    They also include objects   that do not represent physical data storgae :
    Remote cubes ,  sap remote cubes . and multiproviders.
    info providers are objects or views relevant to reporting ..
    info providers can include
    info cubes ( basic cubes and virtual cubes )
    ods
    char obj ( with attt or text )
    info set
    multiproviders
    with regards,
    hari

  • Is it possible to create 2 Date objects with different hashcode.

    Hi,
    I want to create 2 java.util.Date objects with different hashcodes. Is it possible??
    Regards,
    Farooq

    import java.util.Date;
    import java.util.Calendar;
    public class TwoDates {
        public static void main(String[] args) {
            Calendar oneCal = Calendar.getInstance();
            oneCal.set(Calendar.YEAR, 1903);
            Calendar anotherCal = Calendar.getInstance();
            Date oneDate = oneCal.getTime();
            Date anotherDate = anotherCal.getTime();
            System.out.println(oneDate.hashCode() + " " +
                               anotherDate.hashCode());
    -14330615 -825112150

  • Is it possible to create one home page with links to multiple forms in Adobe Forms Central?

    I have several forms that are all related. Is it possible to have one online landing page where I can link to my other forms from?
    It would be easier to share one link than multiple.

    You could create either a web page of your own to include the links into, or you could create a form that you include the links in - maybe add them as single checkbox fields where the user could check the box stating that they have filled out the related form.  There is a "Insert or edit Link" button in the top toolbar when designing a form, select text you would like to represent the link and click the link button to add the URL to a form.
    The responses for each form would be connected to those individual forms and would not be presented together.  When you recieve responses from the various forms you would not have any built in way to connect the same user to the variuos forms but you could include a "Required" email field in all forms so that you can see who submitted which forms that way.
    Thanks,
    Josh

  • Is it possible to create an iPhoto slideshow with a menu for each child?

    I want the DVD to open with three photos: Karen's, Lori's and Amy's.
    When Karen clicks her photo, three more of her photos will appear: a baby photo, a school-age photo, and an adult photo. If she wants to watch a slideshow of her baby pictures, she will click the baby photo...
    Each daughter will have a similar setup - three slideshows for each of them. I'm not very picky about which theme will do the job.
    I have checked two books and the Apple tutorial and can't find a similar example.
    This is only my second slideshow. Any help will be appreciated!
    Flat Panel iMac (still love it) w/superdrive   Mac OS X (10.4.4)   iLife'06, 512 mb ram, 200 GB and 250 GB hard drives, wireless network

    Yes this can be done.
    First create the 9 slideshows you need in iPhoto......for each one, when finished use the "Send to iDVD" to create a QT movie of each slideshow......be sure to pick the music/playlist in iPhoto (unless you want to use iMovie for that and other things...). When iDVD opens, just close it without saving.
    Then open iDVD and choose a menu. As an example, choose "Portfolio Color". Retitle it to "Daughters" or whatever you want.
    Then click on the "+" sign at the lower left, and choose "add submenu" -do this two more times yo get three folders. Then click on the media button, and choose three photos to use as a button instead of the folder. Just drag each photo onto the folder. Rename each submenu to Karen, Lori and Amy. Click once on the text, wait, then click again and edit.
    Then double click on one submenu. Drag in the correct three iPhoto movies you exported using the "Send to iDVD" command. By default, they go to your home directory in the Movies folder. You can also find them using the Media tab in iDVD and look for Movies.
    Go back to the "Main" menu using the back arrow (double click on it).
    Repeat for the other two submenus.
    Hope this helps,
    John B

  • Possible to create a form with different options for different items?

    So I want to create a form in DW but the problem is that I have 3 items....and I want different form subjects for each item? Is there a way to do this so that if select item #1 that 1 set of options comes up....if I select item #2 a different set of options etc.??
    thanks much!

    Another simple example that you can style up.
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Untitled Document</title>
    <script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
    <script>
    $(document).ready(function() {
    $('#option_2, #option_3').hide();
    $('#selectOption_1').click(function() {
    $('#option_1').show();
    $('#option_2, #option_3').hide();
    $('#selectOption_2').click(function() {
    $('#option_2').show();
    $('#option_1, #option_3').hide();
    $('#selectOption_3').click(function() {
    $('#option_3').show();
    $('#option_1, #option_2').hide();
    </script>
    </head>
    <body>
    <form>
    <select>
    <option id="selectOption_1" value="option_1">Option 1</option>
    <option id="selectOption_2" value="option_2">Option 2</option>
    <option id="selectOption_3" value="option_3">Option 3</option>
    </select>
    <div id="option_1">
    <select>
    <option value="option_1_1">Option 1_1</option>
    <option value="option_1_2">Option 1_2</option>
    <option value="option_1_3">Option 1_3</option>
    </select>
    </div>
    <div id="option_2">
    <select>
    <option value="option_2_1">Option 2_1</option>
    <option value="option_2_2">Option 2_2</option>
    <option value="option_2_3">Option 2_3</option>
    </select>
    </div>
    <div id="option_3">
    <select>
    <option value="option_3_1">Option 3_1</option>
    <option value="option_3_2">Option 3_2</option>
    <option value="option_3_3">Option 3_3</option>
    </select>
    </div>
    </form>
    </body>
    </html>

  • Is it possible to create the ALV output with dropdown list for the columns

    Hi forum experts,
                              Could the ALV output contain the dropdown list for the column names? if yes, then how we can acheive this to happen.
    Thanks in advance,
    Regards,
    Samad.
    Edited by: Samad arif on Aug 21, 2009 4:40 PM

    Hi Arif,
    Yes we can .FOr the codding check the article,
    [dropdowns in ALV|https://wiki.sdn.sap.com/wiki/display/Snippets/DropdownsinALV]
    regards,
    Archana
    Edited by: Archana Kumari on Aug 21, 2009 1:22 PM

  • Web Page with Forum Option

    Hi,
    I want to create a WEB page with the option to add comments/create a forum.
    Any suggestions on the best software to use?
    Thanks

    If you're just looking to get up and running with a forum,
    PHPBB is probably your best bet:
    http://www.phpbb.com/
    If you knew how to develop your own forum, chances are you'd
    be asking slightly more specific questions, so a prerolled
    application like PHPBB should be ideal in your case. ;-)

  • Is it possible to create a tagged pdf with apple pages?

    Not sure if possible and any tutorials would be appreciated.

    > Is it possible to create a tagged PDF with Apple Pages?
    Short answer: No, Apple chose at the introduction of Mac OS X to support only Adobe PDF 1.3 and those parts of Adobe PDF 1.4 that include device-independent transparency, but not those parts of Adobe PDF 1.4 that include Adobe XMP for XML markup of the page description program.
    Long answer: Adobe PostScript is a page description programming language, unlike Xerox Interpress which is a page and document description programming language. In other words, Adobe PostScript is a streaming or sequential rendering model that cannot simulate the behaviour of a bound book where the user can turn from any one page to any other page arbitrarily. Adobe introduced Acrobat Distiller in 1993 in order to convert Adobe PostScript page description programs into Adobe PDF page and document description programs that share the same fundamental functionality as Xerox Interpress.
    Conversion from Adobe PostScript to Adobe PDF buys one nothing but page-independent processing. Specifications published by Adobe in 1993 state how the SFNT Spline Font file format used by Apple and Microsoft for Unicode imaging has to be re-encoded into PostScript font program dictionary format (PostScript so-called simple fonts with less than 256 glyphs and PostScript so-called complex fonts (CID fonts) which are simple fonts tiled into a single superfont). All that is left is the glyph identifiers, and per Unicode Specification version 1.0 the glyph identifiers are private and font-dependent, so no character information can be inferred.
    ISO 19005:2005 PDF/A is a superset of ISO 15930:2002 PDF/X-3. The problem with ISO 15930:2002 PDF/X-3 is the same as above, that is, Adobe PostScript cannot encode the file format of the International Color Consortium, which has to be re-encoded to PostScript CSA Color Space Arrays and PostScript CRD Color Rendering Dictionaries. It is possible to encode the ICC file format directly in PDF 1.3 and higher, as specified in ISO 15930 and ISO 19005, but because PDF encodes only the glyph identifiers that are the output of the SFNT file format, and not the UCS Universal Character Set input and the settings for the feature selectors in the font file, ISO 19005:2005 has come under criticism for failing to support search in complex scripts.
    ISO 19005:2011 is supposed to address the shortcomings by saving the UCS input into the PDF itself, but in this case it is impossible to use Adobe PostScript and Adobe Acrobat Distiller as intermediates to Adobe PDF. So in order to drive ISO 19005:2011 Adobe would have to ditch Adobe Acrobat. I am not sure if there is software that implements ISO 19005:2011, but I noted that the Apple iBook Store does not accept PDF at all. Personally, I struggle to think of how to explain to endusers the overwhelming number of Adobe ISO PDF formats (there is PDF/E, PDF/UA and whatever else), and the overwhelming number of Adobe ISO PDF versions of these formats (there is ISO 19005:2005, ISO 19005:2011, ISO 15930 all the way back to 1999/2000 in God knows how many versions at this point).
    Best wishes,
    Henrik Holmegaard
    would-be technical writer

  • Is it possible to create a customized survey with our organizations logo at the top?

    Is it possible to create a customized survey with our organizations logo at the top? I'm trying to create a survey for our members but instead of using a template we would like to use something simple with our logo included at the top.

    Just create a blank form and click Add Header at the top of the form page:

  • Is it possible to create a Clone database with the same name of source db ?

    Is it possible to create a Clone database with the same name of source db using RMAN ...
    DB version is 11.2.0.2
    Is it possible to clone a 11.2.0.2 database to 11.2.0.3 home location directly on a new server . If it starts in a upgrade mode , it is ok ....

    user11919409 wrote:
    Is it possible to create a Clone database with the same name of source db using RMAN ...
    yes
    >
    DB version is 11.2.0.2
    Is it possible to clone a 11.2.0.2 database to 11.2.0.3 home location directly on a new server . If it starts in a upgrade mode , it is ok ....yes
    Handle:     user11919409
    Status Level:     Newbie (10)
    Registered:     Dec 7, 2009
    Total Posts:     102
    Total Questions:     28 (22 unresolved)
    why do you waste time here when you rarely get any answers to your questions?

  • Is it possible to create a hot spot with Apple Airport Express 2nd Generation Dual Band Wireless Router, usefull in a hotel with ethernet wall sucket.

    is it possible to create a hot spot with apple Airport express 2 generation and use it i a hotel with ethernet wall socket and use it with my Ipad 2?

    HenrikAppleJespersen wrote:
    is it possible to create a hot spot with apple Airport express 2 generation and use it i a hotel with ethernet wall socket and use it with my Ipad 2?
    Yes, it is one of the things AirPort Express was specifically designed for.

  • Is it possible to create a editable pdf with validation(required field) using Adobe Acrobat pro version?

    Hi,
    the subject says it all. I have downloaded the trail version to see if its possible to create a editable pdf with validation(required field) using Adobe Acrobat pro version?
    Basically, I will have to create a pdf form where users fill it and send it back to me. there will be required fields (the textbox and check box) that user need to fill before saving the editable pdf?
    Is it possible. if so, can someone kind enough to point to me right directions?
    Thanks in advance.

    Thanks for reply. What I am trying to achieve is to give an option for the user to download the pdf form and once the user tries to save the pdf, it validates with the required field. I managed to create the editable pdf with required fields option. I just need that validation to be done when user click on save file. How can I achieve this? thanks so much for your help.

Maybe you are looking for

  • Error in Calendar.add (almost) evey last Monday of March

    Is the following a known bug? I am running under Windows 2000 and using C:\jdk1.4>java -version java version "1.4.1" Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1-b21) Java HotSpot(TM) Client VM (build 1.4.1-b21, mixed mode) * Filenam

  • Change scanned document from 8.5 x 14 in. to 8.5 x 11 in.? Please?

    Hello everyone, Earlier this evening, I scanned in several preprinted forms into 3 documents.  The hope was that I would be able to complete these forms by typing them with Adobe Acrobat 9, either as forms, or just the basic typewriter function.  How

  • Writing an integer array to a file...

    Okay, so I just wanna write a sorted integer array to file... but I'm having a problem or two. int[] array = read(new File("C:\\college work\radixsort.txt"); radixSort(array, array.length);That text file is a list of 30 numbers. After the radixSort m

  • Using sequence in a procedure

    I understand that oracle doesnt allow you to use for example, sequence_name.NextVal in a procedure when adding data. Is there any other ways round this? It would be great if someone could give an example as im a beginner with Oracle. Thanks

  • White line in the middle of my NEW IPad 2, please help

    Dears, i just get my Ipad 2 (64 GB + 3G) and when i press the power button a white line occurred in the middle of the screen. your keen interest is highly appreciate