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
1
vote
2 answers

joomla 1.6 : how $app object print out the entire page contents

I was checking joomla 1.6 index.php and I found the following code at the last line echo $app; this prints the entire page contents. I just printed out the contents in this object using print_r() and I got the following details JSite Object ( …
John K
  • 353
  • 4
  • 18
1
vote
1 answer

Joomla 1.6 Auto Hyperlink Image to full Article

I'm trying to have the first image on an article automatically link to the full article (similar to how wordpress 3.x works). This should work on Frontpage as well as Blog layout. Basically I'm looking for a plugin like…
1
vote
0 answers

Adding a menu item to Joomla's tinymce editor

So I created a WordPress plugin, but my client also wants it for Joomla... I need to add an item to the 'Insert' menu list in Joomla's tinymce editor. How would this be possible? Can I make an installable plugin for this without having to manually…
1
vote
1 answer

How to use headjs with Joomla?

Trying to use HeadJS in Joomla. I added a code to my template - it grabs the javascript files in the head output, prepares a string to output them between head.js code, then removes all javascript files from joomla's head output tag. The problem is…
1
vote
1 answer

Virtuemart fails when ps_cart->add() returns false

I'm running into a weird little problem whilst modifying a VM module for someone. We've altered the ps_cart class functions add() and update() with following bit of code: However, we've noticed that when any of the functions validating the quantity…
DcD
  • 11
  • 1
1
vote
0 answers

Joomla4 : how to set parameters in an extension?

I have developed a Joomla3 extension and I try to run in in Joomla4.1 In my XML file:
yarek
  • 11,278
  • 30
  • 120
  • 219
1
vote
0 answers

joomla 1.5 multiple models, problem with default view

I'm developing a view that need to reuse a model, I'm following this documentation http://docs.joomla.org/Using_multiple_models_in_an_MVC_component. But that reference do the trick just (at least as far as I understand) when I use the parameter get…
raulricardo21
  • 2,499
  • 4
  • 20
  • 27
1
vote
3 answers

Is there a way to create a custom model/view for an existing component like com_content in Joomla?

Is there a way to create a custom model/view for an existing component? For instance, if you wanted to change the Query used in com_content to include data from other tables when looking at a Category, is it possible to create a new modal/view to…
David Barratt
  • 546
  • 1
  • 6
  • 24
1
vote
1 answer

Joomla 1.6 External PHP Interaction Issue

I am new to working with Joomla and I am adapting an external php class I wrote for v1.5. Without going into all the details, basically, I use a function to load the Joomla environment after which everything in Joomla is available to the class. This…
Dayo
  • 12,413
  • 5
  • 52
  • 67
1
vote
2 answers

Is there a way in Joomla to have public user profiles?

I installed Joomla 1.7 and I noticed that you can have user profiles with the user profile plugin. However, is there a way to publicly access a user's profile (without loging in)? For instance, I noticed that you can go…
David Barratt
  • 546
  • 1
  • 6
  • 24
1
vote
2 answers

How can I change this JomSocial PHP code to only display activity for logged in users?

JomSocial, by default, uses 3 files to display the "Index" page for its users: frontpage.index.php -> Contains an if/then to check for logged in users, loads frontpage.members.php if logged in, or frontpage.guest.php if not logged in. Then it…
D. Simpson
  • 1,882
  • 17
  • 32
1
vote
2 answers

How do you run an SQL query from inside a layout in a Joomla component

I am still learning to make a Joomla component, but I have run into a situation which I cannot find the answer to in any tutorial or book I have read so far. I have a Model (in models/weather.php) which has a method getData(). This method is called…
Peter
  • 1,713
  • 1
  • 11
  • 6
1
vote
1 answer

How to get an url to a menuitem from an article id in joomla 1.6?

I'm writing a module that has articles. I would like these article to end with the "read more" button. This button should redirect to a menuitem pointing to the full article if such a menuitem exists, or to the article (as in…
xaddict
  • 1,302
  • 3
  • 19
  • 38
1
vote
1 answer

How to remove left side panel on component page?

I am using Joomla 1.6.5 with default theme "Beez2 - Default". I have created a top menu item with type as external link which has link 'index.php?option=com_sample'. When i click on this menu item i can see the output of the component 'sample'. But…
Vinay
  • 73
  • 2
  • 7
1
vote
1 answer

Joomla: What is the proper way to use "content.prepare"?

I am trying to put a module inside another component. According to https://www.joomlashack.com/blog/joomla-how-to/module-position-component/ I can put in the PHP file in…
shenkwen
  • 3,536
  • 5
  • 45
  • 85