Search found 133 matches

by Jay
Wed Jun 12, 2019 4:16 pm
Forum: Themes
Topic: DevTheme - Go-up not working
Replies: 8
Views: 4087

Re: DevTheme - Go-up not working

Reactions shouldn't interfere with devtheme, as I use both and there are no problems. Especially when reactions plugin doesn't utilize javascript.
Check in browser's developer tools if any javascript error appears with enabled plugin. Assuming that problem doesn't lay in css or php.
by Jay
Wed Jun 12, 2019 4:11 pm
Forum: Themes
Topic: Editorial not working 3.9.1?
Replies: 1
Views: 1621

Re: Editorial not working 3.9.1?

Enable php error reporting to see what generates the major problem.
I suppose that it might be also the problem with .htaccess rewritebase setting.
by Jay
Wed Jun 12, 2019 4:05 pm
Forum: General
Topic: Moving site from localhost to webserver
Replies: 5
Views: 2789

Re: Moving site from localhost to webserver

Try to make a backup of content using backup plugin, install a fresh instance on your webserver, and then upload the backuped content.

Have on mind, that
- all the links you paste in editor are absolute by default
- cms settings needs to be adjusted
by Jay
Mon Jun 10, 2019 4:33 pm
Forum: General
Topic: Markdown Invisible since 3.9.1
Replies: 1
Views: 1263

Re: Markdown Invisible since 3.9.1

What sort of content editor plugin you have enabled?
by Jay
Thu May 23, 2019 10:59 pm
Forum: General
Topic: blog posts expand function?!
Replies: 3
Views: 1698

Re: blog posts expand function?!

Check out the code of blekathlon and devtheme. They have an own, independent of bludit, small function responsible of creating posts excerpts containing a set numbers of chars.
by Jay
Fri May 17, 2019 5:36 pm
Forum: General
Topic: page title in image alt tag
Replies: 2
Views: 1646

Re: page title in image alt tag

you can't echo an echo ;)
Change what is inside alt to below fix

Code: Select all

alt="'.$page->title().'"></a>';
by Jay
Wed May 15, 2019 1:30 am
Forum: Plugins
Topic: TinyMCE and Codesample
Replies: 7
Views: 4683

Re: TinyMCE and Codesample

I had such peripeteia in wysiwyg editors. It's either cms content processor who is responsible for clearing the content of unnecessary and possible harming code, or the wysiwyg editor plugin which is clearing the loaded content. try to configure manually tinymce (in its config file, not bludit) as i...
by Jay
Tue May 14, 2019 2:27 am
Forum: Plugins
Topic: TinyMCE and Codesample
Replies: 7
Views: 4683

Re: TinyMCE and Codesample

Try to encode your content to entities firstly and then paste into tinymce.
Or use simplemde / tail.writer markdown editors.
by Jay
Mon May 06, 2019 6:38 pm
Forum: General
Topic: Custom page listing only posts from one category
Replies: 4
Views: 3150

Re: Custom page listing only posts from one category

Check snippets in docs https://docs.bludit.com/en/dev-snippets/content-pages

You need to get the list of pages from DB firstly, as $content contains only your static page content
by Jay
Wed May 01, 2019 10:34 pm
Forum: General
Topic: splitting long article
Replies: 11
Views: 5425

Re: splitting long article

Another ideas for a small update? :D After implementing all things you listed this plugin will become 100% complete ;) Small visual change I also made - beside the first pagebreak occurrence - is that I don't display unnecessary first | previus and next | last buttons in pagination when there's no ...