11
-DJNZ-
Re: Newbb "New Topic"
  • 2005/4/7 3:36

  • -DJNZ-

  • Just popping in

  • Posts: 30

  • Since: 2005/1/11


You could do it by editing the templates, but the HTML to display the images is generated outside the template so even this is not as easy as it should be.



12
-DJNZ-
Re: Hotmail Users
  • 2005/4/7 3:27

  • -DJNZ-

  • Just popping in

  • Posts: 30

  • Since: 2005/1/11


Oh, if you do have a dynamic IP for your server then even with SPF you will have a different problem. MSN/Hotmail (and AOL) block email from servers without reverse DNS and, basically, you can't implement reverse DNS for a dynamically allocated IP. More about this at the excellent DNSstuff.com site.

What you need to do is set up XOOPS to send mail using your ISPs SMTP login (as I presume you have already). You can then create a SPF record

it-hq.org. IN TXT "v=spf1 include:myisp.com"

which will make any server which is valid for sending mail from myisp.com valid for sending mail from it-hq.org.

Beware that you may be infringing your agreement with your ISP by using its SMTP as a mail relay like this, although in practice you are a lot less likely to cause them a problem than a home user with a worm. However, the 'right' way to do it is either to get a line with a static IP with reverse DNS provided by the ISP, or to use a hosted server.

Good luck!



13
-DJNZ-
Re: Hotmail Users
  • 2005/4/7 0:52

  • -DJNZ-

  • Just popping in

  • Posts: 30

  • Since: 2005/1/11


brash this may help you.



14
-DJNZ-
Re: Hotmail Users
  • 2005/4/6 23:35

  • -DJNZ-

  • Just popping in

  • Posts: 30

  • Since: 2005/1/11


You need to set up SPF for your domain.



15
-DJNZ-
Re: new bb a little to fancy.
  • 2005/4/2 10:57

  • -DJNZ-

  • Just popping in

  • Posts: 30

  • Since: 2005/1/11


Quote:

bfine107 wrote:
Anyone know how to tone things down on here? I'm talking like taking out the drop down menus, and other fancy bells and whistles.

thanks.

I am working along these lines too, see this thread.



16
-DJNZ-
Re: Simplifying the look of NewBB2
  • 2005/4/2 10:42

  • -DJNZ-

  • Just popping in

  • Posts: 30

  • Since: 2005/1/11


Quote:

limecity wrote:
newbb2 is abit too advance for some users. its more to tech savvy people.

You are right - I want to change that, at least for visitors (although I have cleaned up the admin links as well - boy was that hard in the template because they are hard-coded in PHP. I think I will end up forking NewBB2 to make it more Smarty-friendly, but for now everything is in a template).

Quote:

I do wonder if the DHTML and some buttons are slowing down the page load?

I removed the pdf, print, voting, view mode, rating feature since no one really ever uses them.

I am working on the basis of keeping all the functionality in the core templates. There are already options in NewBB2 to turn some things off (like ratings): I am planning to add a module to set options for the other things.

Quote:

i like what you did in the demo site.

Thanks - wait till I have finished the viewforum template, that is looking really good.



17
-DJNZ-
Re: Simplifying the look of NewBB2
  • 2005/4/2 4:02

  • -DJNZ-

  • Just popping in

  • Posts: 30

  • Since: 2005/1/11


Well I have done some work on the flat message template: I would appreciate any comments on this test forum.



18
-DJNZ-
Re: Edit News Template with using smarty variables
  • 2005/3/25 21:27

  • -DJNZ-

  • Just popping in

  • Posts: 30

  • Since: 2005/1/11


You have worked out how Smarty works, but you need to understand how XOOPS works too. I am afraid that the answer is not simple, but here goes...

An XOOPS block is defined in its module's xoops_version.php file. The block that uses the template you are modifying is defined like this:
$modversion['blocks'][1]['file'] = "news_topics.php";
$modversion['blocks'][1]['name'] = _MI_NEWS_BNAME1;
$modversion['blocks'][1]['description'] = "Shows news topics";
$modversion['blocks'][1]['show_func'] = "b_news_topics_show";
$modversion['blocks'][1]['template'] = 'news_block_topics.html';

When XOOPS has to display the block, it uses the above definition to include the file modules/news/blocks/news_topics.php, call the function b_news_topics_show() and fetch the template news_block_topics.html.

This means that in the template you are modifying, the smarty $block variable is set up by the code in the function b_news_topics_show() in the file news_topics.php. If you want to access different data (like the stories data you have copied from news_block_top.html) you have to make sure that this data is loaded into smarty by your PHP code. Again using xoops_version.php, you can see that the code you need is in news_top.php.

I hope this is enough to get you started...



19
-DJNZ-
Re: Simplifying the look of NewBB2
  • 2005/3/17 10:23

  • -DJNZ-

  • Just popping in

  • Posts: 30

  • Since: 2005/1/11


Quote:
jegelstaff wrote:

It's not just you.

We have clients asking us to strip features out of newBB 1 because they find it's too cluttered! I think they would faint if they saw newBB 2.
--Julian

Quote:
brash wrote:
Strip features out of NewBB 1 ? Wow, that would certainly be a very uncluttered interface

It would be a shame to strip out access to features just because they clutter the interface, but I don't like the way NewBB forces its features right in your face! I am thinking along the lines of hiding most of the options with DHTML reveals something like this.

Quote:
banned wrote:

Hell, newbb - as a module that uses smarty - is one of the most easy constumizable forum in the net.
In about 20 minutes you can remade the main aspect of your forum - tweaking the 'post' template, right?

Smarty is the main reason I use XOOPS. I am surprised that despite the large number of 'themes' available for XOOPS there are very few alternative template sets for the key modules. In fact the post template doesn't bother me much, it is the forum list and forum view that I don't like. Particularly for the first-time visitor, the 'signal to noise ratio' is just too low. I hate to say it, but PHPbb does have an uncluttered look - just look at smarty's own forum.



20
-DJNZ-
Simplifying the look of NewBB2
  • 2005/3/16 22:36

  • -DJNZ-

  • Just popping in

  • Posts: 30

  • Since: 2005/1/11


Is it just me, or does NewBB2 look confusing compared to other forums?

Apologies for cross-posting, but I seem to have posted this message on the least vistited forum on this site ;)




TopTop
« 1 (2) 3 »



Login

Who's Online

203 user(s) are online (127 user(s) are browsing Support Forums)


Members: 0


Guests: 203


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: May 31
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits