Search found 133 matches

by Jay
Tue Mar 05, 2019 12:07 pm
Forum: Plugins
Topic: simplemde replacement
Replies: 2
Views: 2490

simplemde replacement

After writing couple test posts using simplemde I'm not quite fond of its features but there's no way I'm ever going back to use visual editors like CKE or tinyMCE as I love using markdown for quite some time. Basically simplemde became obsolete. Last update was over 3yrs ago, and issues with using ...
by Jay
Sat Mar 02, 2019 8:00 pm
Forum: General
Topic: 3.8.0/1 bug
Replies: 5
Views: 3037

Re: 3.8.0/1 bug

rahuldottech wrote: Sat Mar 02, 2019 6:33 pm it should be:

Code: Select all

<meta name="robots" content="noindex, nofollow, noarchive">
In 3.8.1 everything is fine, checked it multiple times during installation.
I wouldn't ask what's wrong if I saw it is still bugged.
by Jay
Sat Mar 02, 2019 6:21 pm
Forum: General
Topic: 3.8.0/1 bug
Replies: 5
Views: 3037

Re: 3.8.0/1 bug

What's exactly wrong?
Plugin works as supposed.
It uses meta robot tags if you explicitly set them for a page.
Otherwise - by default - page is indexed and archived, and it doesn't need a meta name robots tag to tell search bots to do it.
by Jay
Sat Feb 23, 2019 12:22 am
Forum: Themes
Topic: [Solved] problem with showing tags list on pages
Replies: 7
Views: 3279

Re: problem with showing tags list on pages

The theme DevTheme has some additional functions, which perhaps can cause the issue. The best would be to ask the developer. Something touched me to try one additional thing, as I believed there has to be 1 small catch. I'd never guess that this snippet was causing trouble $tags = $page->tags(true)...
by Jay
Fri Feb 22, 2019 6:28 pm
Forum: Themes
Topic: [Solved] problem with showing tags list on pages
Replies: 7
Views: 3279

Re: problem with showing tags list on pages

The theme DevTheme has some additional functions, which perhaps can cause the issue. The best would be to ask the developer. Right when you were writing answer I was contacting with devtheme's developer :lol: (forgot devtheme's is a 3rd party developer's theme) They'll soon update the theme to meet...
by Jay
Thu Feb 21, 2019 11:10 pm
Forum: Themes
Topic: [Solved] problem with showing tags list on pages
Replies: 7
Views: 3279

Re: problem with showing tags list on pages

I do not understand what you are trying to do... Including the sidebar in a page? Basically yes. I'd like to get a sidebar with all bludit's plugin in devtheme. Otherwise I'd need to wrote my own code to include every plugin I'd like to have :cry: If you wan't to get an overview of the error, add t...
by Jay
Thu Feb 21, 2019 9:55 pm
Forum: Themes
Topic: [Solved] problem with showing tags list on pages
Replies: 7
Views: 3279

Re: problem with showing tags list on pages

With which code? I use the builtin' bludit sidebar code for all sidebar plugins, as descibed in my first post <?php Theme::plugins('siteSidebar') ?> categories works fine, tags throws error. I have no idea how to approach to fix this bug(?). I'll try to write my own code, but I just feel it will en...
by Jay
Thu Feb 21, 2019 8:10 pm
Forum: Themes
Topic: [Solved] problem with showing tags list on pages
Replies: 7
Views: 3279

[Solved] problem with showing tags list on pages

I wanted to show categories and tags on hide'able menu in devtheme using <?php Theme::plugins('siteSidebar') ?> On homepage everything works smooth as supposed. The problem appears on pages, where I get errors with accessing the tags db Notice: Trying to get property 'db' of non-object in /bl-plugin...
by Jay
Thu Feb 21, 2019 7:58 pm
Forum: General
Topic: Disable elements in static pages
Replies: 6
Views: 3322

Re: Disable elements in static pages

Try to embed unneeded blocks within a conditional php statement, checking if the page is not a static page. For example the title tag in /theme/header.php if ($WHERE_AM_I == 'page' && !($page->isStatic())) { echo Theme::metaTags('title'); } Same goes to html elements in theme/page.php file
by Jay
Tue Feb 19, 2019 11:38 pm
Forum: General
Topic: Customize 404 page.
Replies: 10
Views: 5933

Re: Customize 404 page.

Thank you, Jay I put it into htaccess file, but it doesn't work, I think it needs to edit some of php file to redirect properly. Regards, Abdulhalim I should guess, that easiest methods doesn't work in general. Basically you should check your access log, and see if the 404.html document is found in...