Edit button not appearing in business card

What happened to this option ?

Hi Keshav,
Gautham is correct. The only way to edit the business card is via the top level navigation. If you click on links to your BC in other areas of the site such as the page you get when you click your name next to the Forum Dashboard title at the top of a forum page, you do not have the ability to edit it. If this was not clearly communicated, I apologize.
Kind Regards,
David

Similar Messages

  • Why does my edit button not show in Address Book?

    I have installed Lion on my laptop; however, I am not able to edit any Address Book entries. After doing some research, I have learned that I am missing the "Edit Button" that is supposed to appear on a contact that will enable editing.  My Edit button does not appear - I have only "Add Contact" and "Share" buttons.  Why does my edit button not appear?
    I have not noticed any other issues with Lion.
    Thanks!

    Try this:
    Select "Go" from the finder whilst holding down the Alt key and "Library will drop down in the list.
    Library/preferences/ and delete this :  com.apple.AddressBook.plist
    re-start your comp and it should work.
    This . plist will re-create itself when re resart all nice and clean and fresh.
    Should work, it does for most things.
    Good Luck

  • Edit does not appear in upper right corner of the main screen in camera roll of my iPhone 4S.

    Edit does not appear in upper right corner of the main screen in camera roll of my iPhone 4S. My software is the latest ver. 6.1.3 and I know it is supposed to be there because we have other iPhone 4S phones and it is there on them.

    I mean chip

  • Why isn't the edit button not showing in my ESX24 sampler?

    why isn't the edit button not showing in my ESX24 sampler?

    Is that during installation when you see the two icons.. the one on the left looking like a Garageband guitar icon, the one on the right like the Logic Pro platimum record icon?
    Yes.. that one.. with the choice to click on which option you want/are coming from...
    p.s. I'll probably aquire a Mac Mini this fall then upgrade.... I mean repurchase!
    I think I managed to grab one of the last of the 2011 refurb'ed MMS's.... at that super low price Apple were selling them for... before they bumped it up and now, they seem to have none left at all at any price
    However, just in case, I have found this site really useful at keeping track of Apple's refurb stock... and pricing
    http://www.refurb.me/us/

  • Buttons not appearing clearly upon output

    I have created menu buttons (with highlight) that in turn link to the relevant movie file.
    When outputted to DVD these buttons appear blurry and unclear.
    Why are the buttons not appearing in a crisp, clean state when I have outputted them?

    Which version of DVD SP are you using? Are you
    making these over video menus? What size and color
    of fonts/background? They can all play into what is
    happening, usually 20pt + sans serif works best, but
    the text in DVD SP can often leave things to be
    desired from time to time - where are you previewing
    the buttons?
    Thanks for your reply.
    The vesrion Im using is DV Studio Pro 3. The up state color of the buttons are black and over is red. The font size is 13pt Arial Black.
    I have outputted the DVD itself, so I view it through TV.
    Am I on the right track?
    Thanks again.

  • EDIT button not visible in Display Shopping Cart  screen in SRM portal

    Hello everyone,
    I am facing one strange problem in SRM portal.
    When i create a new shopping cart ON BEHALF of someone then after SAVING the shopping cart the EDIT button disappears from the screen.
    But if i create a shopping cart for  myself only then the EDIT button appears properly.
    My system is  SRM 7.0 .
    Please if anyone has solution to this kindly reply

    Found a note for this issue. The note is 1444219

  • Edit button not working on a publishing site on sub-level pages only (SP 2010)

    When I create a top level page, the Edit button/edit page works fine with checkout and checkin.  However, once I create a sub-level page - that is I create a second page within the first page then the edit button does not work and there is a message
    displayed on the ribbon in yellow background: 
    Status:
    Published and visible to all readers 
    I have read all responses to similar posts and tried them but problem is not resolved. 
    I don't have workflow turned on, I don't have content approval, yet, issue is still there. 
    Please help. 

    Hi Wynnit,
    Pinning will not work in most devices - desktop only. To do the same in your device layouts you need to use the scroll motion tools.
    To add code to the <head> tags in Muse you go to your page properties and under the meta tab you will see a section you can paste your code.
    When  you do push live with Business Catalyst you will be given prompts as to how to go about it.

  • Button not appearing (obvious fix most likely (no errors))

    import java.awt.*;
    import java.awt.event.*;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    import javax.swing.*;
    public class ChatClient
      private TextArea output;
      private TextField input;
      private Button sendButton;
      private Button quitButton;
      private JButton button;
      private ImageIcon image;
      private ImageIcon image1;
      private Panel p1;
      private Frame frame;
      private Panel p2;
      public ChatClient()
        output = new TextArea(10,50);
        input = new TextField(50);
        frame = new Frame("Chat Room");
        sendButton = new Button("Send");
        quitButton = new Button("Quit");
        button = new JButton(image);
        image = new ImageIcon("c:/aztecsun.jpg");
        image1 = new ImageIcon("c:/aztecsun.jpg");
        p1 = new Panel();
        p2 = new Panel();
      public void launchFrame()
               button.setContentAreaFilled(false);
               button.setBorderPainted(false);
               button.setFocusPainted(false);
               button.setPressedIcon(image1);
               p1.add(sendButton);
               p1.add(quitButton);
               p2.add(button);
             // Use the Border Layout for the frame
             frame.setLayout(new BorderLayout());
             frame.add(output, BorderLayout.WEST);
             frame.add(input, BorderLayout.SOUTH);
             frame.add(p1, BorderLayout.EAST);
             frame.add(p2, BorderLayout.CENTER);
             // Add the button panel to the center
             frame.pack();
             frame.setVisible(true);
             //frame.addWindowListener(this);
             sendButton.addActionListener(new sendHandler());
             input.addActionListener(new inputHandler());
             button.addActionListener(new azteca());
             quitButton.addActionListener(new ActionListener()
                  public void actionPerformed(ActionEvent ae)
                       System.exit(0);
             frame.addWindowListener(new WindowAdapter()
                  public void windowClosing(WindowEvent we)
                       System.exit(0);
      /*     class windowTerminate implements WindowListener
                public void windowClosing(WindowEvent we)
                     System.exit(0);
                public void windowDeactivated(WindowEvent we)
                public void windowIconified(WindowEvent we)
                public void windowDeiconified(WindowEvent we)
                public void windowActivated(WindowEvent we)
                public void windowOpened(WindowEvent we)
                public void windowClosed(WindowEvent we)
       class azteca implements ActionListener
              public void actionPerformed(ActionEvent ae)
                   if(ae.getSource() == button)
                        String text = input.getText();
                        output.setText(output.getText() + text + "/n");
                        input.setText("");
           public void copyText()
                String text = input.getText();
                output.setText(output.getText() + text + "\n");
                input.setText("");
           class sendHandler implements ActionListener
                public void actionPerformed(ActionEvent ae)
                     copyText();
           class inputHandler implements ActionListener
                public void actionPerformed(ActionEvent ae)
                     copyText();
      public static void main(String[] args)
        ChatClient c = new ChatClient();
        c.launchFrame();
    }I'm practicing with events/buttons with icons and the button is not appearing...
    Yes the image is in the correct directory... (for the obvious fix type of people)...
    But yeah...
    Thanks!

    I know the fix but I do not know how to do it... I haven't added the image button correctly therefore it is not appearing, but I lack the necessary skills to fix the problem.
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    import javax.swing.*;
    public class ChatClient
      private JTextArea output;
      private JTextField input;
      private JButton sendButton;
      private JButton quitButton;
      private JButton button;
      private ImageIcon image;
      private ImageIcon image1;
      private JPanel p1;
      private JFrame frame;
      private JPanel p2;
      public ChatClient()
        output = new JTextArea(10,50);
        input = new JTextField(50);
        frame = new JFrame("Chat Room");
        sendButton = new JButton("Send");
        quitButton = new JButton("Quit");
        button = new JButton(image);
        image = new ImageIcon("c:/aztecsun.jpg");
        image1 = new ImageIcon("c:/aztecsun.jpg");
        p1 = new JPanel();
        p2 = new JPanel();
      public void launchFrame()
               button.setContentAreaFilled(false);
               button.setBorderPainted(false);
               button.setFocusPainted(false);
               button.setPressedIcon(image1);
               p1.add(sendButton);
               p1.add(quitButton);
               p2.add(button);
             // Use the Border Layout for the frame
             frame.setLayout(new BorderLayout());
             frame.add(output, BorderLayout.WEST);
             frame.add(input, BorderLayout.SOUTH);
             frame.add(p1, BorderLayout.EAST);
             frame.add(p2, BorderLayout.CENTER);
             // Add the button panel to the center
             frame.pack();
             frame.setVisible(true);
             //frame.addWindowListener(this);
             sendButton.addActionListener(new sendHandler());
             input.addActionListener(new inputHandler());
             button.addActionListener(new azteca());
             quitButton.addActionListener(new ActionListener()
                  public void actionPerformed(ActionEvent ae)
                       System.exit(0);
             frame.addWindowListener(new WindowAdapter()
                  public void windowClosing(WindowEvent we)
                       System.exit(0);
      /*     class windowTerminate implements WindowListener
                public void windowClosing(WindowEvent we)
                     System.exit(0);
                public void windowDeactivated(WindowEvent we)
                public void windowIconified(WindowEvent we)
                public void windowDeiconified(WindowEvent we)
                public void windowActivated(WindowEvent we)
                public void windowOpened(WindowEvent we)
                public void windowClosed(WindowEvent we)
       class azteca implements ActionListener
              public void actionPerformed(ActionEvent ae)
                   if(ae.getSource() == button)
                        String text = input.getText();
                        output.setText(output.getText() + text + "/n");
                        input.setText("");
           public void copyText()
                String text = input.getText();
                output.setText(output.getText() + text + "\n");
                input.setText("");
           class sendHandler implements ActionListener
                public void actionPerformed(ActionEvent ae)
                     copyText();
           class inputHandler implements ActionListener
                public void actionPerformed(ActionEvent ae)
                     copyText();
      public static void main(String[] args)
        ChatClient c = new ChatClient();
        c.launchFrame();
    }Edited by: Trizi on Mar 25, 2008 11:52 AM

  • HT201209 Redeem button not appearing??

    The redeem button is not appearing in itunes or app store even though i scroll all the way to the bottom. There is nothing on the screen at all. Any ideas? This is a childs ipod and we may not have entered any charge / credit details when we set it up. Do i need to do that first?
    She has itunes cards we want to redeem.

    Hi ...
    Reset the iPod >  iPod touch: Turning off and on (restarting) and resetting
    Then follow the instructions from the link you posted from >  iTunes Store: How to redeem a code

  • Flash button not appearing

    I've added a flash button to my website and uploaded it to
    the home file, but it's not appearing online. Any
    suggestions?

    I just purchased some software that allows you to make flash
    buttons. I made a button, and thought I had it uploaded to my page,
    but it doesn't seem to be working either. I uploaded some button
    designs from Adobe and I see them when I go to make or edit a
    button, but I don't see the one that I thought was upload from the
    new software. What software are you using and how did you upload
    your buttton?

  • Edit Button Not Working in PDF Portfolio

    The Edit function is greyed out whenever I try to create a PDF portfolio directly from an Outlook mail folder. We are using Adobe Pro X.  Any suggestions on why this is and how to fix?  I've been able to create other portfolios and use the Edit button, but not when it is created directly from Outlook.
    Thanks!

    [discussion moved to Creating, Editing & Exporting PDFs forum.]

  • Photo Edit button not appers in ipad 1 ios 5.0.1

    I update my biod, in ipad 1 and now i can not turn my photos. I try to restore software, and nothing. Theroblem is not appers thr edit button when i open a photo. My photos are from camera, no sincronized to pc, i put on ipad via photo kit.

    The Photos app on iOS on the first gen iPad doesn't have any editing - you could potentially rotate them via a third-party app (e.g. the free Adobe Photoshop Express), but that will just save them back to the Saved Photos album

  • Edit Button not visible in portlet

    Hi Every one,
    Even adding the portlet mode as EDIT in the portlet.xml, i am unable to see the EDIT button on the portlet.
    Could someone help to solve this? Is there any thing else to be done?
    Here is the snippet of portlet.xml
    <supports>
    <mime-type>text/html</mime-type>
    <portlet-mode>EDIT</portlet-mode>
    <portlet-mode>HELP</portlet-mode>
    </supports>
    Note: Help functionality is working fine. and also able to see the help icon.
    Thanks in advance..

    Which Portal are you using? In Sun Portal Server or Web Space Server , you will see Edit button only if you are authenticated to the portal.
    Also did you modify the portlet.xml in the deployed location or was the EDIT added before the portlet was deployed?
    Regards,
    Deepak

  • Edit button not working on ipad

    I just downloaded the adobe reader app and the edit button doesn't give me options to organize, etc. Any suggestions?

    How it works for me:
    Select the Documents list, then click Edit, and there will be five organizing tools (add folder, duplicate, etc.)
    If that doesn't work, try force-quitting your application. Click the Home button to return to the Home screen. Double-click the Home button to go the row of recent apps at the bottom of the screen. Click and hold down the Adobe Reader icon and the red "delete" icon appears. Click the delete icon and Reader is removed from the list. Return to the Home button and relaunch Reader.

  • ADF Buttons not appearing correctly

    I've tried researching this problem and from what I've found it has said if we are using JDK version 1.4 and headless = true then we shouldn't have this problem. When running our application some of our ADF buttons will appear correctly and others will not.
    When I look in our
    application-deployments/../temp/adf/images/cache/en/
    directory I can see the images of the buttons that appear correctly, but if I navigate to another page with different buttons I would then expect to see those images being creating in that folder but there are not. If anyone has any insight on this problem it would be a big help. Thanks.

    Nothing leaps to mind that affected downloadable fonts in Firefox 34... but there are hundreds of changes in each version so I can't rule it out.
    Just to go back to basics for a moment...
    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    Alternately, you also can clear Firefox's cache completely using:
    "3-bar" menu button (or Tools menu) > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now"
    If you have a large hard drive, this might take a few minutes.
    (2) Remove the site's cookies (save any pending work first). While viewing a page on the site, try either:
    * right-click and choose View Page Info > Security > "View Cookies"
    * Alt+t (open the classic Tools menu) > Page Info > Security > "View Cookies"
    In the dialog that opens, you can remove the site's cookies individually.
    Then try reloading the page. Does that help?

Maybe you are looking for

  • ITunes music files in my Temp folder

    So I have a full list of my music in c:\temp (cannot figure out how they got there) and the ones in My Documents\My Music\iTunes... Where would I see where iTunes actually sees the files so I can delete the set in c:\temp. And if it is using the c:\t

  • Check status bar message type

    Hi All, Are there any function module or method that could use to check what message type (I,S etc) are prompting on the status bar? Thanks.

  • Thread Safety in 1.0.3.0

    I am wondering, with the new Connection Manager is it thread safe. I am getting this type of exception java.lang.NullPointerException at oracle.xml.xsql.XSQLPageRequestImpl.getXSQLConnectionManager(XSQLPageRequestImpl.java:465) at oracle.xml.xsql.XSQ

  • Exemple of join two table

    hi, can i find an exmple with ejb3 that joint two tables, bcuz i tried many thing but i couldnt run it. and thank you

  • Converting keystrokes with Leopard?

    With leopard can I convert keystrokes into other keystrokes? I want F13 to trigger CMD+E and F14 should trigger CMD+J, etcetera Can I do this with Leopard?