Questions tagged [joomla2.5]

Joomla! is an open-source CMS written in PHP and powered by an MVC-oriented framework. Please note that version 2.5 is no longer a supported release and it's highly recommended to upgrade to the latest version. Joomla! questions about programming and administration are best asked on https://joomla.stackexchange.com

Joomla! 2.5

Joomla! is an open-source CMS written in PHP and powered by an MVC-oriented framework. Thousands of extensions are available and can be installed through the admin interface.

Version 2.5 has ended it's life on December 31st, 2014 and it's highly recommended to upgrade to the latest version.

Resources

Related tags

2676 questions
0
votes
2 answers

Getting the users password in an onUserAfterSave event via a plugin

Is it possible to get the users unencrypted password in an onUserAfterSave even in a plugin? If so how? I tried using $user->password_clear but that is blank.
user794846
  • 1,881
  • 5
  • 29
  • 72
0
votes
1 answer

How to add digit separating in joomla's virtuemart?

I'm really in need of digit separating for joomla's virtuemart 2. Use case: Using some currencies like Iranian Rials, prices for usual tablets are about 7000000 Rials, which is hard to realize the price at first look. My ideal is 7,000,000 Rials…
Ata Iravani
  • 2,146
  • 7
  • 29
  • 40
0
votes
0 answers

"Advanced Options" module fieldset in Joomla 2.5 and 3.x

In my module's xml file, I have a fieldset for ADVANCED OPTIONS like this:
In Joomla 2.5, the ADVANCED OPTIONS of my module correctly shows…
user1448031
  • 2,172
  • 11
  • 44
  • 89
0
votes
0 answers

Joomla! core design login dynamic login forms

I am facing pretty specific problem right now. I am redoing a forum so there are reply buttons even though the user is not logged in. I am using Kunena. When user who is not logged in clicks the button a Core Design login popup will pop up and after…
Vojtech
  • 643
  • 3
  • 16
  • 30
0
votes
1 answer

Modify Joomla signup to call another script on verification

Its been along time since iv done any joomla development work so a bit rusty here. I have a joomla site with a user registration page and I need to call another script or webservice after the user signs up. I want use the signup details to create a…
user794846
  • 1,881
  • 5
  • 29
  • 72
0
votes
1 answer

Making some parts of content responsive

I am making a joomla module and I want it to be responsive for different mobile devices. As a joomla module injects some contents in a specific part of the whole page, so other contents of the page may not be responsive unless the template is…
developer
  • 78
  • 1
  • 13
0
votes
1 answer

Virtuemart 2.0 email is not sending for the pending orders

I am using Joomla 2.5.6 and Virtuemart 2.0 in a project. I customized the function createInvoiceNumber($orderDetails) by adding a new condition inside function if($orderDetails['order_status'] == 'C') .That is only for the confirmed order,the…
Sino Thomas
  • 141
  • 1
  • 7
  • 22
0
votes
1 answer

custom input in Joomla 2.5 article

I'm new in stack overflow and Joomla. I am building a template and I want to add a custom input like color in Joomla 2.5 article from the admin side. but I could not find any suitable option for doing this. I tried modifying the default.xml for…
Bobby
  • 141
  • 11
0
votes
0 answers

Item not getting selected through javascript file

I have simple jquery file which slide news, but now some problem has occurred and it's not selecting element. while debugging it shos null value in triggers. Code for Php file
Shrad_k
  • 86
  • 2
  • 10
0
votes
1 answer

str_replace multiple strings

I want to use str_replace te replace some values in a variable and get a variable named $username with the value USERNAME. It works fine for one value but not for multiple values. This…
0
votes
1 answer

joomla 2.5 virtuemart php 5.2

i have a problem with joomla virtuemart. Fatal error: Class 'shopFunctionsF' not found in /home/eneskura/public_html/components/com_virtuemart/views/virtuemart/view.html.php on line 40 line 40 [line38] $vendor = $vendorModel->getVendor(); …
user2018768
0
votes
1 answer

How to block the invoice creating in virtuemart 2.0 in paypal payment plugin

I need to block the invoice creating code in Virtuemart 2.0 Paypal payment method plugin. How it possible ? please help me to do this.
Sino Thomas
  • 141
  • 1
  • 7
  • 22
0
votes
1 answer

Overriding CSS with .less in Joomla

I am trying to use .less to modify a Joomla Gantry template. The text I'm trying to change with the "aa" class has linked audio, so the whole text shows up in blue color, which I am trying to change to dark brown. Here what I'm working with in my…
0
votes
2 answers

Can a block of CSS code be made non-functioning with !important?

I am working in Joomla and the CSS that comes with a third-party has the following CSS code that is causing a conflict and I was told to have it removed: [class*="span"] { float: left; margin-left: 20px; min-height: 1px; } I don't…
Edward
  • 9,430
  • 19
  • 48
  • 71
0
votes
0 answers

Activiting joomla 2.5 cache for logged users

I have a problem with joomla 2.5 caching system. As you know, by default system logged-in users does not use cache but, I must make them use the cache too. I tried several things like deleting if ($user->get('guest') && $_SERVER['REQUEST_METHOD'] ==…