• Hey all,

    I’m using a modified Blaskan theme and I’m adding a store component to it via WooCommerce. I don’t need the store to be too flashy but I’d like to spruce up my individual product page a bit. I’m just learning how to use PHP to edit everything (some folks on here have been helping me out with that), so bear with me.

    Here’s what I’m working with now: http://www.trialofthecentury.net/product/hello/

    Notice how the title (“I Don’t Want This Title Repeated”) appears twice: once above the image, and once as the actual “title” next to the image. My question is: what line of code do I remove to get ride of the title besude the image? I’d like to keep the title above the image and just nix the one to the right of it.

    I’ve been going at the PHP for hours and I just absolutely can’t figure out how to cut that big title out.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Do a search in your code for:

    <div class=”summary entry-summary”>
    <h1 itemprop=”name” class=”product_title entry-title”>

    your title is between:
    <h1 itemprop="name" class="product_title entry-title">YOUR TITLE HERE</h1>

    Thread Starter bricklayer.payne

    (@bricklayerpayne)

    Hmm. I don’t see that in the single-product.php. Is it in another code file?

    Thread Starter bricklayer.payne

    (@bricklayerpayne)

    Never mind, my friend—I figured it out. Took out the only line of code in templates/single-product/title.php. That did it. Thank you though!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Removing a Product Title’ is closed to new replies.