Questions tagged [joomla1.7]

Joomla! is a free and open-source web content management system written in PHP. It is released under the GNU General Public License. This tag is for programming-specific questions referring to version 1.7.

Joomla! 1.7

Joomla! is a free and open-source web content management system written in PHP. It is released under the GNU General Public License.

Version 1.7 of Joomla! was released in July 2011 and the support ended in February 2012.

Resources

Related Tags

304 questions
0
votes
1 answer

Creating custom module: Menuitem SEF links?

I have a Joomla site that I am working on, building some custom modules to control content. I am using a menuitem field type: And then echoing out:
0
votes
1 answer

Readmore link not displaying in joomla 1.7 category blog

I am unable to show Readmore link into my category blog as i am currently using joomla 1.7 I have also clicked on ReadMore link and turned it on in article manager but still unable to display it.
Sachin Walia
  • 33
  • 1
  • 7
0
votes
3 answers

Dynamic Joomla Menu depending on the database row

My database is like below Menu I'm willing to create is as below. What I want to do is create a Joomla menu as shown above depending on the table rows in a table. If I add a row to the table, automatically menu item should be created. EG: there…
Techie
  • 44,706
  • 42
  • 157
  • 243
0
votes
2 answers

Is it possible to call directly from a model method from another model of the same component

Is it possible to call directly from a model method from another model of the same component? Is there any default Joomla option to call in such a way.
Kathir
  • 1,212
  • 15
  • 25
0
votes
2 answers

Joomla To do list Extension

Is there any Joomla Extension that allows any registered user to keep a list of their To-do items with the following attributes; 1. Title 2. Date due 3. Description. In the entry form, the Title should be a Text field, the Date due should be the…
0
votes
2 answers

Proper way to include JHTMLString class?

What is the proper way to include the class JHTMLString in Joomla 2.5? jimport('joomla.html.html.string'); and jimport('joomla.html.string'); doesn't work. The only way I've managed to include this class is…
Stilero
  • 467
  • 4
  • 19
0
votes
1 answer

getQuery(true) vs stdClass Class data row insertion - Joomla

Method 1 global $database; $user = new stdClass; $user->id = NULL; $user->name = $name; $user->username = $username; if (!$database->insertObject( '#__users', $user, 'id' )) { echo $database->stderr(); return false; } …
Techie
  • 44,706
  • 42
  • 157
  • 243
0
votes
1 answer

Joomla Pagination Error

$limit = $this->_app->getUserStateFromRequest('global.list.limit', 'limit', $this->_app->getCfg('list_limit'), 'int'); $limitstart = $this->_app->getUserStateFromRequest(OPTIOIN_NAME.'.limitstart', 'limitstart', 0, 'int'); $limitstart…
Techie
  • 44,706
  • 42
  • 157
  • 243
0
votes
0 answers

Joomla K2 item in another item?

So, I have to work with this Joomla 1.7 installation that the programmer before me didn't treat very well.It is using K2 plugin, on the home page there is a flash section with 4 tabs and in every tab there is a "More" button that leads to a K2…
0
votes
1 answer

Intro image component for joomla 1.7

Are there any components that allow uploading an intro image via the article like Joomla 2.5 in Joomla 1.7? I've searched on google but no luck. Is there any tutorial for adding in this function in Joomla 1.7?
Bravo Net
  • 805
  • 5
  • 17
  • 30
0
votes
2 answers

How to create a submenu in Joomla! frontend

What I'm trying to do is create a submenu (in Joomla! backend) with below code but it does not work. JSubMenuHelper::addEntry(JText::_('test'), 'index.php?option=com_test&controller=test', $controller == 'testcon'); I have attacted a sample…
Techie
  • 44,706
  • 42
  • 157
  • 243
0
votes
1 answer

Order form in joomla does not submit data

I have Joomla 1.7 working.I want to include order form in one of the pages.I have this part of the code but the problem is that it is not submitting the data to the email.How can I change the data for it to be submitted?This is part of the…
dansh
  • 51
  • 8
0
votes
1 answer

JavaScript print function make the calendar stop working

I'm using Joomla as my CMS and I use below JavaScript to print specific area of the page (actually the whole body here). JavaScript function printDiv(divName) { var printContents = document.getElementById(divName).innerHTML; …
Techie
  • 44,706
  • 42
  • 157
  • 243
0
votes
2 answers

Joomla clear cache for a specific page only

I want to clear cache on a specific page ? I'm using Joomla as my CMS. Whats the override do I have to do? What's the code should I insert into my view? Thanks
Techie
  • 44,706
  • 42
  • 157
  • 243
0
votes
1 answer

How do we set rows(rows) and columns(cols) for an editor?

How can we set rows(rows) and columns(cols) for an Tiny MCE editor in xml form values.
Mohammed Nagoor
  • 884
  • 2
  • 12
  • 25