pward90
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Appointment] Remove Page Title SectionNo problem, glad you got it working. The slider isn’t a feature I use (and I’m not even sure if I get the full functionality with the free version) but I can take a look. What are you looking to do with the text? Centre it?
EDIT: Just saw your post, I’ll take a look and see if I can figure anything out
Forum: Themes and Templates
In reply to: [Appointment] Remove Page Title SectionActually, I took a quick read over on my phone. If your code is still the same as what you posted above, the error may be here:
You have:
/**
get_template_part(‘index’,’banner’); ?>
*/Mine is:
/**
get_template_part(‘index’,’banner’);
*/
?>Check the pastebin link I sent again and make sure it’s in the exact same order then try full width again
Forum: Themes and Templates
In reply to: [Appointment] Remove Page Title SectionI’m on the road now, but I’ll take a look when I get back to see if I can help you out.
Who knows, maybe you’ll actually get some help from the theme support staff before then ;p
Forum: Themes and Templates
In reply to: [Appointment] Remove Page Title SectionIn your WordPress dashboard, go to Pages and click edit on the page you want to edit (your About page for example – see screenshot for example) – on the right hand side, you will see what I posted in the previous screenshot, where you can change the template to “fullwidth”.
Make sure you save the changes when you’re done by clicking Update
Forum: Themes and Templates
In reply to: [Appointment] Remove Page Title SectionYeah it was that code change that removed the green bar for me. I just went through and commented out line at a time to see what it affected. It was trial and error for me really. I just had to make sure that when editing the page that I set the template to Full Width (See screenshot)
I don’t use pro so I don’t use any other page template apart from that, so if you’re using a different one you might need to change the code in another php file
Forum: Themes and Templates
In reply to: [Appointment] Remove Page Title SectionGo to and edit the file at this location:
/public_html/wp-content/themes/appointment/fullwidth.phpChange it to:
/**get_template_part('index','banner'); */I’ve copied the contents of my fullwidth.php to pastebin as an example:
http://pastebin.com/SGP6NWubForum: Themes and Templates
In reply to: [Appointment] Remove Page Title SectionI figured it out by commenting out the following line from the fullwidth.php
get_template_part(‘index’,’banner’);