I wanted to ask a maybe dumb question but how do you guys set up an html website to look like this when searched on google?
Ive tried adding anchor tags to the meta tags, yes maybe quite dumb idea , well it didn't work, does anybody know how to? Thank you in advance
With Sitelinks
As Google Webmaster Tools explains:
Sitelinks are automatically generated links that may appear under your
site's search results
This means you can't add them via some tool or code. The best you can do is to structure your correctly. See Google's page about this https://www.google.com/support/webmasters/bin/answer.py?answer=47334&hl=en
It's generated automatcally by Google, but you can help the robots to show the right things using a sitemap: https://support.google.com/webmasters/answer/156184 also it allows you to make a link preview.
PS: There is lots of tools to do that, like this one https://www.xml-sitemaps.com/
Related
I'm currently trying to display the same content on different pages on a WordPress site.
I do want to change certain words between that content that will be displayed on different pages?
is that possible in wordpress?
I feel like wordpress is very limited.
I just want suggestions from the community please! I'm as well googling my question, no luck yet. I'll keep posted.
Thank You.
I found this and it makes a lot of sense now.
https://developer.wordpress.org/themes/basics/template-hierarchy/
Can i hide my wordpress blog site's page source like this? I have to ask this question because there are many plugins which can disable page source and right-click. but after typing manually "view-source:url" in browser it instantly shows the source-code of wordpress site.If any body knows answer please write down . this is very important for all bloggers 'I think' .
TLDR: No, you can never hide the soure code of your page. There is NO way.
For a browser to render a web site you need to send it the HTML, CSS, and javascript code. Even though you can make it "harder" to see the code by disabling right click, anyone with just a little bit of understanding of the web will be able to read it easily (F12 in most browsers).
As a website designer it is important for you to understand this concept as it is very important in deciding on how to design your web site. Things the user should not see need to happen on the server side (where no user can reach it). Only things which dont matter if anyone can see should be sent to the user.
I think you cannot hide the whole code. Or do you want to hide a specific part of the code? For example, you can hide/encrypt the URL of an iframe in which you can display more sensitive content. However, I also don't really know how to do it in WordPress (I searched for a solution many times) but I heard it's possible.
I'm curious what about the answers.
I wouldn't even consider doing this. Not only does it ruin the end-user's experience, it can actually stop people with disability copying text from your site or using other right-click menu items.
You can't hide your code, but you can obfuscate some of it.
CSS Obfuscater.
JSS Obfuscater.
How are you guys doing?
I am recently doing applying CKEditor to my corp's editor.
It's been great though I've got stuck in some problem.
I expect it to be the best even when we paste other contents from web or Word, but What blocks me doing is something kind of inline style tag, such as 'p style....' since it won't take its style away that my viewer doesn't seem to keep the same form.
I found out that filter.js would be the perfect solution for it. But there doesn't seem to be any way I can handle in my IDE since it doesn't exist.
How can I find a file called 'filter.js' or other plug-in so that I can handle the other way. this is the URL which would be help.
http://docs.ckeditor.com/source/filter.html#CKEDITOR-filter
Thanks.
Do I have to make new file called filter.js so I can edit on my own.
So confused. Hope to get some nice solution to it. Thanks.
CKEditor has a robust content filtering system called ACF (Advanced Content Filter). Read more about it here: http://docs.ckeditor.com/#!/guide/dev_acf and see the samples here: http://sdk.ckeditor.com/samples/acf.html. It's highly flexible so you can customize it to your needs.
Just for curious, I am asking this question. I have gone through this following website and their functionality with Google Maps inspired me.
https://batchgeo.com/map/top-100-twitter-users
So tried to have a look at their javascript code by trying to debug the site with firebug. I could not able to find their javascript where they are rendering the markers and grouping the charts. Now can anyone tell me the ways to hide the javascripts.
No you can't hide Javascript files like that, instead they can be Obfuscated. Google maps in there site must have been loaded dynamically. Here check there source tab in dev tools.
Also check this screenshot
Perhaps you missed to check the referenced script files, they are no hidden... here they're:
https://d27ixrd8sdmf11.cloudfront.net/map/json/top-100-twitter-users/1301953778
I have tried Google but I can't find the websit /utility I'm looking for. A while ago I found a website which lets you paste in Javascript and then it will produce html/css which you can copy and paste into your webpage which then displays the Javascript with syntax highlighting and proper indentation. Does anyone know what website this is or know of a similar website? Thanks.
See ToHTML.com. Another options is Highlight.js.