I know there are instructions out there somewhere, but I'm a little pressed for time..
I'm trying to figure out how to create a custom page template that gets used for a specific page - not a node template, I need the entire template to be different for, example, this page: mywebsite.com/custompagename
(it's a basic page content type, but I don't want to affect other basic pages)
I'm trying to do something with a page--custompagename.tpl.php file in the main theme folder, but that doesn't seem to have worked.
I have just installed a new Drupal 7 site using Acquia Dev Desktop. I have made myself the local administrator through Computer Management. I am tryin to update Drupal Core from version 7.61 to 7.64. I run the following commands:
drush vset --exact maintenance_mode 1
[success] maintenance_mode was set to 1.
drush cache-clear all
[success] 'all' cache was cleared
drush pm-update drupal
(updating from Drupal 7.61 to 7.64) SECURITY UPDATE available
Since upgrading to Drupal Core 7.60, I've lost the Rich Text Editor in CKEditor. When I check the CKEditor profile, Full HTML, editor appearance, the 'show the disable/enable rich text editor toggle' is selected. Also, in Configuration, Content Authoring, Text Formats, Full HTML roles are Authenticated User, Administrator. I am an admin.
I want to show a custom content if current URL contain certain words. So far, I'm able to achieve this with the code below (works perfectly), if the path contain the word 'cart'. I want to be able to check for other words like 'blog', 'event' and 'news'. How do I go about this.