Jekyll will only build with "jekyll update" category - jekyll

This is my first time using Jekyll and its all been going very well so far. I'm sure I am missing something or doing something silly but when I try and change a posts categories to something other than "jekyll update" the site breaks completely.
I have tried specifying the categories in many different front matter formats but even if I change:
categories: jekyll update
to:
categories: test
It breaks and I have no idea why.
Any help would be GREATLY appreciated.
Thanks.

Not sure why but I've moved the categories key under title instead of at the bottom of the front matter block and it is now working.

Related

How to add flags to MediaWiki?

I know how to add flags on Wikipedia but I'm trying to add flags on MediaWiki and don't know how. I am new to MediaWiki.
When I use "flagicon|GBR" on my main page, it comes up at "Template: Flagicon" as a red link. When I click on it, it takes me to a blank template page and I have no clue what to add here. I am assuming something goes here?
Can someone help me out please? What do I write to get a flag?
It's absolutely annoying lol
Thanks.
flagicon is a MediaWiki template. You can import it to use it on your wiki.

Where can I edit/see the HTML of this Wordpress free theme?

the answer to this one will probably be obvious to many of you, but I recently decided to make a website for my girlfriend and expand my knowledge while doing that. So here is my dilemma:
I am using the Blossom Mommy Blog theme, which is a child of the Blossom Feminine theme.
Below a single post page, there is a previous post/ next post navigation menu and the "previous/next" text is in English and I want to change that to be in Bulgarian. I was able to see this in the browser debugger, but I can't seem to find where this comes from in the theme files themself, so any help would be really appreciated!
P.S. I even prepared a screenshot, but apparently I cannot attach files here...
P.P.S. Tried looking at the parent and child functions.php, also the templates, but could not find this HTML. Looks like some function is calling it, but I have no idea where to find this function.
With many thanks,
Dobri
Function: previous_posts_link();
Function: next_posts_link();
Use:
previous_posts_link( "Your label" );
More info:
https://codex.wordpress.org/Function_Reference/next_posts_link
https://codex.wordpress.org/Function_Reference/previous_posts_link

add sku to many page in shopify

I need to add the SKU in 2000 pages in a website of shopify. I know that you can use the html code to do it, however, I did not mention it, if you could help me, I would appreciate it.
This is the way it should be:
This is the data that should be called:
Add {{ current_variant.sku }} to your liquid file (probably product-template.liquid) in the place you want it to show up.

How to remove Linkwithin / Related Posts?

I wanted to try out Linkwithin, a widget to show related posts underneath each post, to see how it looks like and stuff. On the Linkwithin website you can install the widget by clicking on a link which directed you to Blogger. I added the widget to my blog.
Now I would like to get rid of it, but on the Linkwithin website it's stated NOWHERE how to remove Linkwithin! So I tried deleting the widget but it wasn't showing up. So I went to the HTML source code and wanted to delete it straight from there, but I simply can't find it...
Does anyone know how to get rid of it, or can find it in the code?
Website is www.wldhrts.com
Many thanks!
You need to remove that widget from your blog. It's the first widget on your right sidebar (just above the search box).
Move to
Blogger >> template >> edit Template >>
Search for 'id='HTML2' it's the widget holding your linkwithin code. You should be able to find code like
<b:widget id='HTML2' locked='false' title='' type='HTML'>...</b:widget>
Remove the whole widget.
you can alternatively set nRelate on your Blog which is way better then LinkWithin.Here is the link of complete post explaining every process step by step. nRelate also offer you to earn some money by showing ads on your Blog or website.
http://sarcaassm.blogspot.com/2014/02/setup-nrelate-widget-to-your-blog.html
it is not always 'HTML2'. it depends upon where you have it. just try to reinstall it from linkwithin site, you will see codes, see what are they, note down on notepad and then search them in tempelate and remove. that will only work super fast. you may also like 'how to remove it only from blogger home'

Linking back to home page in wordpress

So I have WordPress installed in a subdirectory of my website with permalinks set up.
I have my website set up like so:
-index.php
-style.css
-/contact
---index.php
-/blog
---(Wordpress installation)
So my problem is, whenever I use an Home to link back to my homepage, it only works from my main blog page. If I go to a permalink post it takes me back to the blog home.
What I'm wondering is, is there a way to link back to the main page on both my blog home, and a permalink post? If i use ../../ it works on the post, but not the blog home.
I hope I worded this clearly enough, if I missed anything please let me know. Any help greatly appreciated, thanks.
Home
See: http://codex.wordpress.org/Function_Reference/home_url
You can use the home_url function: http://codex.wordpress.org/Function_Reference/home_url
I also recommend checking out the WordPress Function reference, and use the appropriate built in functions rather than inventing your own.
Edit: Not sure if you want to go back to the main index, or the WordPress index. If you just want to link back to your first index.php, you can simply use <a href="/>Home</a>