Keyword

Extra field Radio Button

More
7 years 4 months ago #159662 by Roman
Extra field Radio Button was created by Roman
Hi, I have radio button extra field.

In ftontend I have co :
<?php
									if ((int)$this->item->extraFields->Cena->value>0){
										echo number_format( $this->item->extraFields->Cena->value, 0, ',', ' ') . ' '.$this->item->extraFields->Mena->value;
										if($this->item->extraFields->dohodou == 1){echo " + Dohodou";}}else{
										echo jText::_('CENA_DOHODOU');
									}
								?>

But when i change value tu 0 , i see " + Dohodou" alll the time.

where is a problem ?

thanks

Please Log in or Create an account to join the conversation.

  • Krikor Boghossian
  • Krikor Boghossian's Avatar
  • Offline
  • Platinum Member
More
7 years 4 months ago #159682 by Krikor Boghossian
Replied by Krikor Boghossian on topic Extra field Radio Button
if ((int)$this->item->extraFields->Cena->value>0)
{
	echo number_format( $this->item->extraFields->Cena->value, 0, ',', ' ') . ' '.$this->item->extraFields->Mena->value;
	
	if($this->item->extraFields->dohodou == 1)
	{
		echo " + Dohodou";
	}
}
else
{
	echo jText::_('CENA_DOHODOU');
}

Is the value 0 or '0' (string)?

JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.

More
7 years 4 months ago #159731 by Roman
Replied by Roman on topic Extra field Radio Button
String . you can see : imgur.com/a/4T3G4

Please Log in or Create an account to join the conversation.

  • Krikor Boghossian
  • Krikor Boghossian's Avatar
  • Offline
  • Platinum Member
More
7 years 4 months ago #159758 by Krikor Boghossian
Replied by Krikor Boghossian on topic Extra field Radio Button
What does this =>
var_dump($this->item->extraFields->Cena->value);
produce?

JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.


Powered by Kunena Forum