Jump to content

Андрей

Members
  • Posts

    34
  • Joined

  • Last visited

Everything posted by Андрей

  1. happened now displayed displays the full article does not reduce the number of characters What are the options?
  2. does not work Error: Call to a member function first() on a non-object (line 50 of C:\OpenServer\domains\localhost\site\templates\head.inc) This error message was shown because you are logged in as a Superuser. Error has been logged. error here $summary = substr($child->text, 0, 100); if(($pos = strrpos($summary, ".")) !== false) { $summary = substr($summary, 0, $pos); }
  3. <?php // make our own summary from the beginning of the body copy // grab the first 255 characters $summary = substr($story->body, 0, 255); // truncate it to the last period if possible if(($pos = strrpos($summary, ".")) !== false) { $summary = substr($summary, 0, $pos); } where to insert the code Ryan, below is my code that I use to display the <div id="main"><?php echo $page->main; ?> <?php foreach($pages->get("/sections/")->children as $child) : ?> <div class="one_third first column_container"> <div class="portfolio-image-holder"> <div class="portfolio-image"> <a href='<?php echo $child->url; ?>'> <img src='<?php echo $child->images->first()->url; ?>'> </a> </div> </div> <?php echo "<h1><a href='{$child->url}'>{$child->title}</a></h1>"; echo "<p>{$child->text}</p>"; // displaying text in the field ?> </div> <?php endforeach; ?> </div>
  4. the entire article is 300 characters in a certain field, you must first display 100 characters and a link to more details when clicked, to fully show the full article as to limit the number of characters In hac habitasse platea dictumst. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae. more
  5. Извините за мою формулировку снимаю шляпу Hats off Sorry for my formulation Хорошо учитель, это вопрос? Good teacher, it is a question? подскажите please Prompt please
  6. СПАСИБО ВСЕМОГУЩИЙ KONGONDO THANK THE ALMIGHTY KONGONDO ещё одна просьба как вставить <a href изображение как ссылка на ("/tv/") страницу Another asked how to insert <a href image as a reference to ('/ tv /') page <?php echo "<img src='". $pages->get("/tv/")->images->first()->url ."'>" ?> вроде того like that <a href='{$skyscraper->url}'>{$skyscraper->title}</a>
  7. у страниц (ребёнок) будет свое First () изображение и будет вставлено при смене параметра ('/tv/') Спасибо очень помогли как мне так и другим at pages (child) will have its First () image will be inserted when you change a parameter ('/ TV /') Thank you big been very helpful to me and to other
  8. <div class="one_third"> <?php echo "<img src='". $pages->get(1006)->images->first()->url ."'>"; echo "<img src='". $pages->get("/tv/")->images->first()->url ."'>"?> </div> все работает all works ideally <div class="one_third"> <?php $myimages = $pages->get("/tv/")->images; foreach ($myimages as $myimage) { echo "<img src='{$myimage->url}'>"; } ?> </div> все работает all works ideally Спасибо и последний вопрос каждое изображение имеет название test.jpg где нужно вставить Thanks and final question each image has a name where you want to insert test.jpg <div class="one_third"> <?php echo "<img src='". $pages->get(1006)->images->first()->url ."'>"; echo "<img src='". $pages->get("/tv/")->images->first()->url ."'>"?> </div>
  9. <div class="one_third"> <?php echo "<img src='". $pages->get(1006)->images->first()->url ."'>"; echo "<img src='". $pages->get("/home/tv/")->images->first()->url ."'>"?> </div Error: Call to a member function first() on a non-object (line 43 of C:\OpenServer\domains\localhost\pw\site\templates\head.inc) This error message was shown because you are logged in as a Superuser. Error has been logged. Работает но другие поля отключаются Works but the other fields are disabled я понял что лучше использовать страницы у которых свои поля и создавать новые вариант: 1.создать четыре поля с изображением и ссылка и вставить в свой<div><?php echo $page->one_third; ?> 2.создать одно поле с таблицей и вставить четыре изображения в каждый <tr> I realized that it is better to use the pages that their fields and create new option option: 1. create four fields with an image and link and paste into your <div> <?php echo $page->one_third; ?> 2. Establish one field to the< table>and four<tr> and insert the four images in each <tr>
  10. Спасибо что имеете терпение я только учусь пытаюсь понять Thank you that you have the patience, I just try to learn to understand
  11. ребенок страница (tv) родитель страница (home) нужно здесь вставить изображение ребенок страница (tv) Child page (tv) parent (home) page here to insert a picture the child page (tv) <img src="<?=$page->get(1006)->tv->images->first()->url ?>"> <?echo "<img src='{$child->tv->images->first()->url}'>";?> такой способ не выводит данные this method does not take data
  12. <img src="/pw/site/assets/files/1006/tv_sat1.jpg" width="150" height="100" alt="" /> простым способом вставил указал в HEAD.inc но это не правильно я так думаю, может я не прав это же CMS должна быть логика вывода полей в любом месте,просто я не могу правильно указать путь,потому что не знаю базовый PHP The easiest way to put in HEAD.inc but this is not correct, I think it's CMS and MVC and HMVC be the logical conclusion of the field at any place, the right way, I do not know the true challenge of the field. The correct code. Thank you <? echo "<img src='". $pages->get(1006)->pictures->first()->url ."'>";?> <img src="<?=$page->get/tv(1006)->images->first()->url ?>"> <img src="<?=$page->tv->get(1006)->images->first()->url ?>"> <img src="<?=$page->get(1006)->tv->images->first()->url ?>"> такой способ не выводит данные this method does not take data
  13. я не знаю PHP кроме функции <?php include("./includes/menu.php"); ?> и функции DOM JQEERI тоже темный лес, но хочется понять I do not know PHP except for the function <?php include("./includes/menu.php"); ?> function and DOM JQEERI too dark forest,but I want to understand
  14. как вставить изображение на главную(родительскую) страницу с другой страницы(детской) можно использовать или только вызов происходит там где принадлежит поле how to insert a picture on the main (parent) page from another page (child) can be used alone or where the call originates belongs to the field test for example (child) page <img src="<?=$page->images->first()->url ?>"> if($page->image) echo "<img src='{$page->test->image->url}'>"; Нужно вставить четыре изображения на главную(родитель)страницу изображения являются ссылками для(ребенок) изображение должно указывать на (ребенок)и являться ссылка как это сделать Need to insert four images on the main (parent) page images are to (a child) the image should point to (the child)and be a link how to do it
  15. how to make a backup copy of the site may there are modules similar options joomla (Akeeba Backup)
  16. решил проблему has solved a problem <ul id='topnav'> <li><a id='topnav_home' href='<?php echo $config->urls->root; ?>'>Directory of United States Skyscrapers</a></li> <li><a id='topnav_cities' href='<?php echo $config->urls->root; ?>cities/'>Cities</a></li> <li><a id='topnav_architects' href='<?php echo $config->urls->root; ?>architects/'>Architects</a></li> <li><a id='topnav_about' href='<?php echo $config->urls->root; ?>about/'>About</a></li> </ul>
  17. файл с расширение ****.php обычно <?php?> обозначается красным цветом "text/javascript" синим <a href= зеленым файл с расширение****.inc не разделяет на цвета структуру кода трудно во множественном коде искать то ,что нужно бывает происходят ошибки, большой беды в этом нет file with expansion****.php <?php?> is marked by red colour "text/javascript" blue <a href= green file with expansion****.inc does not divide into colour structure code it is difficult in plural code to search that it is necessary can be occur errors, big trouble in this no
  18. Подскажите как нужно прописывать ссылки <ul> <li><a href="http://test.ru/"><span>Основная</span></a></li> <li><a href="http://test.ru/tv/"><span>Телевидение</span></a></li> </ul> http://www.test.com/ index обычное обращение к главной странице не работает http://www.test.com/tv/ tv Prompt as it is necessary to prescribe references <ul> <li><a href="http://test.ru/"><span>Основная</span></a></li> <li><a href="http://test.ru/tv/"><span>Телевидение</span></a></li> </ul> http://www.test.com/ index usual address to main to page does not work friendly URL http://www.test.com/tv/ tv
  19. head.inc and foot.inc неудобно редактор не показывает разметку во время редактирования. head.inc and foot.inc uncomfortably editor does not show sectoring during editing
  20. Как правильно использовать назначение шаблонов, какой должна быть структура кода,привязка и взаимодействие с новыми модулями, чтобы не возникло проблем с путями назначений , какой метод разработки использовать? head.inc _out.php As it is correct to use the purpose a pattern, what must be a structure of the code,привязка and interaction with new module to did not appear the problems with fetter of the purposes , what method of the development to use? head.inc _out.php
  21. Ваш ответ поздно увидел,Спасибо!!! сам во всем разобрался CMS Your answer has late seen,Thank you!!! itself in all understood CMS <!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title><?php echo $page->get("headline|title"); ?></title> <meta name="description" content="<?php echo $page->summary; ?>" /> <meta name="keywords" content="<?php echo $page->keywords; ?>" /> <meta name="robots" content="all" /> <link rel="icon" href="/favicon.ico" type="image/x-icon" /> <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" /> <link rel="stylesheet" type="text/css" href="<?php echo $config->urls->templates ?>styles/style.css?v=3"/>
  22. где данные как указывать название и описание страниц where given what indicate name and description of the pages
×
×
  • Create New...