• Hey guys,
    So i found out that i have to hide a certain code to take the page titles off my pages, but i cannot find that code on my page.php. I have linked the page.php content and the site itself so you can tell me what exactly to remove. avocado.photography

    <?php
    	/**
    	 * page.php
    	 * The main post loop in loom
    	 * @author TommusRhodus
    	 * @package loom
    	 * @since 1.0.0
    	 */
    	get_header();
    	the_post();
    
    	/**
    	 * Get Wrapper Start - Uses get_template_part for simple child themeing.
    	 */
    	get_template_part('inc/wrapper','start');
    ?>
    
    	<div class="post-content">
    		<?php
    			the_title('<h2 class="post-title entry-title">', '</h2>');
    			the_content();
    		?>
    	</div>
    
    <?php
    	/**
    	 * Get Wrapper End - Uses get_template_part for simple child themeing.
    	 */
    	get_template_part('inc/wrapper','end'); 
    
    	get_footer();
Viewing 6 replies - 1 through 6 (of 6 total)
  • Moderator t-p

    (@t-p)

    How to remove page title from page on this particular theme

    Which theme?

    Thread Starter isoro7

    (@isoro7)

    Loom its called.

    If this is your site http://avocado.photography with that wild image on the front (mean that in a good way) then these instructions should do, your link above is back to here.

    You can edit the style.css file, if you don’t have it already create a child theme to insure the changes work on future updates.

    I added this in firebug to test it live on your site.

    .post-content h2 {
    display: none;
    }

    If you’re not familiar with firebug it will allow you to make live edits to your site in the Firefox browser to test them out before putting it into your actual code. Very handy. 🙂

    http://getfirebug.com

    Thread Starter isoro7

    (@isoro7)

    sweet thanks a lot jeff! that worked great!

    Thread Starter isoro7

    (@isoro7)

    Can i ask for one more piece of advice while i have your attention? you see the logo? its so small is there any way i can increase the size?
    i mean iv tried increasing the actual size of the art work and cropping closer to the main content but it just resizes it to this tiny thing.

    I’m not sure, I’ve tried to edit the container, .navbar-brand, by using the firebug tool but it’s not changing so I don’t know if the theme is creating the image size. You may have to contact the theme developer for help.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘How to remove page title from page on this particular theme.’ is closed to new replies.