• Hey,
    I’ve tried to customize the single.catablog.items.php, but i just can change

    <h3><?php the_title(); ?></h3>

    to be under

    <?php the_content(); ?>

    But I want, for example, the product title to be between the product image and description.

    <div class=”catablog-images-column”>x</div>
    <h2>Product title</h2>
    <div class=”catablog-description”>x</div>

    Any idea?

    http://wordpress.org/extend/plugins/catablog/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hello, so what is the outcome of your current setup? Can you post here your current template?

    Kind regards

    Plugin Author macguru2000

    (@macguru2000)

    Noticed a few things:

    If you named your template file single.catablog.items.php that is not the correct file name, it should be single-catablog-items.php. If you already knew that, please disregard.

    Please browse the support threads for previous solutions on rendering the catablog images inside your single catablog item wordpress template. Its basically an array of urls stored within the post meta data.

    Otherwise everything looks ok, good luck.

    Thread Starter jan.olov

    (@janolov)

    Oh, i wrote wrong here, the file is named single-catablog-items.php.

    Well, the file is actually looking like the single.php

    <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
    <div class="entry">
    	<?php the_content(); ?>
    </div>

    I want to have it like this, but this won’t work.

    <div class="entry">
    	%MAIN-IMAGE%
    	<h2>%TITLE-LINK%</h2>
    	%DESCRIPTION%
    </div>

    But that doesn’t work, as you might understand. I have a solution, that’s too create pages manually, and then add [catablog category=””x] to each page.

    Hi please read through this post to get to understand more, how to customize single-catablog-items.php

    I am sure this will put you on the right track.

    Kind regards

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Customize single-catablog-items.php’ is closed to new replies.