Drupal custom templates improvements

me321
94 Posts
me321 posted this 25 September 2015

In the latest update support was added for custom templates in Drupal. That's an amazingly powerful feature and it's gotten me all exited :)

I think however that a few improvements are needed.

  1. The templates like "post" make very little sense. Ususally Drupal ships with "basic page" and "article" content types (entity bundles). I think it would make more sense if the Themler template names correspond with those.
  2. When creating custom templates, you have to assign them to a URL. That too, makes little sense. It's a good feature to have, but basically a template should be attached to a content type (entity bundle). In Drupal it's very common to have your specific content types for each site, and they would pretty much always require a uniform layout. So if you have a content type called "fruit" it would make sense to be able to create a custom template in Themler, and assign it to all content of the type "fruit", not a URL.
  3. Currently it's only possible to configure how the templates are used if the theme is exported to include the themler module. That isn't desirable, for production sites one would not want the Themler module to be installed.

Furthermore, the problem with working with a URL is that if even if you specify a url logic so that all fruit content has http://.../fruit/[some-title], and configure the template to be show on fruit/*, it would only work on that clean URL but not on it's native url, node/xxx.

In the latest update support was added for custom templates in Drupal. That's an amazingly powerful feature and it's gotten me all exited :) I think however that a few improvements are needed. 1. The templates like "post" make very little sense. Ususally Drupal ships with "basic page" and "article" content types (entity bundles). I think it would make more sense if the Themler template names correspond with those. 2. When creating custom templates, you have to assign them to a URL. That too, makes little sense. It's a good feature to have, but basically a template should be attached to a content type (entity bundle). In Drupal it's very common to have your specific content types for each site, and they would pretty much always require a uniform layout. So if you have a content type called "fruit" it would make sense to be able to create a custom template in Themler, and assign it to all content of the type "fruit", not a URL. 3. Currently it's only possible to configure how the templates are used if the theme is exported to include the themler module. That isn't desirable, for production sites one would not want the Themler module to be installed. Furthermore, the problem with working with a URL is that if even if you specify a url logic so that all fruit content has http://.../fruit/[some-title], and configure the template to be show on fruit/*, it would only work on that clean URL but not on it's native url, node/xxx.
Vote to pay developers attention to this features or issue.
33 Comments
Order By: Standard | Newest
me321
94 Posts
me321 posted this 25 September 2015

Correction: I just found out that specifying a wildcard (/*) doesn't work.

I think at this stage the custom template feature for Drupal isn't really usable yet, when it is it will be amazing. Hoping this can be announced soon.

Correction: I just found out that specifying a wildcard (/*) doesn't work. I think at this stage the custom template feature for Drupal isn't really usable yet, when it is it will be amazing. Hoping this can be announced soon.

Last edited 25 September 2015 by me321

me321
94 Posts
me321 posted this 25 September 2015

I just found out that custom content types can't be themed in Themler at all. That's quite a disappointment because it means Themler is still not usable with Drupal.

Does anyone know of a work around? Is there a way to, for instance, use the "default" template for all other content types?
I've searched for hours and no solution yet that works with Themler.

I just found out that custom content types can't be themed in Themler at all. That's quite a disappointment because it means Themler is still not usable with Drupal. Does anyone know of a work around? Is there a way to, for instance, use the "default" template for all other content types? I've searched for hours and no solution yet that works with Themler.
me321
94 Posts
me321 posted this 26 September 2015

OK, I had another go at it and I've found a way to work around this issue and use templates created in Themler to be applied to your customer content types. It involves manually editing the exported files and this would have to be done at each export. Not ideal, but at least it will make Themler usable with Drupal in real life situations.

Basically this workflow creates a bit of what Artisteer did, a single template for all custom content types, although you could in theory have different ones for certain custom content types.

Here are the steps, in two parts:
PART 1

  1. In Themler, style the "Post" template to your liking and so that it's universally usable by all your custom content types

  2. Publish and export/ download your Drupal Theme

  3. Open a proper text editor such as Sublime 3 or Notepad++

  4. In the export directory, find the \themes[YOURTHEMENAME]\7.x\theme-methods.php file and open it with your editor

  5. Find the line that contains the function [YOURTHEMENAME]_preprocess_page. In my case this was around line 29 but it may be different in your case.

  6. Now we need to insert this bit of code inside that function:

    if (isset($vars['node'])) {
    $vars['theme_hook_suggestion'] = 'page__'.$vars['node']->type; //
    }

so that as in my case, your function looks something like this (Don't copy the lines below, instead copy the lines above into your function yourself to make it just like the example below:

function YOURTHEMENAME_preprocess_page(&$variables) {
    $node = isset($variables['node']) ? $variables['node'] : null;
    YOURTHEMENAME_set_template($variables, $node, 'page');


    $variables['tabs'] = menu_primary_local_tasks();
    $variables['tabs2'] = menu_secondary_local_tasks();


    $variables['search_box'] = NULL;
    if (function_exists('search_box_form_submit')) {
        $variables['search_box'] = drupal_get_form('search_form');
    }
    if (isset($vars['node'])) {
        $vars['theme_hook_suggestion'] = 'page__'.$vars['node']->type; //
    }
}

Save your file and upload it to your server, replacing the same file in your theme's remote directory.

PART 2

  1. Go to the following directory inside your Themler theme download: \themes[YOURTHEME]\templates\page

  2. The "Post" template you designed in Themler actually results in a .tpl file called page--node--article--XX.tpl.php (in my case XX was the number 6, but this might be different in your case.) Copy this file.

  3. In the Drupal backend, check the machine name of your content type that you want to be using the design you created in Themler for the "Post" template. You can do this by navigating to /admin/structure/types and clicking "edit" for the content type in question and inspecting the machine name.

  4. Now rename the file you copied in step 2 to match: page--node--[YOURCONTENTTYPEMACHINENAME].tpl.php

  5. Upload your new tpl file to the same directory on your server.

  6. Clear the caches in your Drupal site

  7. Repeat these steps (of Part 2) for each custom content type you have in your Drupal site.

  8. Dance!

Note that these steps need to probably be repeated each time your export your theme so you may want to really spend some good amount of consideration and time designing the layout of your "Post" template so that you don't have to alter it often. Minimize the use of any shared elements with other templates so it doesn't inherit changes you make to other templates as much. That way you can just keep a copy of your custom .tpl files and drop those in each new theme export and keep the code snippet from part 1 handy and paste it into your theme-methods.php each time you download a new version of your theme.

In the meantime, I'd like to suggest to the Themler team to make the "post" template apply to all content types, or introduce a new template type to act as a universal template for content types. The current "default" template applies only to pages that are not content/ nodes. So all content in the form of custom created content types basically are un-styled and have no layout and are outside of the Themler user's control. Once again, there's custom content types in pretty much every Drupal site. Modules (think: drupal commerce) also add content types and off course popular Drupal distributions (Commerce Kickstart, Spark, etc) all ship with their own content types, and right now Themler is basically incompatible with all of them.

OK, I had another go at it and I've found a way to work around this issue and use templates created in Themler to be applied to your customer content types. It involves manually editing the exported files and this would have to be done at each export. Not ideal, but at least it will make Themler usable with Drupal in real life situations. Basically this workflow creates a bit of what Artisteer did, a single template for all custom content types, although you could in theory have different ones for certain custom content types. Here are the steps, in two parts: PART 1 1. In Themler, style the "Post" template to your liking and so that it's universally usable by all your custom content types 2. Publish and export/ download your Drupal Theme 3. Open a proper text editor such as Sublime 3 or Notepad++ 4. In the export directory, find the \themes\[YOURTHEMENAME]\7.x\theme-methods.php file and open it with your editor 5. Find the line that contains the function [YOURTHEMENAME]_preprocess_page. In my case this was around line 29 but it may be different in your case. 6. Now we need to insert this bit of code inside that function: if (isset($vars['node'])) { $vars['theme_hook_suggestion'] = 'page__'.$vars['node']->type; // } so that as in my case, your function looks something like this (**Don't copy the lines below, instead copy the lines above into your function yourself to make it just like the example below**: function YOURTHEMENAME_preprocess_page(&$variables) { $node = isset($variables['node']) ? $variables['node'] : null; YOURTHEMENAME_set_template($variables, $node, 'page'); $variables['tabs'] = menu_primary_local_tasks(); $variables['tabs2'] = menu_secondary_local_tasks(); $variables['search_box'] = NULL; if (function_exists('search_box_form_submit')) { $variables['search_box'] = drupal_get_form('search_form'); } if (isset($vars['node'])) { $vars['theme_hook_suggestion'] = 'page__'.$vars['node']->type; // } } Save your file and upload it to your server, replacing the same file in your theme's remote directory. PART 2 1. Go to the following directory inside your Themler theme download: \themes\[YOURTHEME]\templates\page 2. The "Post" template you designed in Themler actually results in a .tpl file called page--node--article--**XX**.tpl.php (in my case XX was the number 6, but this might be different in your case.) Copy this file. 3. In the Drupal backend, check the machine name of your content type that you want to be using the design you created in Themler for the "Post" template. You can do this by navigating to /admin/structure/types and clicking "edit" for the content type in question and inspecting the machine name. 4. Now rename the file you copied in step 2 to match: page--node--[YOURCONTENTTYPEMACHINENAME].tpl.php 5. Upload your new tpl file to the same directory on your server. 6. Clear the caches in your Drupal site 7. Repeat these steps (of Part 2) for each custom content type you have in your Drupal site. 8. Dance! Note that these steps need to probably be repeated each time your export your theme so you may want to really spend some good amount of consideration and time designing the layout of your "Post" template so that you don't have to alter it often. Minimize the use of any shared elements with other templates so it doesn't inherit changes you make to other templates as much. That way you can just keep a copy of your custom .tpl files and drop those in each new theme export and keep the code snippet from part 1 handy and paste it into your theme-methods.php each time you download a new version of your theme. In the meantime, I'd like to suggest to the Themler team to make the "post" template apply to all content types, or introduce a new template type to act as a universal template for content types. The current "default" template applies only to pages that are not content/ nodes. So all content in the form of custom created content types basically are un-styled and have no layout and are outside of the Themler user's control. Once again, there's custom content types in pretty much every Drupal site. Modules (think: drupal commerce) also add content types and off course popular Drupal distributions (Commerce Kickstart, Spark, etc) all ship with their own content types, and right now Themler is basically incompatible with all of them.
Stagger Lee
1818 Posts
Stagger Lee posted this 26 September 2015

I opened a topic about it. Right now I dont have much use of custom templates except theming and styling simple static Pages, and Homepage.
Maybe I dont get all this Drupal logic, will open space for this mistake. Still have more than 2000 WordPress code snippets in my database, and just few Drupal snippets.

Even styling of static Pages and connecting to aliases is difficult because it is Posts list, not Post view.

As I see it allowing us to name filenames of custom templates would solve much of this problems. What do you think about it ?

Specially allowing us to rename filenames of Page, Post, Blog. This logic with OR with those templates is practically useless in real life. What use do I have of chosing Blog, Home, Page, Post template and making several of them if I could use just one. I can than style default (every of them) one, same thing.

https://answers.themler.com/questions/28316/drupal-custom-templates-enter-file-name

I opened a topic about it. Right now I dont have much use of custom templates except theming and styling simple static Pages, and Homepage. Maybe I dont get all this Drupal logic, will open space for this mistake. Still have more than 2000 WordPress code snippets in my database, and just few Drupal snippets. Even styling of static Pages and connecting to aliases is difficult because it is Posts list, not Post view. As I see it allowing us to name filenames of custom templates would solve much of this problems. What do you think about it ? Specially allowing us to rename filenames of Page, Post, Blog. This logic with OR with those templates is practically useless in real life. What use do I have of chosing Blog, Home, Page, Post template and making several of them if I could use just one. I can than style default (every of them) one, same thing. https://answers.themler.com/questions/28316/drupal-custom-templates-enter-file-name
Stagger Lee
1818 Posts
Stagger Lee posted this 26 September 2015

And I am asking myself what about theming Views 3 templates ?

Views module is used on most of the Drupal websites. Now it will be shiped in Drupal 8 core, it says a lot how much it is used for generating layouts.

As I saw it in tutorials there is a way to override Views templates with custom named templates in theme folder. But then again, we need possibility to name filenames of our templates, and Themler to be aware it is styling Views layout.

Think company would need to get rid of extern Drupal developer and give job to one of its own. Maybe it means make Drupal for Themler from scratch, but what to do. (if it is problem with code, but it is GPL code anyway, nobody can pull them to the court if they use it)

And I am asking myself what about theming Views 3 templates ? Views module is used on most of the Drupal websites. Now it will be shiped in Drupal 8 core, it says a lot how much it is used for generating layouts. As I saw it in tutorials there is a way to override Views templates with custom named templates in theme folder. But then again, we need possibility to name filenames of our templates, and Themler to be aware it is styling Views layout. Think company would need to get rid of extern Drupal developer and give job to one of its own. Maybe it means make Drupal for Themler from scratch, but what to do. (if it is problem with code, but it is GPL code anyway, nobody can pull them to the court if they use it)
me321
94 Posts
me321 posted this 26 September 2015

@Stagger Lee

Yeah I agree, having a multiple choice of template for Homepage, default, 404, etc is not really meaningful, I think its better practice to limit the number of tpl files in your theme, and its also more practical to just keep and update 1.

Changing the filenames, or the ability to create templates for custom content types is indeed a must.
Perhaps add options to:

  • Allow to select if a custom template is for styling nodes or non-node
    pages, and assigning a content type or provide the machine name of
    the entity bundle if it's meant for nodes. It matters to Drupal's
    theme engine

  • Add a defaut template for nodes

  • Allow wild cards in the URL for setting a custom template

  • Rename "Post" to "Article" in Themler UI

  • Add a defaut template for nodes

    On your remark on the use of tpl with Views, there should be plenty of documentation on that on D.O and elsewhere.

@Stagger Lee Yeah I agree, having a multiple choice of template for Homepage, default, 404, etc is not really meaningful, I think its better practice to limit the number of tpl files in your theme, and its also more practical to just keep and update 1. Changing the filenames, or the ability to create templates for custom content types is indeed a must. Perhaps add options to: - Allow to select if a custom template is for styling nodes or non-node pages, and assigning a content type or provide the machine name of the entity bundle if it's meant for nodes. It matters to Drupal's theme engine - Add a defaut template for nodes - Allow wild cards in the URL for setting a custom template - Rename "Post" to "Article" in Themler UI - Add a defaut template for nodes On your remark on the use of tpl with Views, there should be plenty of documentation on that on D.O and elsewhere.
Stagger Lee
1818 Posts
Stagger Lee posted this 26 September 2015

What is a point of custom Blog templates ? We can use only one and not second one. Means we can style default one and not need custom Blog templates at all.
And not many people activate this Blog module at all. While almost all install and activate Views module.
And Blog is just Content Type, yet we cannot make Content type custom templates.

I did not get you last sentence ?
I know there are tutorials, but medling manually with Themler theme files is out of question for me, for Views. Matter of principle.

How do you display list od latest Articles from one custom Content Type without Views 3 ?
It is one of the retarded things with Drupal, optional module for something that should be in the core. All my websites are done with Views, and now I have no clue how to list custom Content Type nodes without Views.

What is a point of custom Blog templates ? We can use only one and not second one. Means we can style default one and not need custom Blog templates at all. And not many people activate this Blog module at all. While almost all install and activate Views module. And Blog is just Content Type, yet we cannot make Content type custom templates. I did not get you last sentence ? I know there are tutorials, but medling manually with Themler theme files is out of question for me, for Views. Matter of principle. How do you display list od latest Articles from one custom Content Type without Views 3 ? It is one of the retarded things with Drupal, optional module for something that should be in the core. All my websites are done with Views, and now I have no clue how to list custom Content Type nodes without Views.
Stagger Lee
1818 Posts
Stagger Lee posted this 26 September 2015

There should really be some intern mitting for Themles employees to decide future of Drupal Themler addon.

Blog will be removed from Drupal 8, because almost nobody use it.
Views will be in Drupal 8 core, because most Drupal sites use it.

Current Drupal usage statistics:

  • Sites using Drupal = 1,135,493
  • Sites using Views module = 892,368 (downloaded 7,409,362 times).
  • Sites using Drupal 7 = 997,558

Common, wake up.

There should really be some intern mitting for Themles employees to decide future of Drupal Themler addon. Blog will be removed from Drupal 8, because almost nobody use it. Views will be in Drupal 8 core, because most Drupal sites use it. Current Drupal usage statistics: - Sites using Drupal = **1,135,493** - Sites using Views module = **892,368** (downloaded 7,409,362 times). - Sites using Drupal 7 = **997,558** Common, wake up.
Support Team
Support Team posted this 28 September 2015

Hi,

I've discussed this topic with Drupal export developer.

The templates like "post" make very little sense. Ususally Drupal ships with "basic page" and "article" content types (entity bundles). I think it would make more sense if the Themler template names correspond with those.

The names of templates are the same for all CMSs. Currently we do not have plans to re-name them for the specific CMSs.
But I've added your suggestion to our wish list.

When creating custom templates, you have to assign them to a URL. That too, makes little sense. It's a good feature to have, but basically a template should be attached to a content type (entity bundle). In Drupal it's very common to have your specific content types for each site, and they would pretty much always require a uniform layout. So if you have a content type called "fruit" it would make sense to be able to create a custom template in Themler, and assign it to all content of the type "fruit", not a URL.

Ok. Custom naming of Custom templates makes sense.
I've assigned a task to Drupal export developer to implement this feature.

But most probably the fruit/* will still not work. To assign more than one content type to the custom template you will need to duplicate this template.
Currently we do not see other options. But we'll investigate this question.

Currently it's only possible to configure how the templates are used if the theme is exported to include the themler module. That isn't desirable, for production sites one would not want the Themler module to be installed.

I see what you mean. Our developers will fix this issue in the future updates.

Thank you,
Olivia

Hi, I've discussed this topic with Drupal export developer. > The templates like "post" make very little sense. Ususally Drupal ships with "basic page" and "article" content types (entity bundles). I think it would make more sense if the Themler template names correspond with those. The names of templates are the same for all CMSs. Currently we do not have plans to re-name them for the specific CMSs. But I've added your suggestion to our wish list. > When creating custom templates, you have to assign them to a URL. That too, makes little sense. It's a good feature to have, but basically a template should be attached to a content type (entity bundle). In Drupal it's very common to have your specific content types for each site, and they would pretty much always require a uniform layout. So if you have a content type called "fruit" it would make sense to be able to create a custom template in Themler, and assign it to all content of the type "fruit", not a URL. Ok. Custom naming of Custom templates makes sense. I've assigned a task to Drupal export developer to implement this feature. But most probably the <i>fruit/*</i> will still not work. To assign more than one content type to the custom template you will need to duplicate this template. Currently we do not see other options. But we'll investigate this question. > Currently it's only possible to configure how the templates are used if the theme is exported to include the themler module. That isn't desirable, for production sites one would not want the Themler module to be installed. I see what you mean. Our developers will fix this issue in the future updates. Thank you, Olivia
Stagger Lee
1818 Posts
Stagger Lee posted this 28 September 2015

Thanks for info.

Dont focus much on naming of templates if it takes time. We can switch our minds around it and adapt to the "Post", "Page".

Thanks for info. Dont focus much on naming of templates if it takes time. We can switch our minds around it and adapt to the "Post", "Page".
me321
94 Posts
me321 posted this 28 September 2015

@Olivia,

Thanks very much! Looking forward to the changes. Keep up the good work, Themler rules! :)

@Olivia, Thanks very much! Looking forward to the changes. Keep up the good work, Themler rules! :)
Support Team
Support Team posted this 19 October 2015

Hi guys,

I have some news.
We've added an option to specify the name of the template of "Custom Template" type in the same way as you can do in WP theme:

drupal-content-types.png

where my_content_type is a machine name of your custom content type. In the same way you can specify taxonomy term:
page-node-taxonomy-term-4.tpl.php

Currently this feature is on testing stage. It's planned for the next major Themler update.

If you have any further suggestions regarding this issue please let us know.

Thank you,
Olivia

Hi guys, I have some news. We've added an option to specify the name of the template of "Custom Template" type in the same way as you can do in WP theme: !drupal-content-types.png! where `my_content_type` is a machine name of your custom content type. In the same way you can specify taxonomy term: `page-node-taxonomy-term-4.tpl.php` Currently this feature is on testing stage. **It's planned for the next major Themler update.** If you have any further suggestions regarding this issue please let us know. Thank you, Olivia
Stagger Lee
1818 Posts
Stagger Lee posted this 19 October 2015

It means relatively soon. Thank you.
Tell us just, you will make so that Drupal core is aware those templates are in subfolders ?

For all template overrides by file name Drupal core is looking in the root folder of the theme. I think so anyway.

It means relatively soon. Thank you. Tell us just, you will make so that Drupal core is aware those templates are in subfolders ? For all template overrides by file name Drupal core is looking in the root folder of the theme. I think so anyway.
Support Team
Support Team posted this 19 October 2015

Hi,

All custom templates are located inside subfolder /templates because there too many files (for both Drupal 6 and Drupal 7 versions). We have not faced any issues with overrides. But let's wait for Themler update and "field trials" :-)

Thank you,
Olivia

Hi, All custom templates are located inside subfolder `/templates` because there too many files (for both Drupal 6 and Drupal 7 versions). We have not faced any issues with overrides. But let's wait for Themler update and "field trials" :-) Thank you, Olivia
sonicthoughts
20 Posts
sonicthoughts posted this 28 October 2015

Hi guys,

I have some news.
We've added an option to specify the name of the template of "Custom Template" type in the same way as you can do in WP theme:

where my_content_type is a machine name of your custom content type. In the same way you can specify taxonomy term:
page-node-taxonomy-term-4.tpl.php

Currently this feature is on testing stage. It's planned for the next major Themler update.

If you have any further suggestions regarding this issue please let us know.

Thank you,
Olivia

so to be clear - themeler will generate a tpl file for the content type and we can edit as needed. one question - if we edit, will the changes in themler overwrite?

> Hi guys, > > I have some news. > We've added an option to specify the name of the template of "Custom Template" type in the same way as you can do in WP theme: > > ![](http://attachments.answers.billiondigital.com/747/6747/drupal-content-types.png) > > where `my_content_type` is a machine name of your custom content type. In the same way you can specify taxonomy term: > `page-node-taxonomy-term-4.tpl.php` > > Currently this feature is on testing stage. **It's planned for the next major Themler update.** > > If you have any further suggestions regarding this issue please let us know. > > Thank you, > Olivia so to be clear - themeler will generate a tpl file for the content type and we can edit as needed. one question - if we edit, will the changes in themler overwrite?
Support Team
Support Team posted this 29 October 2015

Hi,

For example you have "fruits" content type.
You create custom template with name page-node-fruits.tpl.php. This template will be used for all contents of the "fruits" content type.
These templates are alternative to Default template used for custom content types by default.

If you edit this tpl manually and then save theme it Themler the custom changes will be overridden. Just like with any theme file. This is a regular Themler template that can be edited in Themler (like Page, Post, Blog, etc).

Thank you,
Olivia

Hi, For example you have "fruits" content type. You create custom template with name `page-node-fruits.tpl.php`. This template will be used for all contents of the "fruits" content type. These templates are alternative to Default template used for custom content types by default. If you edit this tpl manually and then save theme it Themler the custom changes will be overridden. Just like with any theme file. This is a regular Themler template that can be edited in Themler (like Page, Post, Blog, etc). Thank you, Olivia
me321
94 Posts
me321 posted this 30 October 2015

Sorry for being absent from this thread for a while. It sounds like a great approach.
I've noticed my themes being updated without release notes so I'm wondering if parts of this functionality is already implemented?

I just noticed that I can create custom templates and name them according to the url I want to use them on. That works brilliantly and I don't have to use the Themler module either. That is really awesome!

I haven't tried this for entity bundles and taxonomy term pages (which is also a great idea) but will do soon.

Sorry for being absent from this thread for a while. It sounds like a great approach. I've noticed my themes being updated without release notes so I'm wondering if parts of this functionality is already implemented? I just noticed that I can create custom templates and name them according to the url I want to use them on. That works brilliantly and I don't have to use the Themler module either. That is really awesome! I haven't tried this for entity bundles and taxonomy term pages (which is also a great idea) but will do soon.
Support Team
Support Team posted this 30 October 2015

Hi,

I've noticed my themes being updated without release notes so I'm wondering if parts of this functionality is already implemented?

No, this feature is planned for MAJOR update. A few last updates were MINOR.

I just noticed that I can create custom templates and name them according to the url I want to use them on. That works brilliantly and I don't have to use the Themler module either. That is really awesome!

Yes, we fixed this issue and uploaded a fix as hot-fix.

Thank you,
Olivia

Hi, > I've noticed my themes being updated without release notes so I'm wondering if parts of this functionality is already implemented? No, this feature is planned for MAJOR update. A few last updates were MINOR. > I just noticed that I can create custom templates and name them according to the url I want to use them on. That works brilliantly and I don't have to use the Themler module either. That is really awesome! Yes, we fixed this issue and uploaded a fix as hot-fix. Thank you, Olivia

Last edited 01 November 2015 by Support Team

me321
94 Posts
me321 posted this 01 November 2015

Great, looking forward to that major one. So far still congratulations on a really great product and very promising development work.

Great, looking forward to that major one. So far still congratulations on a really great product and very promising development work.
me321
94 Posts
me321 posted this 17 November 2015

I just noticed that I can create custom templates and name them
according to the url I want to use them on. That works brilliantly and
I don't have to use the Themler module either. That is really awesome!


Yes, we fixed this issue and uploaded a fix as hot-fix.

Can it be that this is now no longer working? Now when I create custom template with the same name as the URL it doesn't work anymore....

> I just noticed that I can create custom templates and name them > according to the url I want to use them on. That works brilliantly and > I don't have to use the Themler module either. That is really awesome! ---------- > Yes, we fixed this issue and uploaded a fix as hot-fix. Can it be that this is now no longer working? Now when I create custom template with the same name as the URL it doesn't work anymore....
You must log in or register to leave comments