Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 31/12/2023 New Year SALE

    We are glad to announce New Year SALE. 25% discount for all our extensions. Use NY24 coupon code. Hurry up the discount is valid till 7 January.

  • 21/11/2023 BLACK FRIDAY 23 is coming

    BIG SALE, 35% discount for all our extensions. Use BF23 coupon code. Hurry up the discount is valid till 27 November.


2Checkout.com, Inc. is an authorized retailer of goods and services provided by ARI Soft. 2CheckOut




Follow us on twitter



Welcome, Guest
Please Login or Register.    Lost Password?

Ari Quiz and Quizzes results print.
(1 viewing) (1) Guest
component
Go to bottomPage: 1
TOPIC: Ari Quiz and Quizzes results print.
#64960
Ari Quiz and Quizzes results print. 4 Years, 11 Months ago Karma: 0
When a user has answered a Quiz the questions, the user's answer and which option that is correct are displayed. When the user prints the result, the user's response and the correct option for the question disappeared.

The same happens in the administration module under "Quizzes Result"

Since I need to document the result to the Government on paper, I have a problem. The quiz must be printed with the user's answer and the correct alternative from the administration module.

My question is how can this be solved?
The administrator has disabled public write access.
 
#64971
Re:Ari Quiz and Quizzes results print. 4 Years, 11 Months ago Karma: 747
Hello,

Do you the latest version of the extension (3.9.19)? It is available in "Member Area" on our site.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#64974
Re:Ari Quiz and Quizzes results print. 4 Years, 11 Months ago Karma: 0
Hi.

Thank's for the answare.

I have the 3.9.19 version.

Regards Rolf
The administrator has disabled public write access.
 
#64978
Re:Ari Quiz and Quizzes results print. 4 Years, 11 Months ago Karma: 747
Could you provide a temporary access to your J! backend by email so we can investigate the problem?

Regards,
ARI Soft
The administrator has disabled public write access.
 
#64982
Re:Ari Quiz and Quizzes results print. 4 Years, 11 Months ago Karma: 0
IU have send you a mail
The administrator has disabled public write access.
 
#64984
Re:Ari Quiz and Quizzes results print. 4 Years, 11 Months ago Karma: 747
The problem occurs because default Joomla! template for admin part is override print styles. It contains the following CSS rule:

Code:


@media print
* { background: transparent !important; }



This problem can be fixed if modify <joomla_directory>/administrator/components/com_ariquiz/assets/css/styles.css file. Replace the following code:

Code:


.aq-quiz-result #dtQuestions .icon-ban-circle {
background: transparent url(../../../../../components/com_ariquiz/assets/images/publish_x.png) center center no-repeat;
}

.aq-quiz-result #dtQuestions .icon-ok {
background: transparent url(../../../../../components/com_ariquiz/assets/images/tick.png) center center no-repeat !important;
}



with the following one:

Code:


.aq-quiz-result #dtQuestions .icon-ban-circle {
background: transparent url(../../../../../components/com_ariquiz/assets/images/publish_x.png) center center no-repeat !important;
}

.aq-quiz-result #dtQuestions .icon-ok {
background: transparent url(../../../../../components/com_ariquiz/assets/images/tick.png) center center no-repeat !important;
}



Regards,
ARI Soft
The administrator has disabled public write access.
 
Go to topPage: 1