Search found 8 matches

by deeman001
Wed Sep 12, 2007 4:12 pm
Forum: Joombie Coding Q/A
Topic: How do you hide a module while viewing an article in J1.5???
Replies: 12
Views: 1520

Re: How to Hide Modules while Viewing Articles?

for my needs, this will work.  I will continue looking to see if it can be done for each article.  You could probably use the article id # or similar.
by deeman001
Wed Sep 12, 2007 2:28 pm
Forum: Joombie Coding Q/A
Topic: How do you hide a module while viewing an article in J1.5???
Replies: 12
Views: 1520

Re: How to Hide Modules while Viewing Articles?

newart, here is what works.

$view = JRequest::getVar('view');

if ($view != 'article') { ?>

[html you do not want displayed goes here]



This is the way to hide html when viewing an article.
by deeman001
Wed Sep 12, 2007 2:25 pm
Forum: Joombie Coding Q/A
Topic: How do you hide a module while viewing an article in J1.5???
Replies: 12
Views: 1520

Re: How do you hide a module while viewing an article in J1.5???

Pentacle,

Thanks for the help.  I modified the if statement just a little and your suggestions worked.

Here is what I ended up with:

$view = JRequest::getVar('view');

if ($view != 'article') { ?>

[html you do not want displayed goes here]



Thanks for helping me out with this.
by deeman001
Wed Sep 12, 2007 2:24 pm
Forum: Joombie Coding Q/A
Topic: How do you hide a module while viewing an article in J1.5???
Replies: 12
Views: 1520

Re: Can You Hide Modules while Viewing Articles in j1.5?

Here is how you do it:

$view = JRequest::getVar('view');

if ($view != 'article') { ?>

[html you do not want displayed goes here]

by deeman001
Wed Sep 12, 2007 1:20 pm
Forum: Joomla! Coding 101
Topic: Howto: Create a new custom search plug-in???
Replies: 3
Views: 1058

Re: Howto: Create a new custom search plug-in???

Hi Gdunc, Here is a link that might help you develop the plugin.  It is a "How To" Tutorial for developing plugins written by the developers of Joomla.  I think it is tailored for J1.5 though, but I am sure there is another tutorial out there for 1.0.x m What I have found to be helpful, is...
by deeman001
Wed Sep 12, 2007 1:41 am
Forum: Joombie Coding Q/A
Topic: How do you hide a module while viewing an article in J1.5???
Replies: 12
Views: 1520

How do you hide a module while viewing an article in J1.5???

How do you hide a module while viewing an article?  in 1.0.x you could type "if (($option != 'com_content') && ($view != 'article'))" but that doesn't work in 1.5.

Any ideas?
by deeman001
Fri Jan 05, 2007 3:41 pm
Forum: Joomla! Extensions Directory Forum
Topic: Request: Advanced Search for 1.0 or 1.5 Extensions
Replies: 2
Views: 841

Request: Advanced Search for 1.0 or 1.5 Extensions

I visit the extensions directory more often than any other area of the Joomla site.  It would be great to have a link that shows only joomla 1.5 compatible extensions, or to have an advanced search feature that would allow you to search on 1.5 extensions.

Thanks for all the great work.

Darren