Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

Theme for home.php

Asked Modified Viewed 2,943 times
6
69economy
6
  • Newbie, joined since
  • Contributed 7 posts on the community forums.
  • Started 2 threads in the forums
  • Started this discussions
asked
Newbie

Hello,
For several days I try to adjust zvhled statement on the news http://69economy.tk/home.php I tried to edit the look, whether in an external file so my theme file directly Infusion. The site http://69economy.tk/infusions/downloads/xxxxxxxxx changes are reflected on the //home.php but nothing changes can someone please advise me where I can find that look?
69economy attached the following file:
crnq.png [No information available / 150 Downloads]
0 replies

5 posts

F
Falk
F
Falk 131
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 11 questions
answered
Super Admin

I am really not 100% sure on what you are trying to do, if you mean that you want data from download there, look at examples in the panels connected to the download system.
0 replies
— 1 month later —
6
69economy
6
  • Newbie, joined since
  • Contributed 7 posts on the community forums.
  • Started 2 threads in the forums
  • Started this discussions
answered
Newbie

I'm concerned about changing the appearance highlighted. Things in the right column (news downloads, etc.) I can not be reprogrammed, can never find a function which controls the appearance of the column. I was reading some posts but I can not find a function that controls the home.php page, the page as inludes / news / news.php a more detailed page, I managed to recode but somehow I can not figure out how to adjust that column on page home.php

Merged on Jan 29 2017 at 15:35:23:
I'd like to customize - just change the font size, put there some graphics / pictures to make it fit into the overall
Edited by 69economy on 29-01-2017 16:35,
0 replies
F
Falk
F
Falk 131
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 11 questions
answered
Super Admin

You can clear home and only use includes, exactly like in v7.
Please pay attention to panels that you have selected to display on home.php, these will automatically populate that page.
If you want them in another order you may manually include them in your home.php control file instead.

A manual home.php control file can be something like ,

<?php
require_once "maincore.php";
require_once THEMES."templates/header.php";
add_to_head("<link rel='stylesheet' href='your_home_styles.css'>");
opentable("place content and update styles for wanted variations");
echo "content";
closetable();

require_once THEMES."templates/footer.php";
0 replies
6
69economy
6
  • Newbie, joined since
  • Contributed 7 posts on the community forums.
  • Started 2 threads in the forums
  • Started this discussions
answered
Newbie

ok I found function who´s displaing the right panel on home.php site

   function display_home($info) {
      foreach($info as $db_id => $content) {
         $colwidth = $content['colwidth'];
         opentable($content['blockTitle']);
         if ($colwidth) {
            $classes = "col-xs-".$colwidth." col-sm-".$colwidth." col-md-".$colwidth." col-lg-".$colwidth." content";
            echo "<div class='row'>";
            foreach($content['data'] as $data) {
               echo "<div class='".$classes." clearfix'>";
               echo "<h3><a href='".$data['url']."'>".$data['title']."</a></h3>";
               echo "<div class='small m-b-10'>".$data['meta']."</div>";
               echo "<div class='overflow-hide'>".fusion_first_words($data['content'], 100)."</div>";
               echo "</div>";
            }
            echo "</div>";
         } else {
            echo $content['norecord'];
         }
         closetable();
      }

What i must add when i needs to display image on left of news (right) panel.
Edited by N/A on 05-02-2017 22:00,
0 replies
F
Falk
F
Falk 131
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 11 questions
answered
Super Admin

That looks like Theme native function, if you need to use custom content with your own styles if it is the panel you need to change.
See other panel examples, make a new one for your intent.
Maybe I don´t get what you are trying to do, show some example or something to go on.
0 replies

Labels

None yet

Statistics

  • Views 0 views
  • Posts 5 posts
  • Votes 0 votes
  • Topic users 2 members

2 participants

F
F
Falk 131
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 11 questions
6
6
  • Newbie, joined since
  • Contributed 7 posts on the community forums.
  • Started 2 threads in the forums
  • Started this discussions

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet