- Posts: 26
- Thank you received: 0
£
-
shirran
Inactive member - Topic Author
- Member
Less
More
1 year 4 months ago #50599
by shirran
Hi Milos, I upgraded my Homes template from 3 to 4 and everything went well apart from the read more button.
It shows as COM_CONTENT_READ_MORE_TITLE not as before only read more.
I made sure i loaded the file from the “languages” folder of Joomla
Is there anything I can do to rectify please
Trev
It shows as COM_CONTENT_READ_MORE_TITLE not as before only read more.
I made sure i loaded the file from the “languages” folder of Joomla
Is there anything I can do to rectify please
Trev
Please Log in to join the conversation.
-
milos
Support Staff - Moderator
Less
More
- Posts: 6742
- Thank you received: 715
-
shirran
Inactive member - Topic Author
- Member
Less
More
- Posts: 26
- Thank you received: 0
1 year 4 months ago #50604
by shirran
I seem to have other issues as seen in the pix, plus I can not change the $ to £
TPL_SPARKY_FRAMEWORK_CF_ADDITIONAL_DETAILS
TPL_SPARKY_FRAMEWORK_CF_FEATURES
TPL_SPARKY_FRAMEWORK_CF_AGENT
TPL_SPARKY_FRAMEWORK_CF_INQUIRY
TPL_SPARKY_FRAMEWORK_CF_INQUIRY_NAME
TPL_SPARKY_FRAMEWORK_CF_INQUIRY_EMAIL
TPL_SPARKY_FRAMEWORK_CF_INQUIRY_PHONE
TPL_SPARKY_FRAMEWORK_CF_INQUIRY_MESSAGE
I used the language file from hotstart then tried joomla3 file to no avail
TPL_SPARKY_FRAMEWORK_CF_ADDITIONAL_DETAILS
TPL_SPARKY_FRAMEWORK_CF_FEATURES
TPL_SPARKY_FRAMEWORK_CF_AGENT
TPL_SPARKY_FRAMEWORK_CF_INQUIRY
TPL_SPARKY_FRAMEWORK_CF_INQUIRY_NAME
TPL_SPARKY_FRAMEWORK_CF_INQUIRY_EMAIL
TPL_SPARKY_FRAMEWORK_CF_INQUIRY_PHONE
TPL_SPARKY_FRAMEWORK_CF_INQUIRY_MESSAGE
I used the language file from hotstart then tried joomla3 file to no avail
Please Log in to join the conversation.
-
milos
Support Staff - Moderator
Less
More
- Posts: 6742
- Thank you received: 715
1 year 4 months ago #50607
by milos
Hello,
Perhaps you have some missing or outdated template files. Please download file hot_homes4x.zip from our website and install it in your website. It will overwrite all template files but won’t change your website settings.
Regards,
Milos
Perhaps you have some missing or outdated template files. Please download file hot_homes4x.zip from our website and install it in your website. It will overwrite all template files but won’t change your website settings.
Regards,
Milos
Please Log in to join the conversation.
-
milos
Support Staff - Moderator
Less
More
- Posts: 6742
- Thank you received: 715
1 year 4 months ago #50608
by milos
To change the currency symbol in Joomla 4 and move currency right from the number, edit files:
/templates/sparky_framework/html/com_content/featured/default_item.php
/templates/sparky_framework/html/com_content/category/blog_item.php
For example, to change from $ to EUR, change this
to this:
Also, in this file: /templates/sparky_framework/html/com_content/article/default.php change this:
to this:
/templates/sparky_framework/html/com_content/featured/default_item.php
/templates/sparky_framework/html/com_content/category/blog_item.php
For example, to change from $ to EUR, change this
Code:
if( $field->label == "Price") {
echo '<div class="price">' . '$' . number_format($field->value) . '</div>';
}
to this:
Code:
if( $field->label == "Price") {
echo '<div class="price">' . number_format($field->value) . ' EUR' . '</div>';
}
Also, in this file: /templates/sparky_framework/html/com_content/article/default.php change this:
Code:
if( $field->name == "price" && $field->value) {
echo '<div class="price">' . '$' . number_format($field->value) . '</div>';
}
to this:
Code:
if( $field->name == "price" && $field->value) {
echo '<div class="price">' . number_format($field->value) . ' EUR' . '</div>';
}
Please Log in to join the conversation.
-
shirran
Inactive member - Topic Author
- Member
Less
More
- Posts: 26
- Thank you received: 0
Time to create page: 0.227 seconds