[RC] cBB Blog

A place for MOD Authors to post and receive feedback on MODs still in development. No MODs within this forum should be used within a live environment!
Ideas Centre
doenwenu
Registered User
Posts: 55
Joined: Sat Jul 27, 2013 6:16 am

Re: [RC] cBB Blog

Post by doenwenu »

Thanks for this wonderfull mod. I realy love it.
Was easy to install.

Is it possible to set an image on index of the blog?
now the index is only text, but i like it, when there is a simple image in the begin of the message :)

Keep up the good work.
doenwenu
Registered User
Posts: 55
Joined: Sat Jul 27, 2013 6:16 am

Re: [RC] cBB Blog

Post by doenwenu »

another question,

is it possible to open links in new window?
doenwenu
Registered User
Posts: 55
Joined: Sat Jul 27, 2013 6:16 am

Re: [RC] cBB Blog

Post by doenwenu »

Hmf, such a wonderful mod, but no comments :?
User avatar
canidev
Registered User
Posts: 208
Joined: Sun Jun 26, 2011 5:40 pm
Location: Spain
Contact:

Re: [RC] cBB Blog

Post by canidev »

Hi,
Sorry for my delay on reply. Im working hard in a new mod this days.

I will try to add the image feature in the next version.
To open the links in new page you must edit the template file.
open /styles/(your style)/template/blog/index_body.html
find:

Code: Select all

<a href="{postrow.U_ACTION}">
Replace with:

Code: Select all

<a href="{postrow.U_ACTION}" onclick="window.open(this.href); return false;">
doenwenu
Registered User
Posts: 55
Joined: Sat Jul 27, 2013 6:16 am

Re: [RC] cBB Blog

Post by doenwenu »

canidev wrote:Hi,
Sorry for my delay on reply. Im working hard in a new mod this days.

I will try to add the image feature in the next version.
To open the links in new page you must edit the template file.
open /styles/(your style)/template/blog/index_body.html
find:

Code: Select all

<a href="{postrow.U_ACTION}">
Replace with:

Code: Select all

<a href="{postrow.U_ACTION}" onclick="window.open(this.href); return false;">
Nice one, thanks.
I am looking forward to next release :)
User avatar
canidev
Registered User
Posts: 208
Joined: Sun Jun 26, 2011 5:40 pm
Location: Spain
Contact:

Re: [RC] cBB Blog

Post by canidev »

Hi,

The demo is now available. See the first post for more details.
doenwenu
Registered User
Posts: 55
Joined: Sat Jul 27, 2013 6:16 am

Re: [RC] cBB Blog

Post by doenwenu »

Is it possible to put smilies in comments from the default smileyset?
User avatar
salvocortesiano
Registered User
Posts: 190
Joined: Mon Mar 22, 2010 1:49 pm
Location: Florence (Italy)
Name: Salvo Cortesiano
Contact:

Re: [RC] cBB Blog

Post by salvocortesiano »

Hi canidev, thanks for this great MOD! At this link the Italian translation of this mod 1.0.1 ;)

Best regards

Salvo

Edit: Released on new translation on: PHPBBWorld

Special thanks to Galandas :D
Last edited by salvocortesiano on Sun Sep 01, 2013 1:24 pm, edited 3 times in total.
The best way to predict the future is to invent it!
Image
User avatar
canidev
Registered User
Posts: 208
Joined: Sun Jun 26, 2011 5:40 pm
Location: Spain
Contact:

Re: [RC] cBB Blog

Post by canidev »

salvocortesiano wrote:Hi canidev, thanks for this great MOD! At this link the Italian translation of this mod 1.0.1 ;)

Best regards

Salvo
Wow, thanks for your contribution.
Is it possible to put smilies in comments from the default smileyset?
Maybe I will add this option in the next version.
doenwenu
Registered User
Posts: 55
Joined: Sat Jul 27, 2013 6:16 am

Re: [RC] cBB Blog

Post by doenwenu »

canidev wrote:
salvocortesiano wrote:Hi canidev, thanks for this great MOD! At this link the Italian translation of this mod 1.0.1 ;)

Best regards

Salvo
Wow, thanks for your contribution.
Is it possible to put smilies in comments from the default smileyset?
Maybe I will add this option in the next version.
Ok thanks.
User avatar
keith10456
Registered User
Posts: 2315
Joined: Thu Feb 24, 2005 6:55 pm
Contact:

Re: [RC] cBB Blog

Post by keith10456 »

canidev wrote:
salvocortesiano wrote:Hi canidev, thanks for this great MOD! At this link the Italian translation of this mod 1.0.1 ;)

Best regards

Salvo
Wow, thanks for your contribution.
Is it possible to put smilies in comments from the default smileyset?
Maybe I will add this option in the next version.
+1
User avatar
hd321kbps
Registered User
Posts: 190
Joined: Tue Oct 16, 2012 10:16 am
Location: Russian
Name: Igor Marchuk
Contact:

Re: [RC] cBB Blog

Post by hd321kbps »

Thank you very much for mod. I liked it very much. I made a Russian translation, and there is a tag cloud.
http://www.canidev.com/viewtopic.php?f=22&p=1412#p1412
Also found a error the installation widget recent entries, how to fix it?
Image
What are your plans for the future and how we can implement the friendly Url to Russian link.
User avatar
hd321kbps
Registered User
Posts: 190
Joined: Tue Oct 16, 2012 10:16 am
Location: Russian
Name: Igor Marchuk
Contact:

Re: [RC] cBB Blog

Post by hd321kbps »

error corrected
User avatar
canidev
Registered User
Posts: 208
Joined: Sun Jun 26, 2011 5:40 pm
Location: Spain
Contact:

Re: [RC] cBB Blog

Post by canidev »

Bug with this mod appears on phpBB 3.0.12 update.
To solve, do this:
Open: includes/hooks/hook_blog.php
Find:

Code: Select all

		if(empty($config['blog_version']))
		{
			return false;
		}
Add after:

Code: Select all

		if(!defined('BLOG_POSTS_TABLE'))
		{
			include($blog_hook->root_path . "includes/constants.$phpEx");
		}
koziolek
Registered User
Posts: 5
Joined: Tue Oct 04, 2011 11:28 am

Re: [RC] cBB Blog

Post by koziolek »

Hello
I have a problem with Polish characters. When the title of the entry, for example Piękny długi słoneczny dzień the address url looks like this pikny-dugi-soneczny-dzie-p2.html

The phpBB SEO is on the way.

Code: Select all

     $this->url_replace = array(
                 'ś' => 's',
                 'ł' => 'l',
                 'ą' => 'a',
                 'ż' => 'z',
                 'ź' => 'z',
                 'ę' => 'e',
                 'ć' => 'c',
                 'ó' => 'o',
                 'ń' => 'n',
                  'Ś' => 'S',
                 'Ł' => 'L',
                 'Ą' => 'A',
                 'Ż' => 'Z',
                 'Ź' => 'Z',
                 'Ę' => 'E',
                 'Ć' => 'C',
                 'Ó' => 'O',
                 'Ń' => 'N',
              ); 
 
How does it adapt to this blog?

Regards
Locked

Return to “[3.0.x] MODs in Development”