Data Hiding - Question | JoomShaper
SP Page Builder 6 is Here! Learn More →

Data Hiding

MA

Moamer Ahmed

Extension 2 months ago

hi I use splms and I want to remove prices from the program

0
16 Answers
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 2 months ago #199729

OR

You can hide prices using Custom CSS

.splms-price-box, .splms-sale-price, .price_info
.splms-item-price {display: none; visibility: hidden;}
0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 2 months ago #199726

Hi Moamer,

you can set all courses as Free, then it will not a have a price.

And word "Free" you can rename/override using empty word.

COM_SPLMS_FREE 
COM_SPLMS_PRICE 
0
MA
Moamer Ahmed
Accepted Answer
2 months ago #199730

thanks And hide free tag , Buy Now Translate Details for arabic المزيد RTL

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 2 months ago #199732

Translate phrases from file:

language\en-GB\en-GB.com_splms.ini

using Joomla Language Override

More info >> https://www.joomshaper.com/documentation/joomla-extensions/sp-lms/translation-of-sp-lms

0
MA
Moamer Ahmed
Accepted Answer
2 months ago #199735

Thank you for your interest. How do I hide Buy Now? I don't want to pay through the website, but rather offer only. And align the courses to the right.

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 2 months ago #199739
#addtocart, .view-splms-course.course-details #addtocart {
  display: none; visibility: hidden; }

this will hide button "Buy Now"

but remember it will hide on front-end , not in HTML code (!) for that you need code customization.

0
MA
Moamer Ahmed
Accepted Answer
2 months ago #199740

I want to make the alignment right as shown in the picture.

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 2 months ago #199755

And how you have now?

Share direct link.

BTW

Have you enabled Arabic as default language in Joomla.

0
MA
Moamer Ahmed
Accepted Answer
2 months ago #199843

Arabic as default language

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 2 months ago #199858

Ok, thx, I see it like this (screenshot below) what is wrong? More details please.

0
MA
Moamer Ahmed
Accepted Answer
2 months ago #199907

I want to align to the right. As you can see, the icons start from the left. When you browse it on the computer, you will notice the difference.

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 2 months ago #199935

Only icon.... you should write sooner ;p


Try that:

.ar-aa.rtl .fa-angle-right::before {content: "\f105";}
.ar-aa.rtl .fa.fa-angle-right {float: right;padding-left: 5px;}

I changed icon direction and location. If you need to change only icon location, use only 2nd line of CSS.

0
MA
Moamer Ahmed
Accepted Answer
2 months ago #199989

In SP LMS, when adding courses categories, they start from the left when displayed on the site.When viewing on site

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 2 months ago #200020

Share direct link to it.

0
MA
Moamer Ahmed
Accepted Answer
2 months ago #200022

Rectangles with branches start from left to right. Make them start from the right.

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 2 months ago #200023
@media (min-width: 768px) {
.ar-aa.rtl  .splms .splms-col-sm-3, 
.ar-aa.rtl  .splms .splms-col-sm-2 {float: right;}
}
0