A theme is a "skin" that lets you change the layout and appearance of a Drupal site quickly and without programming. For questions about the Drupal theming system, use drupal-theming.
10
votes
3answers
731 views
How to get rid of Drupal CSS stylesheets?
I am trying to accomplish the following. I need to use Drupal 6 as a project requirement, but I want to use it with my own HTML and CSS stylesheets for each node/view/panel etc.
The problem is, ...
3
votes
1answer
9k views
Drupal 7: Modifying menu HTML output?
I am trying to modify HTML output in a Drupal 7 theme that I am creating.
Basically, instead of the < li >s containing just plain < a >s with text, I want to include some additional HTML inside ...
3
votes
5answers
4k views
custom page.tpl.php for a drupal view
How can I create a custom page.tpl.php for a specific view?
I'm not talking about styling the view itself, just the page where that view gets rendered.
Thank you.
@Keith Morgan - It's page.
3
votes
2answers
1k views
Drupal. Use AJAX to update view's content
I've created a view in Drupal that retrieves a list of nodes. The display of this view is a page and it works perfectly well. It does even allow me to filter its content by argument.
See the ...
2
votes
1answer
49 views
Drupal: How to display part of an author's profile in a node
I have been trying to do display a custom field I created in the manage fields section of user accounts for nodes in addition to the profile page. The problem I am having with this code is that it ...
2
votes
4answers
266 views
Is it better to start a Drupal theme from scratch or extend an existing one?
I am new to Drupal and am curious if it is better to start a theme from scratch or extend one that is already out there. Also, are there any resources out there that someone could point me towards? ...
2
votes
1answer
171 views
Drupal adaptive theme logo url links to outside site
I have drupal site that uses the adaptive theme. Now the link in the logo is directed to "/" (to root of my site) but I would like to change it so that it would dirent to outside site ...
2
votes
3answers
3k views
How Does Drupal 7 Render Out a Page?
How does Drupal 7 render out a page? What's its equivalent to an MVC's view system.
When it comes to the rendering out the final HTML page for a request, most PHP frameworks (MVC based) I've worked ...
2
votes
2answers
106 views
Converting WordPress themes to Drupal6?
i've seen that Drupal6 has a really poor set of themes compared to, for example, Wordpress ... do you know good resources/links for converting WP themes to D6?
Thanks in advance,
c.
2
votes
1answer
394 views
What is the correct way to change the active Drupal theme programmatically?
What is the correct way to change the active Drupal theme programmatically?
2
votes
4answers
864 views
How do I use a custom #theme function to a fieldset in a drupal module?
I have a module that builds a form that includes a fieldset. Instead of using the <legend> element to render the fieldset title, I want to place this content in a <div> element instead. ...
2
votes
1answer
431 views
Remove the red outline on form elements that fail validation in drupal
When a drupal form fails validation, it is redrawn with the elements that failed validation surrounded in a red border. Drupal does this by adding the error class to the input elements, and specifing ...
2
votes
2answers
823 views
Drupal theme code to work out if you are editing a node
Does anyone know the php code to check if you are in edit mode? I want to edit how my theme looks when in edit mode so need to work out if I am or not.
2
votes
1answer
72 views
Drupal: How do I have a module enabled for one theme, but not another?
I have installed the LogoTool module, but I only want it enabled in the custom theme used for the front end site, not for the Garland theme used in the administrative back end. How do I do that?
Best ...
2
votes
2answers
4k views
How to modify the drupal search templates?
I'm attempting to create my own templates for the search pages using drupal 6. When creating these template pages i usually use Drupal Template Suggests but for some reason when creating the files:
...
1
vote
2answers
36 views
Drupal Block display not showing on a module page
I have successfully created content types for certain pages which I have in Drupal. I have also successfully created menus for those content types, so when a user is on a certain type, for instance, ...
1
vote
2answers
38 views
Show all regions when returning content from menu callback url
made a simple thankyou page (e.g. /product/3/thankyou) based on a menu callback in a custom module. the content shows up fine in the normal page layout but i want the regions and blocks to show up and ...
1
vote
1answer
32 views
How do I locate and move content in my drupal theme
I am making design changes to a site for a client that was created with drupel. Looks like a drupal 7 site.
I have located the theme files. The page.tpl.php has an include of page-ajaz.tpl.php
...
1
vote
1answer
37 views
How does Drupal add module css files to the consolidated file when flushing my theme cache?
When I clear my theme registry Drupal runs off and builds out a nice consolidated css file, but it does this for different node/page types so that I get several instances of said file existing. I ...
1
vote
2answers
81 views
Drupal - Custom theme does not parse media module markup
I've got a problem with Media module for Drupal 7, it works great all over the site, except in a custom module I've created.
The field that is used by this module, uses the same text formatting as ...
1
vote
1answer
95 views
Theming with CiviCRM and Drupal, php variables, basics
I've installed CiviCRM with my drupal installation, and I am creating a custom theme. What is a good resource for utilizing CiviCRM elements in the theme?
I need to give/pull these things to/from ...
1
vote
1answer
42 views
Theming a form in Drupal which has to be a part of an Entity's Content
I've a form in my module (mymodule)...
function mymodule_form()
{
$form['mytext'] = array(
'#title' => 'Password',
'#type' => 'password',
'#size' => 10,
);
...
1
vote
2answers
83 views
$variables Vs. $vars in drupal
What is the difference between
function mythemes_preprocess_node(&$variables) { ... }
and
function mythemes_preprocess_node(&$vars) { ... }
in drupal 7.
and what is the difference ...
1
vote
0answers
19 views
How to add new css using exposed view
could some one help me how to add new css using views theme in drupal 6.0
1
vote
1answer
145 views
Way to replace field in views to image by hook instead of using template
Is there a way to replace the value in view of a field to image?
i.e: value = 101, so display <img src=/myfiles/101.gif> in hook / theme_() function instead of using a .tpl file?
1
vote
1answer
2k views
How do I create a page template?
So, I must be missing something.
I want to create a specific template for a Basic Page with Drupal 7. I've read about doing something like creating a file called page—mypagename.tpl.php, and putting ...
1
vote
3answers
455 views
assign drupal theme programmatically
I know that we can assign a theme named page-name.tpl.php to a page called /page/ with the use of the theme engine.
How can i assign a theme to a template programmatically in drupal ?
1
vote
1answer
1k views
drupal 7 custom content hook_theme output
I have a custom module created in Drupal 7 and I want it to display some HTML content. Here is how I have did.
But it is not working, what I do wrong?
<?php
/**
* Implements hook_block_info().
...
1
vote
1answer
1k views
Drupal 7: Specify header for a given page
I have a header section that's specified in html.tpl.php, but the header should be different depending on what page the user is on. Most of the pages are just a page content type, though I might add ...
1
vote
1answer
144 views
simple drupal 6 question, how to move Author and Date info at the bottom of the page
I'm trying to modify the content/article display detail and I'm not sure it that's done from the admin or from the xx.tpl.php file...(and if so which one)
I have something like this (in a custom ...
1
vote
3answers
134 views
Drupal theme files outside of theme folder
Is there a place where I can place override theme files other than a theme's folder? For example, if I wanted to override the appearance of a view's row in the same style for more than one theme ...
1
vote
3answers
231 views
Creating a new drupal theme
I know that the Zen starting theme is very popular but I find it harder to edit a theme made by someone else (even if it's as simple as Zen) that to create my own in static html. Is it ever a good ...
1
vote
1answer
434 views
Drupal: Extract teaser in full view
How can I split the teaser from the rest of the content in the node.tpl.php to wrap the teaser text in special markup?
1
vote
3answers
96 views
Drupal registered user page?
I have a drupal site that I am creating right now.
I have 3 roles, and these are:
Anonymous
Authenticated
Registered Users
On my "Registered Users" I wanted to have a different theme after they ...
1
vote
5answers
2k views
HTML Template to Drupal Theme
I have an HTML template. What are the steps to convert it into a Drupal 6 theme?
1
vote
3answers
189 views
Drupal 6: Theme Developer gives too common candidate name, nothing specific
I'm working on a restaurant directory site. I have restaurant details page that I need to implement gmap, slideshow, etc. So I need a specific page.tpl and Theme Developer gives the info as below
...
1
vote
1answer
674 views
How to Translate Template Strings in Drupal 6
I have some strings in my theme/template and I was hoping to translate them with t(), but they don't appear in /admin/build/translate/search. I could do it in PHP code and make my own function, but is ...
1
vote
1answer
214 views
How to add theme settings to Zen-based themes?
I'm trying to place my own theme settings into a drupal subtheme. i've used the forms API in theme-settings.php but they are not showing up in admin/build/themes/settings/$mytheme. my ...
1
vote
1answer
174 views
Loading users from an SQL query - the correct way
I have an SQL query that lists the uid of all users who have a certain role:
SELECT u.uid
FROM {users} as u, {users_roles} as ur
WHERE u.uid = ur.uid AND ur.rid = 10 ORDER BY u.uid DESC
I need to ...
0
votes
0answers
16 views
parsing the 'q' in drupal to get the current url [migrated]
So i am attempting to parse out the url so that i can get a specific page tpl to be used for a specific url. seems very simple enough. if the url is example.com/team then use page-team.tpl.php. ...
0
votes
1answer
20 views
How do I render a node returned by the Drupal search module? [closed]
I'm using Drupal 7 to build a fairly simple directory site. I'm trying to theme my search results page the same as a taxonomy page, but as you may know, the results arrive by a completely different ...
0
votes
0answers
13 views
intermittent failure to render completely and ultimate unable to connect - City_Magazine Theme
I have a site where I'm using City Magazine Theme from ThemeForest / ThemesMania and the theme is failing (intermittently) to render completely and sometimes fails totally to connect. Great looking ...
0
votes
2answers
48 views
Custom region does not show up in a Drupal Sub theme
I am attempting to create a custom region for my Drupal 7 sub theme. The process I am following is:
1) Specify sub region in .info file of subtheme like this:
regions['sub_region'] = Sub region
2) ...
0
votes
1answer
44 views
clean drupal theme for consumer website?
I am a drupal newbie and have been looking for drupal themes for my consumer focussed website.
Here is my gripe.
Most free drupal themes look like blog sites
and most premium drupal themes look like ...
0
votes
0answers
25 views
How to change size of “Front Featured Slideshow” in drupal theme “City Magazine”
I want to change the size of a 'slider' that is at the top of the drupal theme,
City Magazine. The slider is a block called Front Featured Slideshow. Specifically, it currently is 940 wide and 360 ...
0
votes
1answer
59 views
How to theme a Drupal 6 table to output array in rows and columns?
Iam using table themes.The below seen is my entire code for my ataempt at creating a table to show values in rows and columns. The code contains registration of my theme as well. The values come from ...
0
votes
0answers
80 views
How to add Hyperlinks in Drupal 6 themed table
I have created a table in my Drupal 6 setup by theming here is my page http://www.image-share.com/ijpg-1153-142.html and here is the code for that
function theme_freeway_dashboard($form) {
$rows ...
0
votes
1answer
81 views
Drupal display suite template in module
I am using this function to register a tpl file in a module.
/**
* Implementation of hook_theme().
*/
function frontpage_carousel_theme($existing) {
return array(
'ds_1col' => array(
...
0
votes
1answer
65 views
Display a Drupal page without the page template
Hello I am trying to generate a Drupal node which would be similar to a feed page generated by views module. I need to generate an xml feed, so I would not want to show the regular drupal template ...
0
votes
1answer
66 views
Drupal 7, how can you set a theme to a user?
In drupal 6 you could edit the user and it would give you the option to set the theme they use. This option does not appear to be available in Drupal 7. How else can one go about setting a theme on a ...