Search found 141 matches

by bayerberg
Fri Mar 01, 2019 11:57 am
Forum: General
Topic: Display Article and Category data separately
Replies: 5
Views: 4011

Re: Display Article and Category data separately

you need one page with all categories and all pages in particular category?
by bayerberg
Wed Feb 27, 2019 2:32 pm
Forum: General
Topic: Category Descriptions and List
Replies: 2
Views: 2403

Re: Category Descriptions and List

if you want to display that info in your page.php try something like

Code: Select all

  $categoryKey = $page->categoryKey();
  $category = getCategory($categoryKey);
  echo '<h2>' . $category->name(). '</h2>';
  echo '<h4>' . $category->description(). '</h4>';
by bayerberg
Wed Feb 27, 2019 2:17 pm
Forum: General
Topic: Plugin development help
Replies: 2
Views: 2027

Re: Plugin development help

I'm fighting with that issue as well, for now fiddling with core files is the best way of doing this, but updating your Bludit to new versions is a pain. I'll get it one day though :).

this is why I proposed something more than plugins ...
by bayerberg
Thu Feb 21, 2019 10:18 am
Forum: Themes
Topic: How to add an 'Edit' button on Mediumish theme?
Replies: 4
Views: 2311

Re: How to add an 'Edit' button on Mediumish theme?

you can have that functionality by using https://gum.co/adminbar. if you are an admin edit button will appear in the bar on any editable page
by bayerberg
Fri Feb 15, 2019 6:45 pm
Forum: General
Topic: CMS name
Replies: 3
Views: 2133

Re: CMS name

make it in blue > did it in blue >> bludit :)
by bayerberg
Thu Feb 14, 2019 4:25 am
Forum: Plugins
Topic: [Plugin] Social Media Suite - integrate with social media sites
Replies: 4
Views: 4890

[Plugin] Social Media Suite - integrate with social media sites

Do you want to display your Youtube Channel, Artstation, Baidu Tieba, Baidu Tieba Bar, Behance, Dribbble, Facebook Page, Facebook Group, Facebook Profile, Facebook Messenger, Github, Gitlab, Instagram, Kickstarter, LinkedIn, Pinterest, Patreon, Reddit, Sina Weibo, Snapchat, Telegram, Tik-Tok, Tumblr...
by bayerberg
Thu Feb 07, 2019 4:29 pm
Forum: General
Topic: A question about plugins, browsers and styling
Replies: 8
Views: 3752

Re: A question about plugins, browsers and styling

you can amend that with css :

Code: Select all

@media only screen and (max-width:768px) {
  img {
	width:100%
	height:auto; 
  }
}
change img to a class you use for styling post images
by bayerberg
Sat Feb 02, 2019 12:15 pm
Forum: General
Topic: Seo
Replies: 3
Views: 2085

Re: Seo

if you modify head.php with something like

Code: Select all

if ($WHERE_AM_I == 'category') {
echo '<meta name = "robots" content = "noindex, follow">';
} 
it is possible. There should be a bit more logic to do it correctly though...
by bayerberg
Fri Feb 01, 2019 12:27 pm
Forum: Themes
Topic: How to inherit changes made to a theme?
Replies: 1
Views: 1643

Re: How to inherit changes made to a theme?

quickest way would be to use the init.php file and try to do as much customisation as you can this way. If this file exists in the theme folder it gets loaded automatically.


Couple of appends here and there, maybe some extensions to functionality and your are done ;)
by bayerberg
Thu Jan 31, 2019 2:33 am
Forum: Plugins
Topic: [Plugin] SEO Breadcrumbs for Bludit 3.x
Replies: 0
Views: 5704

[Plugin] SEO Breadcrumbs for Bludit 3.x

Another plugin brought back because of popular demand :) SEO Breadcrumbs https://makeitblu.com/img/bbc-a01.jpg https://makeitblu.com/img/bbc-a02.jpg Easy way to boost your SEO - get your site indexed properly by using Schema.org standard breadcrumbs This version includes categories and child pages. ...