View Single Post
  #4  
Old 10-10-2011, 06:17 AM
Mooff Mooff is offline
 
Join Date: Mar 2010
Posts: 301
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks for the praise. =)

Quote:
Originally Posted by Alfa1 View Post
How did you create the image captions?
How did you do this: http://awesomescreenshot.com/0c9m161c7
That's our featured articles widget.
Admin puts in 4 ids in the frontend and the php widget grabs the according preview-picture, subtitle and title and throws them together with some css

Quote:
There is a text overlap on
Thanks for the bugreport, i'll see what i can do there.

Quote:
What do you mean with 'remove tags from the preview'? I do not have tags on the preview.
We are removing all html-tags which are present in our preview (expect url). Let's say in the article it could make sense to use font-sizes, smileys, bold text, quotes, line breaks ... in the first 2 sentences - well it doesn't in the preview, so we cut the preview down to plain text.

Quote:
The link 'Zum Forum' on the preview missed the threadid. http://www.united-forum.de/showthread.php?t=
Thanks, i'll look into that aswell.

Quote:
Thats very nice. What exactly are you showing? A gallery from a certain user or from a certain category?
Galleries are admin/editor only and work like this:
Create a gallery via jAlbum (a custom plugin creates the index.html we need for prettyphoto)
Upload that gallery (thumb-folder, big-pictures and index.html) to our FTP
Use the gallery bbcode and give the appropriate options. f.e. /gallery="folder=foldername"/
the php behind the bbcode does the rest and generates either the gallery, or gallery as content.

Quote:
Please expand on this.

Your source code looks much cleaner than default vbCMS pages. More content, less crap. Good for SEO as well.
your second line is what i meant with getting rid of yui.

The yui2 source code just looks awful (yui3 is a lot better). So if you want multiple colums and footers or headers, or some really fancy stuff you end up with tons and tons of code like that:
(that would be one widget block in yui2)
Code:
<div class=yui-b>
<div class=yui-gx>
<div class=yui-main>
<div class=yui-b yui-g>
<div class=yui-first>
<ul class="widgetcolumn">
---vb4-stuff---
<li>
<div class=block/widget/article>
... and finally your content
</div>
</li>
</ul>
--end vb4-stuff
</div></div></div></div></div></div>
and you have that for every widgetcolumn. horrible imo.

so we changed it to something like that:
(that would be a full cms grid - slider, articles + sidebar, 3 columns next to each other as footer)
Code:
<ul class=uf_slider>
vb4-stuff
</ul>
<div class=uf_main>
  <ul class=uf_articles>
  vb4-stuff
  </ul>
  <ul class=uf_sidebar>
  ...
  </ul>
</div>
<ul class=uf_column>
 ...
</ul>
<ul class=uf_column>
 ...
</ul>
<ul class=uf_column>
 ...
</ul>
And then write some own css to make those new classes the appropriate width and float them to their places. Alot cleaner that way. =)

btw. the flatten-grid function vb4 offers is awesome and if you know what you are doing (css and html wise) it makes not using yui relatively easy.
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01118 seconds
  • Memory Usage 1,784KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code
  • (6)bbcode_quote
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete