• Resolved laselvadoro

    (@laselvadoro)


    Hi guys!! I need a super help… I find WP Catalogue a very nice plugin which I easily installed into my website! The only issue I am experiencing is that the page of the product doesn’t show the header of the website… how can I integrate it there? I guess it has something to do with the style editor or shall I write something on the header.php to tell him to show everywhere? I am not a super wizard,and this might appear as a dumb ticket to open, but I’d appreciate your help very much.

    http://wordpress.org/extend/plugins/wp-catalogue/

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Maeve Lander

    (@enigmaweb)

    No worries laselvadoro, happy to help. Please can you send a link to the page you’re referring to so I can check it out?

    Thanks

    Thread Starter laselvadoro

    (@laselvadoro)

    the website is http://www.idecksystems.com – now if you click on PRODOTTI and then you choose one product, the header menu disappears… I’d love it to stay there. Still working on english translation, hope it’s not a prob to fix the issue. thank you so so much.

    Thread Starter laselvadoro

    (@laselvadoro)

    is there anyone who can give me some help with this? I still had no answer…

    Plugin Author Maeve Lander

    (@enigmaweb)

    I’ve checked it out and I think this is the same problem as has been reported by a few other users in another thread… I am working on fixing this and will make a new release with a fix soon…. thanks for reporting it and for your patience

    Thanks, pls let us know once you have fixed it. I will give the plugin a high rating for the support you have provided in your threads.

    Plugin Author Maeve Lander

    (@enigmaweb)

    Sure – will report back here once I have an ETA for the release with a fix. Thanks

    I solved it this way: in wpc-catalogue.php on line 69 right after the echo for ‘wpc-catalogue-wrapper’ i added

    <div class="titleforwpc-cat">
    <?php
    echo '<h2>' . $term_slug . '</h2>';
    ?>
    </div>

    and styled it in css

    .titleforwpc-cat {
    }

    I also needed to add the title in the single product pages in single-wpcproduct.php on line 5 right after the content main div.

    <div id="content" role="main">
    <div class="titleforwpc-cat">

    I also had to remove this div in the actual Catalogue page because it showed a blank space under the page title (default wordpress) and did that in a very custom way so it’s not a good solution. I’m no php expert, so if someone solves that I’m very happy 🙂

    I just identified the ID of that particular page – in my case it was #post-128 so I just gave it display:none in css

    #post-182 .titleforwpc-cat {
    display: none;
    }

    Hope this helps.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘header disappears on single product page’ is closed to new replies.