Creating Mobile Link that Isn't Visible on Desktop Browser

I hope this makes sense.
I have a mobile site with a link to my desktop site. I also want to add a link on the desktop site for mobile visitors to get back to the mobile site. But I don't want this link visible on a desktop browser... only visible on a mobile browsers.
You can see an example of this by going to tipb.com on a mobile device, scroll down to the bottom and click on the "Switch to Regular Theme", then scroll all the way down on that page, you'll see a "Switch to Mobile Version" that isn't visible on a desktop browser.
Hoping it's pretty simple.
Thanks,
Steve

I could be wrong, but it looks like the website is designed using WordPress. Then they are using a plugin from http://www.bravenewcode.com/ called WPtouch Pro that detects a mobile device and sets a different theme for the mobile device. You can find out more about WPtouch Pro at https://www.bravenewcode.com/store/plugins/wptouch-pro/

Similar Messages

  • Is it possible to create a link that I can place on a website to an internet radio stream on iTunes?

    Is it possible to create a link that I can place on a website to an internet radio stream on iTunes?

    Yes, but it WON'T play through the browser. It'll require any visitor who clicks it to have iTunes installed, and it'll open iTunes as soon as they do.

  • Can I create a JAR that is an Applet and Desktop app at the same time?

    Hi mates.
    Can I create a JAR that is an Applet and Desktop app at the same time?
    Thanks.

    Ricardo_Ruiz_Lopez wrote:
    ..I have one problem, I want a JMenuBar but I can't add it inside a jPanel.
    Any idea?
    SSCCE
    It can be compiled/run as an applet or application something like this (e.g. for a Win command prompt).
    C:\Users\Andrew\Hybrid> javac Hybrid.java
    C:\Users\Andrew\Hybrid> java Hybrid
    C:\Users\Andrew\Hybrid> appletviewer Hybrid.java
    C:\Users\Andrew\Hybrid> // YES the previous line requires a '.java'  suffix - trust me.  ;-)Code
    // <applet code='Hybrid' width='600' height='400'></applet>
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.border.*;
    public class Hybrid extends JApplet {
        public void init() {
            SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    GUI gui = new GUI();
                    getContentPane().add( gui.getMainPanel() );
                    setJMenuBar( gui.getMenuBar(false) );
                    validate();
        public static void main(String[] args) {
            SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    JFrame f = new JFrame("Test Hybrid");
                    f.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
                    GUI gui = new GUI();
                    f.setContentPane(gui.getMainPanel());
                    f.setJMenuBar(gui.getMenuBar(true));
                    f.pack();
                    f.setLocationRelativeTo(null);
                    f.setVisible(true);
    class GUI {
        private JPanel mainGui = null;
        private JMenuBar menuBar = null;
        public JPanel getMainPanel(){
            if (mainGui==null) {
                mainGui = new JPanel( new BorderLayout(3,3) );
                mainGui.setBorder( new EmptyBorder(5,5,5,5) );
                JToolBar tb = new JToolBar();
                for (int ii=1; ii<6; ii++) {
                    tb.add( new JButton( "Btn " + ii) );
                    if (ii%2==0) {
                        tb.addSeparator();
                mainGui.add(tb, BorderLayout.NORTH);
                mainGui.add( new JSplitPane(
                    JSplitPane.HORIZONTAL_SPLIT,
                    new JScrollPane(new JTree()),
                    new JTextArea(20,20)
                    ), BorderLayout.CENTER );
                mainGui.add(new JLabel("Main user interface.."), BorderLayout.SOUTH);
            return mainGui;
        public JMenuBar getMenuBar(boolean isFloating) {
            if (menuBar == null) {
                menuBar = new JMenuBar();
                if (isFloating) {
                    JMenu fileMenu = new JMenu("File");
                    fileMenu.add( new JMenuItem("Exit") );
                    menuBar.add( fileMenu );
                JMenu helpMenu = new JMenu("Help");
                helpMenu.add( new JMenuItem("About") );
                helpMenu.add( new JMenuItem("Help") );
                menuBar.add( helpMenu );
            return menuBar;
    The code is not intended to be well designed. It is just written to be brief and demonstrate a few points.
    Edit 1:
    Added some access keywords in a passing gesture that the sample aimed at encapsulation.
    Edited by: AndrewThompson64 on Sep 2, 2010 1:34 PM

  • Create a link that searches a recordset

    Newbie here. I have an MYSQL database where each item has a "category" column. I am trying to have a page that lists all of the possible categories, and when you click on one of the links, it takes your to a page with a recordset that is filtered for that category. I know how to filter my recordset by category but my question is how do I make a link that will instruct the server to filter the recordset based on the selected category? Thanks for any help somebody can offer.

    Moved to the Dreamweaver Application Development forum, which deals with PHP/MySQL and other server-side issues.
    The way to handle this issue is to use a query string at the end of the URL. A query string consists of a question mark followed by one or more name/value pairs. If there is more than one name/value pair, separate each pair with an ampersand. So, to select your category you would create something like this:
    <a href="details.php?category=software">See software details</a>
    You filter the recordset in details.php using a URL parameter to set the value of the category column to software.
    If you are creating a page to build these links automatically, you need to create a recordset of all the categories, and loop through a repeat region using the recordset value:
    <a href="details.php?category=<?php echo $row_recordsetName['category']; ?>">
    See <?php echo $row_recordsetName['category']; ?> details</a>

  • How can I create a link that allows users to convert a Wiki pages into PDF format.

    I am working on an enterprise Wiki library site collection, but I want to create a link named “Convert to PDF” , which allow users to convert the current Wiki into a pdf file. I need this link to be displayed some where in all the exsiting Wikis pages, and
    on any new wiki page. Can anyone advice if there is already such as capability within sharePoint 2013.
    Thanks

    Hi,
    For your requirement, we can add this link to the master page, then it will appear in the pages which apply this master page.
    To convert the current page to PDF, you can take consideration of using jsPDF.
    The links below with demos for your reference:
    http://parall.ax/products/jspdf
    Best regards
    Patrick Liang
    TechNet Community Support

  • Creating a webpart that is only visible when an image link is clicked

    Hi, 
    Is it possible to make Webpart in Sharepoint 2010 only appear when a link or image is clicked?
    i have 5 image buttons on my site page and for one of them, when it is clicked, the user will be directed to the Contents webpart i have created. This webpart should only be visible when the image linked to it is clicked, otherwise it should be hidden. Is
    this possible?
    Any assistance is greatly appreciated.
    Thanks & Regards, Aarti

    That's easy using jquery. Refer to the following posts
    http://social.technet.microsoft.com/forums/sharepoint/en-US/c437ecc4-c757-483f-8175-f92860d184be/hideshow-webpart-data-on-buttonclick-using-jquery
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/219b388e-0979-46b4-9a46-f7e6449738b8/hide-and-show-a-list-view-webpart-by-clicking-on-a-link-in-the-same-webpart-page-in-sharepoint-2010?forum=sharepointgeneralprevious
    --Cheers

  • How do I create podcast links that open automatically in iTunes?

    I want to create different podcasts and distribute them via emails to my friends. I want to make it as simple as possible, so that my friends can click on the link to my feed, and have iTunes open automatically, and subscribe to my podcast without taking any extra step. In other terms, I don't want my friends to have to open iTunes, choose Subscribe to Podcast, and paste the link.
    Is it possible?

    Yes. Go to your iTunes Music Store Podcast Listing. Control-click on the title of your podcast and it will say "Copy iTunes Music Store URL".
    This will copy a URL to your clipboard that looks like: http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=74837876
    Paste this into your friends' email. They should be able to click on it and launch iTunes automatically and subscribe to your podcast(s). This of course assumes that they have iTunes 6 installed.

  • How do I get to the bottom of a dialogue box that isn't visible? Critical Mail problem!

    I tried sending an email to a long list of recipients in a group. For some reason, I got a werid dialogue box about how it my SMTP server didn't recognize some addresses (though they all seem fine). No big deal, normally I would just edit the message and fix/delete the offending email addresses. However, the bottom of the warning dialogue is off screen and I can't scroll down. All I can do is hit "enter" and try to resend. But then I get a repeat.
    The message in question is not seen in either my Outgoing, Sent, or Drafts folders. At least not when the dialogue box is open. So I can't just kill the message.
    I also can't quit Mail while this message is up. I can go to the Finder and force quit. But then if I restart Mail the dialogue box pops right back up and I'm stuck where I was before.
    Basically, I just need to know how to get to the bottom of the warning dialogue box so that I can click on the "edit message" button.
    Help?!
    Oh, I'm running the most updated version of OS X Lion.

    I did that twice. Once, about an hour ago. And nothing changed. I did it again about twenty minutes ago, and still nothing. A few minutes ago I tried yet another force quit. And .... that seemed to do the trick. The offending email message is gone.
    So my problem seems to be solved.
    But the larger issue remains of a major bug in Mac OS, it seems. If a dialogue box is larger than the screen size, how is someone ever going to be able to deal with closing it or anything else? It would make sense to automatically allow the cursor to scroll down to the very bottom of any dialogue box, regardless of its size. After all, that's how windows work, right?
    Crazy!

  • Create web link that contains field information that was click on

    Hi All,
       I have a serial number report. When a user clicks on the serial number, I would like it to open up a CRM application and pass it the serial number that was selected in Crystal via a hyperlink. Is that possible to do?
    Thank you in advance.

    Have you tried using a formula for the hyperlink such as:
    "http://www.google.com/"+{table.serial_number_field}

  • How find a notification that isn't visible by the Administration Tools Crystal Enterprise Server 10 ?

    Post Author: luluberlu
    CA Forum: Administration
    Hi,
    I've a notification by smtp. This notification works once a week but i'don't find the instance in administration tools.
    I tried to find it by windows register (KO) by windows test search (KO)
    Can I find it by the subject of mail or submitter but how ?
    Thanks

    a brody wrote:
    Since Mac OS X Server is different from Mac OS X client, I've asked a moderator to move your thread to the appropriate forum.
    Oops, my bad, but thanks.

  • Why can't i click anything on my desktop? i can still use everything that isn't on the desktop

    the mouse just turns to its loading thing when its over the desktop, i can't even restart it but i can still run applications

    Which OS X is installed on your Mac ?
    Troubleshooting advice can depend on that information.

  • How can I set a button/link that is visible on all slides?

    I want to add a button/link that is automatically visible on all slides (whole project). But it seems it does not work. Any help?

    Hello,
    It depends on your version. I hope you are on CP6 or later. In that case you have two possiblities:
    a shape button on the main master slide (and be sure that all daughter master slides have the objects of the main master slide)
    a shape button on the first slide, timed for the rest of the project.
    More details: Why I like Shape Buttons - Captivate 6! - Captivate blog
    There is also a webinar on demand from Adobe 'Lilybiri's favourite...'
    Lilybiri

  • How to create link that navigates to solution available in SDN. Shyamal Joh

    Hi Experts
    I want to create a LINK that navigates to the solution already available in SDN.
    Shyamal Joshi Ji has created such LINKS.
    Is it possible to attach documents thro links?
    Please Clarify.
    With Best Regards,
    Raghu Sharma

    Dear Raghuji,
    Right click on the thread subject in the thread list, go to properties, copy the ADDRESS. Or Open the thread in another window and copy the address from address bar
    In the answer window for the thread, click on the insert link (The Icon here with CHAIN), and past the copied thread address.
    The You can Name the pasted link according to your convenience.
    Happy posting.
    You can attach you own document also if it is available at any URL.
    Regards,
    Shyamal
    Edited by: Shyamal Joshi on Jul 24, 2008 5:15 PM

  • Create a link to a specific spot in PDF document

    Is it possible to create a link from a Table of Contents item to a specific heading on a page within the same document. So far from what I've read and what I've tried I can only link to a specific page but not a specific section on that page. Is that possible? If so how to I do that? It's basically the same idea as HTML anchor links within the same HTML page. So if you have a links up top you can create named anchors for the destination spot later on down the page. I tried using the destinations in Acrobat also but it seems to also only point to the page, not the specific area on a page.
    If anyone knows if that's possible, could you either show me how to do it or point me to a tutorial online that shows how to do that. I've searched and searched but just cannot seem to find anything. Maybe I'm not using the right keywords to search.

    You can either link to an existing named destination or a view that you establish when you create the link. A named destination is a combination of a page and the view settings (e.g., fit width, fit visible, 200% zoom and scrolled 1/4 way down the page, etc.)
    When you add a new named destination, go to the page you want and set up the display of the page to what you want. Give the named destination a meaningful/descriptive name.
    When you create the link that you want to target a named destination, select an action of "Go to a page view" and set it to the current view. You then have to go and edit the action and select "Use Named Destination" and select from the list of named destinations in the document.
    You do not need to set up named destinations to link to a specific area of a page, but they are helpful when linking from other documents or systems, particularly if the document that's linked to changes with any frequency.
    To set up the same type of link without using named destinations, just add a new link and when you're presented with the "Create Link" dialog, select "Go to a page view" and navigate to the corresponding page, set the view you want, and click the "Set Link" button.

  • Create Anchor Links | Adobe Muse Feature Tour | Adobe TV

    Easily create anchor links that take visitors to a specific point in the middle of a page or design.
    http://adobe.ly/I5cQW0

    Is there any way to handle anchor speed. Beceause that way we can handle auto parallax scrolling part maybe. Default speed is way too fast for parallax scrolling.
    And isn't there any rotate button for prallax scrolling. At least I think it must be included. Same like scrolling options such as, before position, after position, rotate left, rotate right(speed) So we can move and rotate at the same time while scrolling. And that would cause better animations.

Maybe you are looking for

  • Using Sequence in FORALL Statement

    I'm using a package to get the nextval in a sequence object. Basically, it is a function that returns select user_seq.nextval from dual. But I get 'column not allowed here' error. PL/SQL: ORA-00984: column not allowed here OPEN users_ins ;           

  • TV Comparison: Sony vs. Samsung

    When you walk into a retail store to view the latest TVs, it's hard to know whether or not the picture you are seeing displayed in front of you is how the TV will actually look when you take it out of the box and mount it on your wall at home. The se

  • How can i cheq sms delevery report ?

    How can i cheq sms delevery report ?

  • HT1206 Can't see tv show from iTunes

    I downloaded a tv show on my pc using iTunes.  It will not display on my ipad1.  Had the same problem with the music but finally found a More tab under music that turned on syncing to the iPad.  Haven't found any like that for ate show.  Any ideas?

  • Help me about this program

    I create a class that can generate javadoc, when you past file as parameter. but however, I encounter some problem.the code is below. when I try to run the code. it generate 4 files (html file). until I close DOS Prompt its generate rest files. <pre>