How to remove sponsored links from github pages' post footer - jekyll

I have created a blog with github pages using jekyll.
But below every post there are some sponsored links. How do I remove them.

Thanks guys for help.
Add the site in disqus admin.
Create shortname for the site in settings>>General.
Uncheck the discovery in settings>>General.
Change disqus short_name in _config.yml.

Those links are part of the Disqus advertising platform. Make sure to turn off the sponsored feature from your Disqus account settings.

Related

I am not able to publish my website using github pages that I made using HTML and CSS

I saw multiple tutorials on YouTube for publishing my site on Github but none of them is helping me.
I created a repository on Github, then I uploaded all my files in the repository and enabled the Github Pages for it, But even after doing so, my website is not being published.
Clicking onto the link that Github Pages redirects me to a page where I can only see my repository description and nothing else.
I am attaching some images for you guys to understand better.
Please follow this steps.
Note: You need to provide your username.gihub.io as a repository name.if this matches exacty then it will work.
https://pages.github.com/
Ex. If your username is xyz then your repository name should be xyz.github.io.

how to show my hexo blog on google search

I am using github pages and hexo to make my own blog.
I wrote few articles and it looks find.(https://bmy4415.github.io/2018/05/08/ssh-key/)
(This site is written in Korean).
But I cannot search my blog on Google Search even if search as "bmy4415's note" which is my blog's main name.
I also used hexo plugin 'hexo-generator-seo-friendly-sitemap' and 'hexo-generator-search' but it seems not effective. Is there any additional setting that will show my blog on Google Search? Thanks.
Google does NOT know everything on its own.
Go to Google webmasters` tool and fill needed data and verify your web ownership. Googlebot will start visiting and tracking your site.
Plus have a look at robots.txt

Facebook share doesn't display the og image

I am trying to share my blog post on fb and it doesn't display the image defined under og metatags. I tried debugging using fb debugger but even that shows the image as blank?
You could reproduce hitting below url in fb debugger
http://niyando.com/web/using-angular-js-with-rails/
I also checked and matched my image size conventions as per open graph documentation. Is there anything I missed?
Thanks
Answering my own question.
I am hosting jekyll based blog on github pages. For some weird reason naked custom domains do not work very well with github pages when you want to share posts on facebook. The preview just appears as blank.
I fixed this by adding www before my domain under cname file on github. I also has to reference og:image with a url prefixed with www.
Found the solution under comments on this blog.
http://ramsesoriginal.info/2015/03/21/facebook-open-graph-github-pages/

How to embed/integrate WordPress blog into my own web site?

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)

Is possible to remove the bottom links in a WP theme?

I am new to Wordpress, I am installing my first wp blog http://www.harobmxbikes.net/nanoc3/?p=1 , Is possible to remove the bottom links in a WP theme? Thanks in advance!
Of course it is possible as they are just HTML templates.
However, people have put time and effort into building these templates for you to use and it would be unethical to remove the links that credit their work.
You can download the wp php file from FTP, modify the template, and re-upload again, by doing so, you can remove those links. :)