-
AuthorPosts
-
cbc575 Friend
cbc575
- Join date:
- April 2015
- Posts:
- 208
- Downloads:
- 0
- Uploads:
- 29
- Thanks:
- 53
- Thanked:
- 11 times in 1 posts
August 28, 2015 at 1:11 am #680305Hi there,
How do I place the “Miscellaneous Information” to the top, followed by the contact info and then the links. Please take a look of the attached picture with the current/original condition.
CURRENT
– Contact
– Links
– MiscellaneousNEEDED
– Miscellaneous
– Contact
– LinksWhile we are on this topic, where do I change the “Miscellaneous” text for something else…?
Site is not live yet, but you can see this at “Contact us” form in your demo.
Thank you.
jooservices Friendjooservices
- Join date:
- October 2014
- Posts:
- 8556
- Downloads:
- 0
- Uploads:
- 130
- Thanked:
- 1245 times in 1121 posts
August 28, 2015 at 2:06 am #680359Hi there
Please check com_content layout file.
If you can’t work on it please provide your site backend & CPanel access. I’ll help you work on it.Thank you,
Viet Vujooservices Friendjooservices
- Join date:
- October 2014
- Posts:
- 8556
- Downloads:
- 0
- Uploads:
- 130
- Thanked:
- 1245 times in 1121 posts
August 28, 2015 at 2:06 am #746845Hi there
Please check com_content layout file.
If you can’t work on it please provide your site backend & CPanel access. I’ll help you work on it.Thank you,
Viet Vucbc575 Friendcbc575
- Join date:
- April 2015
- Posts:
- 208
- Downloads:
- 0
- Uploads:
- 29
- Thanks:
- 53
- Thanked:
- 11 times in 1 posts
August 28, 2015 at 3:38 am #680373<em>@jooservices 489448 wrote:</em><blockquote>Hi there
Please check com_content layout file.
If you can’t work on it please provide your site backend & CPanel access. I’ll help you work on it.Thank you,
Viet Vu</blockquote>Could you please be more specific of what is needed to be done.
Site is in local host, but as I said, this could be easily spotted on your quick-start template.
Thank you.
cbc575 Friendcbc575
- Join date:
- April 2015
- Posts:
- 208
- Downloads:
- 0
- Uploads:
- 29
- Thanks:
- 53
- Thanked:
- 11 times in 1 posts
August 28, 2015 at 3:38 am #746859<em>@jooservices 489448 wrote:</em><blockquote>Hi there
Please check com_content layout file.
If you can’t work on it please provide your site backend & CPanel access. I’ll help you work on it.Thank you,
Viet Vu</blockquote>Could you please be more specific of what is needed to be done.
Site is in local host, but as I said, this could be easily spotted on your quick-start template.
Thank you.
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
August 28, 2015 at 3:39 am #680374@cbc575: You can find and change it from templates/ja_techzone/html/com_contact/contact/default.php file
find and see script
<!-- Contact other information -->
<div class="box-contact contact-miscinfo">
<h3><?php echo JText::_('COM_CONTACT_OTHER_INFORMATION');?></h3>
<dl class="dl-horizontal">
<dt>
<span class="<?php echo $this->params->get('marker_class'); ?>">
<?php echo $this->params->get('marker_misc'); ?>
</span>
</dt>
<dd>
<span class="contact-misc">
<?php echo $this->contact->misc; ?>
</span>
</dd>
</dl>
</div>
<!-- End other information -->
and move it like as my screenshot
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
August 28, 2015 at 3:39 am #746860@cbc575: You can find and change it from templates/ja_techzone/html/com_contact/contact/default.php file
find and see script
<!-- Contact other information -->
<div class="box-contact contact-miscinfo">
<h3><?php echo JText::_('COM_CONTACT_OTHER_INFORMATION');?></h3>
<dl class="dl-horizontal">
<dt>
<span class="<?php echo $this->params->get('marker_class'); ?>">
<?php echo $this->params->get('marker_misc'); ?>
</span>
</dt>
<dd>
<span class="contact-misc">
<?php echo $this->contact->misc; ?>
</span>
</dd>
</dl>
</div>
<!-- End other information -->
and move it like as my screenshot
cbc575 Friendcbc575
- Join date:
- April 2015
- Posts:
- 208
- Downloads:
- 0
- Uploads:
- 29
- Thanks:
- 53
- Thanked:
- 11 times in 1 posts
August 28, 2015 at 3:40 am #680375Where is the com_content file, what is the root…?
DO YOU GET PAY BY MESSAGE YOU SEND…? Because every time you make a comment, you forget to mention very obvious info.
cbc575 Friendcbc575
- Join date:
- April 2015
- Posts:
- 208
- Downloads:
- 0
- Uploads:
- 29
- Thanks:
- 53
- Thanked:
- 11 times in 1 posts
August 28, 2015 at 3:40 am #746861Where is the com_content file, what is the root…?
DO YOU GET PAY BY MESSAGE YOU SEND…? Because every time you make a comment, you forget to mention very obvious info.
cbc575 Friendcbc575
- Join date:
- April 2015
- Posts:
- 208
- Downloads:
- 0
- Uploads:
- 29
- Thanks:
- 53
- Thanked:
- 11 times in 1 posts
cbc575 Friendcbc575
- Join date:
- April 2015
- Posts:
- 208
- Downloads:
- 0
- Uploads:
- 29
- Thanks:
- 53
- Thanked:
- 11 times in 1 posts
jooservices Friendjooservices
- Join date:
- October 2014
- Posts:
- 8556
- Downloads:
- 0
- Uploads:
- 130
- Thanked:
- 1245 times in 1121 posts
August 28, 2015 at 3:45 am #680377Hi there
It’s a part of Joomla! override. You can check it in Joomla! Document site ( none JA issues )https://docs.joomla.org/How_to_override_the_component_mvc_from_the_Joomla!_core
https://docs.joomla.org/How_to_override_the_output_from_the_Joomla!_core
https://docs.joomla.org/Understanding_Output_Overrides
You are asking about component com_contact and view contact.
By follow above and combine with Joomla! Document you can easily locate override location
/templates/<template>/html/com_contact/default.php . That’s path answered by Ninja .Use search string to just simply check that layout file and modify it as your need.
It should be simple just follow logic
Thank you,
Viet Vujooservices Friendjooservices
- Join date:
- October 2014
- Posts:
- 8556
- Downloads:
- 0
- Uploads:
- 130
- Thanked:
- 1245 times in 1121 posts
August 28, 2015 at 3:45 am #746863Hi there
It’s a part of Joomla! override. You can check it in Joomla! Document site ( none JA issues )https://docs.joomla.org/How_to_override_the_component_mvc_from_the_Joomla!_core
https://docs.joomla.org/How_to_override_the_output_from_the_Joomla!_core
https://docs.joomla.org/Understanding_Output_Overrides
You are asking about component com_contact and view contact.
By follow above and combine with Joomla! Document you can easily locate override location
/templates/<template>/html/com_contact/default.php . That’s path answered by Ninja .Use search string to just simply check that layout file and modify it as your need.
It should be simple just follow logic
Thank you,
Viet Vucbc575 Friendcbc575
- Join date:
- April 2015
- Posts:
- 208
- Downloads:
- 0
- Uploads:
- 29
- Thanks:
- 53
- Thanked:
- 11 times in 1 posts
-
AuthorPosts
This topic contains 21 replies, has 3 voices, and was last updated by cbc575 9 years, 2 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum