Questions tagged [joomla-extensions]

Extensions for Joomla! an open source content management system for web sites, which can be heavily extended. Joomla questions about programming and administration are best asked on https://joomla.stackexchange.com

Joomla! is an open source content management system for web sites which can be heavily extended.

Currently about 6238 extensions are registered in the Joomla! Extension Directory.

Related tags:

1080 questions
3
votes
4 answers

updating timestamp field in mysql using joomla component

I'm working on joomla component (com_book) version 3.0. In that I'm trying to insert books using form to database, in database I'm having updated_at column for that column I'm using timestamp datatype. Here updated_at column working fine when i'm…
srinu
  • 39
  • 5
3
votes
2 answers

Using jimport in my own script

When i try to use jimport('joomla.user.helper') it gives me this error. Fatal error: Call to undefined function jimport() in /home/joomclan/public_html/quiz/pop_fetching.php on line 223 This is my code where i use this: function…
3
votes
2 answers

Joomla 2.5 cant use $this in helper file

I have created a component and a plugin in joomla 2.5 and there is a Helper file in the component which will have many useful functions and I plan to call one of its function which then calls another function in the helper by this…
user1438910
3
votes
2 answers

Joomla 2.5 render content plugins in my module

I want to render Joomla content plugins in my module, how to do that ? Here is my code

getQuery(true);  
$query->select('stendas_id, stendas_lat, stendas_lon,…
andy
  • 177
  • 2
  • 12
3
votes
2 answers

Obtain product custom field value in Virtuemart

I am trying to obtain value of a custom field of a product. I only have ID of that product. I know title of the custom field. How can I get value of that custom field? Please help. PS: I know PHP well but I am new to Joomla/Virtuemart.
Mihir
  • 1,156
  • 3
  • 13
  • 22
3
votes
1 answer

php for each sorting by category joomla k2

Hi I have this code from joomla k2 template
primary ;?> $item): ?>
item=$item; echo…
andy
  • 177
  • 2
  • 12
2
votes
3 answers

Joomla K2 - Displaying an item's extra field data elsewhere on the site

i'm building a website for a house builder and each house plot (k2 item) has a few extra fields associated with it such as 'price' and 'availability'. i would like to display this extra field data elsewhere on the site perhaps in a table that lists…
David
  • 41
  • 1
  • 7
2
votes
1 answer

JModel error when getting article

I'm writing a Joomla 2.5.3 module. I'm trying to get an article from a JModel. JModel::addIncludePath(JPATH_SITE.'/components/com_content/models', 'ContentModel'); $model =& JModel::getInstance('Article', 'ContentModel', array('ignore_request' =>…
mneri
  • 2,127
  • 2
  • 23
  • 34
2
votes
1 answer

Joomla component : one view calling multiple models?

I want a view to call 2 different models for use. Controller.php class StatsController extends JController { function display() { if( !JRequest::getVar( 'view' ) ) { JRequest::setVar('view', 'stats' ); } …
2
votes
0 answers

Are there any Stackoverflow like sites for Joomla?

Are there any Stackoverflow like sites for Joomla? I know that there is a site for Drupal on the StackExchange network. I was hoping that someone might know of a similar site for Joomla.
TryHarder
  • 2,704
  • 8
  • 47
  • 65
2
votes
2 answers

How to install component and route plugin in one package?

I have created custom component and a route plugin for Joomla 1.5 to to provide SEO URLs for my component and also articles and categories which are not menu tied. Now I have to install my component and route plugin separately. Is there a way to…
Vojtech
  • 2,533
  • 9
  • 34
  • 65
2
votes
1 answer

how I delete a row in a table in Joomla?

I have a table id h_id t_id 1 3 1 2 3 2 3 3 3 4 4 2 5 4 3 id is the primary key. I have not created a JTable for this table. Now I want to delete rows by h_id. Are there any method like which I can use without writing a…
Sara
  • 14,098
  • 13
  • 34
  • 50
2
votes
1 answer

How do you add fields to com_content in Joomla! with a plugin and store the data in its own table?

I'm running Joomla 1.7 and I know that it has the ability to add custom form fields to components with a plugin. There is a sample plugin located at: /plugins/user/profile This plugin allows you to put custom form fields on the user profile front…
David Barratt
  • 546
  • 1
  • 6
  • 24
2
votes
2 answers

Custom Joomla Registration Form and Profile

I want to create a custom Joomla registration form and a profile to show the information saved. For this I followed the answer on this thread. I have cloned and changed the files of the user profile plugin. Now the problem is that the edited profile…
Aayush
  • 3,079
  • 10
  • 49
  • 71
2
votes
2 answers

Joomla 1.6 Component Tutorial

Aside from the HelloWorld Tutorial, are there any other tutorials/books available with regards to component development on Joomla 1.6 ? Although the HelloWorld guides the user through chapters/steps, it doesn't exactly explain what certain code or…
Kyle
  • 915
  • 8
  • 18
  • 34