I want to integrate my company website with salesforce.com. How can I do this?
If you're looking for the web-to-lead feature for capturing leads on your site, here's the info:
"To start capturing Leads from your Web site, go to Setup -> Customize --> Leads --> Web-to-Lead."
http://www.salesforce.com/community/crm-implementation/custom-lead-functionality.jsp
Related
I am building 360 Virtual Tour website page using software. I want to setup click-to-call using URL links, WITHOUT "tel:". Normally we would use -> a href="tel:6281234567890" HTML code. But the software requires a proper link to start with "http://" or "https://", so the software rejected "tel:" link.
Research online so far only came up with "how to build click to call link using HTML". I want to build click to call link WITHOUT HTML.
Seems like a common requirements, but nobody is talking enough about it. So, Possible?
Found another Wordpress URL Shortener plugin that asks for "http" based link too, and they do not accept "tel:" link. Any recommendations that can do this will be deeply appreciated.
Try :
javascript:window.open('tel:6281234567890')
I want to show an Atlassian Confluence wiki page in an Eclipse RCP application. I tried using html and iframe, but it does not work with confluence ("To help protect the security of information you enter into this website, the publisher of this content does not allow it to be displayed in a frame"). Is there a workaround? I have access to the wiki and basic editing rights. If I knew what to ask for, I could maybe request some more advanced changes.
You could use Comala Share It to generate a public link to the page, then use your iframe. Here is explained how https://wiki.comalatech.com/display/SI/How+to+Embed+a+Shared+Page
Disclaimer, I work in Comalatech, the company behind that commercial add-on.
Regards,
Gorka
I was looking at the source code for a web page and this is the 3rd time I've seen this in the header:
<meta content="http://www.example.com/cmswp/wp-content/uploads/2013/01/01/something.jpg" property="og:image">
What is this and what is it for?
This is meta data for Open Graph Protocol
By og:image you can provide an image URL which should represent your object within the graph.
The Open Graph protocol enables any web page to become a rich object
in a social graph. For instance, this is used on Facebook to allow any
web page to have the same functionality as any other object on
Facebook.
While many different technologies and schemas exist and could be
combined together, there isn't a single technology which provides
enough information to richly represent any web page within the social
graph. The Open Graph protocol builds on these existing technologies
and gives developers one thing to implement. Developer simplicity is a
key goal of the Open Graph protocol which has informed many of the
technical design decisions.
Basically these meta tags will be used by social networks to represent your web page anywhere they need.
Visit the following site to see how Facebook interpret og meta tags in real time and create an object that represent a page. Try google.com in it.
https://developers.facebook.com/tools/debug/
The open graph protocol:
The Open Graph protocol enables any web page to become a rich object in a social graph. For instance, this is used on Facebook to allow any web page to have the same functionality as any other object on Facebook.
I am developing a web app which I need to open a particular app. I have found this site: http://handleopenurl.com/ which gives some of the app url. But there isn't the app that I want, which is PolyCom RealPresence.
How can I get any app url which is not in that site.
I have tried the following:
99845075 <!-- Works -->
New SMS Message <!-- Works -->
ITunes <!-- Works -->
PolycOM <!-- Do not Work -->
Thanks,
Mark
a Polycom rep says the only way to call in the app is IP dialing only (basic mode), or with alias or IP based (pro mode) - custom URL scheme to open the app and direct a specific call is not supported as of June 2013
see Polycom rep answer identical question here on their forums - http://community.polycom.com/t5/RealPresence-Mobile/Is-it-possible-for-the-RealPresence-Mobile-iOS-to-dial-URL/td-p/13480
Check out Implementing Custom URL Schemes in iOS App Programming Guide: Advanced App Tricks.
If the third party app in question implements a custom URL scheme, you need to figure out what it is and use that. Otherwise, I'm afraid you're out of luck.
I have a WordPress blog account already (abc.wordpress.com). And I have my own web site: www.xyz.com
I would like to integrate my WordPress blog content into my own site. Hopefully something like blog.xyz.com or just replace the home page of xyz.com with abc.wordpress.com
I know that I can download WordPress' code from wordpress.org and run my own WordPress. And having my own MySQL database, but WordPress is always releasing new code. I don't have the time to keep updating the source on my end to match it.
I'm running my own site as a hobby, so I prefer to let WordPress.com to manage the content for me and continue reuse my own blog at abc.wordpress.com, but make the content show up in my own site: xyz.com
I hope I was clear when explaining this.
Anyone knows a way to do this?
Thanks.
If your main worry is about the updates, I would say don't be. A simple click of the 'Updates' button in the wordpress admin is all you need to do in order to apply the updates for wordpress. A notification will pop up alerting you of any updates.
And as Calle has already mentioned, you can retrieve your content via RSS, or you could just export your current content from Wordpress.com, import the content into your own site, and manage it there. Everything would be in one spot.
Good Luck.
I don't know how good you are with programming but there's a PHP library called Simple Pie which would help you retrieve your content via RSS (which Wordpress automatically generates for you). The adress is here: http://simplepie.org/
If you are not very good with programming, perhaps you can get someone to do it for you or find a script which is already written somewhere. I do think RSS is definitely the best way to go.
I also think you exaggerate the problems of hosting Wordpress yourself. It's not something that you have to keep updated with, and if you want to, all you have to do is log in from time to time, perhaps once a month (how often are you writing articles?), and click "update" and Wordpress will do everything for you. Both for your plugins and WP version.
For the ability to use your own domain (xyz.com) and have wordpress redirect users from abc.wordpress.com(your wordpress blog) to your domain requires a premium account.
If you have a premium account then you can just log in to wordpress.com, click 'upgrades' and select 'domains'. From there you will see the option "Map an Existing Domain" and you will want to enter your domain here. Now your wordpress.com blog is what will show when users enter your domain's url (xyz.com).
Alternatively, if you need a workaround with a free wordpress.com account then you want to just embed your blog and for that you will need to use an RSS feed. Note: this method will not maintain your wordpress styles it will merely transport the content. Also by default not all browsers support RSS feeds.
You can view your blog's current feed by adding 'feed' to the end of your wordpress.com url, i.e. abc.wordpress.com/feed. You can read more about feeds here (http://en.support.wordpress.com/feeds/). Now you are just left with the task of figuring out how to embed the feed into your page.
One final hail-mary you might attempt is just redirecting your domain to your blog. Reference on how to do this different ways here: (http://css-tricks.com/redirect-web-page/). Example, place this tag in the section of your domains pages:
<meta http-equiv="refresh" content="0; URL='http://google.com'" />
(this will redirect after 0 seconds to the specified url)