Page 1 of 2

I'd requested significant.

Posted: Tue May 03, 2016 4:34 pm
by mahmut
Hi,

1. Is it possible to assign priorities to the tag ID ?
2. Content image size you'd get 400x250. Because I create a thumbnail gallery and unless the site starts up slowly.
3. I want to make arrangements for a separate CSS page 404 . How can I do that?

I need to make the above corrections , as I want, but I love this software. Please help. I do not want to use any other software. I love Bludit!

Thanks!

Re: I'd requested significant.

Posted: Fri May 06, 2016 8:19 am
by mahmut
Hello, my friend explained the answer to my first question here. viewtopic.php?f=6&t=628

I'm looking for answers to my other questions. Thank you.

Re: I'd requested significant.

Posted: Fri May 06, 2016 10:23 pm
by Edi
mahmut wrote:2. Content image size you'd get 400x250. Because I create a thumbnail gallery and unless the site starts up slowly.
How do you think should it work? How do you have created the thumbnail gallery?

Re: I'd requested significant.

Posted: Sat May 07, 2016 8:18 am
by mahmut
Edi wrote:
mahmut wrote:2. Content image size you'd get 400x250. Because I create a thumbnail gallery and unless the site starts up slowly.
How do you think should it work? How do you have created the thumbnail gallery?
I want to get clipped in the form of pictures I uploaded 400x250 . Because I will show thumbnails on the site homepage .

Thanks.

Re: I'd requested significant.

Posted: Sat May 07, 2016 12:33 pm
by Edi
There are two constants for the size in /bl-kernel/boot/init.php:

THUMBNAILS_WIDTH
THUMBNAILS_HEIGHT

Please see:

https://github.com/dignajar/bludit/issues/261

Re: I'd requested significant.

Posted: Sun May 08, 2016 10:57 am
by mahmut
Edi wrote:There are two constants for the size in /bl-kernel/boot/init.php:

THUMBNAILS_WIDTH
THUMBNAILS_HEIGHT

Please see:

https://github.com/dignajar/bludit/issues/261
Okay thanks. So how can I print it homepage?

Re: I'd requested significant.

Posted: Mon May 09, 2016 8:04 am
by mahmut
mahmut wrote:
Edi wrote:There are two constants for the size in /bl-kernel/boot/init.php:

THUMBNAILS_WIDTH
THUMBNAILS_HEIGHT

Please see:

https://github.com/dignajar/bludit/issues/261
Okay thanks. So how can I print it homepage?
My goal is, I want to show in my homepage Thumbnail.

coverImage set thumbnails?

Orginal:

Code: Select all

<?php
if($Post->coverImage()) {
			echo '<a href="'.$Post->permalink().'" class="image featured"><img src="'.$Post->coverImage().'" alt="Cover Image"></a>';
		}
?>
Example:

Code: Select all

<?php
if($Post->thumbnail()) {
			echo '<a href="'.$Post->permalink().'" class="image featured"><img src="'.$Post->thumbnail().'" alt=""></a>';
		}
?>
Thanks.

Re: I'd requested significant.

Posted: Tue May 10, 2016 1:06 pm
by Edi
mahmut wrote: 3. I want to make arrangements for a separate CSS page 404 . How can I do that?
Diego has answered this question at

viewtopic.php?f=6&t=570

Re: I'd requested significant.

Posted: Wed May 11, 2016 10:49 am
by mahmut
Edi wrote:
mahmut wrote: 3. I want to make arrangements for a separate CSS page 404 . How can I do that?
Diego has answered this question at

viewtopic.php?f=6&t=570
Thank you, thank you very much . So how do I make the subject thumbnails ?

Post:

viewtopic.php?p=2292#p2286

Re: I'd requested significant.

Posted: Wed May 11, 2016 2:10 pm
by Edi
I still do not understand what you try to do... A gallery? Using only the featured image of a page or post?

Basically you can
  • either change the values of the width and height of thumbnails in the core,
  • or format the images using CSS.