Tagged Questions
0
votes
1answer
64 views
Set a generic layout for all modules in Zend framework 2
I'm working on a ZF2 Project, and I have some modules in my directories :
/module/module1
/module/module2
/module/module3
/module/module4
[...]
But, in each module I also have a specific layout, ...
1
vote
1answer
69 views
Yii renders only one page without layout
I have a weird problem. I copied my website into production environment (from windows to ubuntu). I correct few big/small letter issues and app started to work fine. Until I entered one page that ...
1
vote
1answer
64 views
Zend Framwork crashed when newrelic was enabled
I created a new ZF1 application (1.12.0) with zf tool like this:
zf create project test
I then enabled the layout as follow:
zf enable layout
And when I enabled newrelic I got this error:
PHP ...
0
votes
1answer
48 views
Lithium PHP: Open view without layout
I am using the PHP framework Lithium (aka li3). I want to be able to open just a view (ie without a layout) in a jquery dialog box. Ideally, I would like this to be done with a small modification to ...
1
vote
1answer
27 views
Laraval @layout issue
I am trying to do a simple template set up with a header and footer layout that will be accessed by each page
kinda of like:
<html>
<body>
@layout('header')
<stuff here>
...
-3
votes
3answers
59 views
Same layout different content html [closed]
Quite new to creating websites so not sure on everything, but i've been looking for a while on how to minimize the amount of html pages are in one website. As it just taking too much space. Every page ...
0
votes
2answers
352 views
CodeIgniter create a layout/template library
Before I begin I have to say that I have recently started learning CodeIgniter, so I'm sorry if I repeat this subject once again.
In procedural php I would do something like this
// the header.php
...
0
votes
2answers
38 views
Magento - Add sub blocks
Magento - Add custom block
I am trying insert child block with many of options, but anyway it shows only non-readable symbols. What is it? Someone has seen something like that?
I don't understand ...
0
votes
0answers
86 views
Cart page template override - magento
I have overridden the cart.phtml and default.phtml file in my custom module. I kept my files inside default/template/standingorders/checkout/cart.phtml and ...
0
votes
1answer
50 views
customize the shopping cart page without affecting the original
I am developing a new custom module in magento. I need to customize the shopping cart page without affecting the original cart.phtml. My module name is Stallioni. I have placed the cart.phtml inside ...
0
votes
2answers
235 views
CakePHP set variable in view for use in layout
I've got a CRUD application, and in my views there are links to actions from various controllers e.g.
<?php echo $this->Html->link(__('List Docs'), array('controller' => 'docs', 'action' ...
0
votes
2answers
66 views
CakePHP (2.x) modify layout based on conditions
Is it possible, in CakePHP v 2.x to modify the default layout (default.ctp) based on a condition - such as if a user is logged in.
Let's assume I have a menu:
"Home" "Menu Item1" "Menu Item 2"
and ...
0
votes
0answers
54 views
Problems with CSS; when targeting a single id, it cuts off other parts of my webpage
this might seem like a stupid question, but I have tried almost everything to make this work. I tried to find an example, like what they do in Wikipedia's element mw-headline, but that's not found in ...
0
votes
0answers
21 views
how to align differents tables extracts from database in a row
Im trying to align some differents objects in my page, but something happens and then improper. The web is the next, i dont want to give advertising is just to give you and idea:
...
1
vote
2answers
32 views
Wordpress extra spaces breaks layout
I am creating and developing a custom Wordpress theme and I am struggling with one issue, which is making me crazy and I can't find any fix and can't figure out, what I am doing wrong...
There is ...
0
votes
0answers
18 views
Place a table in a different column, using a while and extracting from mysql
I think the best for this case is to expose you all an image to explain better:
...
0
votes
2answers
90 views
Zend Framework: Multiple Modules in layout
How can I have multiple actions in my layout from different controllers/modules?
I tried this:
<div id="login"><?php $x=new User_LoginController; $x->LoginAction() ?>
<div ...
0
votes
2answers
34 views
Creating three divs with each containing 1/3 of the content
I am trying to create a mock up of a three-column Pinterest layout that scans a directory of images and puts 1/3 of the images in each of the columns.
But I can't figure out how to get the correct ...
0
votes
1answer
141 views
Automatically Update Bootstrap Layout With PHP
I'm trying to generate a layout with php and jQuery which lists certain profiles and organizes them in a certain way.
Specifically, I have an array of program titles and I'd like to list all of the ...
-1
votes
1answer
28 views
PHP_HTML layout the result of a query
I want to create a product page, I would like the products of my page to be represented this way: http://www.mvphiphop.com/Brand-Shoes-c92/ or something similar but something really simple with no css ...
0
votes
3answers
29 views
Using folders to select pages
I'm not really sure what this is called so i'm just looking for any information on it really.
I've seen a few websites that are using this sort of url www.domain.com/folder/1/2/3/1234/ but the ...
0
votes
0answers
131 views
Magento move stock alert
I'm attempting to move one of two alert links that appear on the product view in Magento. I want to leave the "Signup for price alerts" link in place, but move the "Signup for stock alerts" link under ...
0
votes
2answers
480 views
Displaying Content with laravel template without blade
I have this controller method
class Account_Controller extends Base_Controller
{
public $layout = 'layouts.default';
public function action_index($a,$b)
{
$data['a'] = $a;
...
0
votes
2answers
47 views
Make a custom layout article view
I am making a site for a car company. Whenever I add an article there are two options: Blog and Category. I would like something like a category with a image preview and instead of the date created to ...
-1
votes
1answer
75 views
How to display captcha in layout in android [closed]
which is used to display captcha in layout .
i have php coding for captcha it will access from web .
below given code how to use:
?php
require_once('recaptchalib.php');
$publickey = ...
0
votes
1answer
78 views
Using a controller plugin to extend the existing layout in zend framework
I have a layout file as follows:
<?php echo $this->doctype(); ?>
<html>
<head>
<?php echo $this->headTitle(); ?>
<?php echo $this->headLink(); ...
0
votes
1answer
65 views
How to extend templates in zend framework
I have a web site in which all pages shares a common header and a footer. There are some controller actions use this layout as the template
There is also another template which is a tabbed one. ...
1
vote
1answer
57 views
Magento: How do I pass data to a child layout block?
in product/view.phtml, I have the call getChildHtml('my_block') ?>, which outputs a phtml file I wrote. I want that file to display the product image, but when I call $this->getProduct(), I get null! ...
0
votes
1answer
95 views
Page Layout Designer CMS
I am currently working on a content management system to be used by future clients sites. The project is currently in its infancy, and whilst thinking through some of the workings I have come across ...
0
votes
1answer
384 views
ZF2 Module based Layouts
I am trying to learn Zend Framework 2 and currently facing an issue.
I have created a module named "Admin" and have defined layout for Admin Module. Now problem is Application module is also loading ...
1
vote
1answer
107 views
Magento Block Instantiation Within Block Classes
I just purchased Alan Storm's pdf book No Frills Magento layout and in the first chapter he talks about binding child block instantiation to a given blocks creation specifically within the ...
0
votes
2answers
733 views
How to render a mail template with layout in ZF2?
In the ZF1 I used the following code to render a mail body:
// View erstellen
$view = new Zend_View();
// Layout erstellen
$layout = new Zend_Layout();
// HelperPath muss hier nochmals übergeben ...
1
vote
2answers
980 views
joomla/k2 php template overrides
Really need some help after many hours of banging head against a brick wall!
Basically I have a Joomla News page made in the K2 component. The page would have the top story, the next two, then the ...
0
votes
1answer
63 views
Stop rendering layout inside the controller actions
I am using the layout method to render my template in CI framework, I add some modification to the code on the link that stop rendering the layout if the request is AJAX
if ...
1
vote
1answer
198 views
Passing variables to views in Laravel4
I am very newbie about all of these PHP Frameworks. I was once created my own framework by using phpbb's template functions, language support and sessions. I turned them into a Model-View framework. I ...
0
votes
2answers
119 views
Dynamic data in header in a symfony project
I have a Symfony 1.4 project. As you know the Template layout is defined independently, in the apps' templates' folder and then it is universally applied to all other templates. My layout is very ...
1
vote
1answer
448 views
Ideal Location to Set default layout for Zend Framework 2 Controller?
I want to set a different layout for a new Controller, please provide your suggestion on an ideal location to set it across the controller? Right now I am using $this->layout() in each and ever ...
0
votes
0answers
90 views
No loading layout on symfony 1.4
I'm working on Ubuntu 12.04.
I pulled a project from a git repository, when write http://test.localhost/ layout doesn't load, but with other pages there is no problem.
I checked configurations ...
0
votes
1answer
38 views
blue box glitch, oscommerce [closed]
The problem is here:
http://netadvokaten.se/index.php
All of a sudden this blue box has appeared out of nowhere!
I am running the latest version of OsCommerce and after hours of googeling it seams ...
0
votes
2answers
53 views
Including layout files - Best approach
When developping applications I include phtml files to build the interface and keep the logic away from the design.
I have made some tests with 3 different approaches to include those files and came ...
0
votes
1answer
144 views
How it's possible to disable rendering layout in case of xmlhttprequest in phalcon framework?
How can be disabled layout rendering?
For a moment i can detect that request is made via jQuery this way:
public function initialize()
{
if (!$this->request->isAjax()) {
// ...
0
votes
1answer
1k views
Magento - Add custom block using custom module on Shopping Cart page
I have created a custom module and am trying to include a block just after Shopping cart table and before Totals box. But I am unable to get it in that exact place. I can get my block to appear in ...
0
votes
3answers
60 views
CSS: margin issues
I'm trying to output multiple elements in a single class, but i'm having trouble separating the top of page from the actual elements.
I've tried separating each image with div.element ...
0
votes
1answer
94 views
Pass Data to Zend View But Don't Display, Only Need Raw HTML
I am writing a utility method that makes an API call to get data, then populating a view file w/ that data:
// decode API response
$response = json_decode($sa->response);
// pass data to view
...
0
votes
1answer
118 views
Symfony Pass variable to template on every refresh
I know there's a few threads on here about passing variables to the template using partials or slots. My question is, how do you define that variable so that no matter what page you are on, the ...
0
votes
1answer
69 views
Wordpress - How can I edit the header of a template?
I am new in the using Wordpress. I downloaded this theme and because my title of the website is too long, I need to change the header of this theme.
So I went into
...
1
vote
2answers
293 views
How to dynamically make text fit squarely into an area
I am designing a website with a similar layout qualities to http://Obvious.com (will transfer to Medium). I have noticed a few great things about their layout and there is one aspect that I do not ...
0
votes
2answers
50 views
How to configure the page to search for external layout code?
I'm looking for ways to have my pages search for the page layout from an external template page. Please see the below example.
<head>
<title></title>
</head>
<body>
...
1
vote
1answer
109 views
How to add the cart summary to contact us page in Magento?
I have made a custom template and want to add the cart summary to the left bar of certain pages, like for example the contact us page.
Is there anyone who can point me in the right direction ...
0
votes
0answers
274 views
How to control Magento block rendering order (not position)
On our Magento store we have "featured" pages that are basically product collections where a certain "featured" attribute has been set. I use CMS pages for this along with a custom module with custom ...




