stranger
asked 11 years ago

Hello and thanks for the Theme WallPress – wall theme.

I use the plugin WP Favorite Posts. But is it possible to integrate the like: http://themeton.com/themes/?theme=pressgrid&ref=themeton (login with demo, demo)? The watch (remember) list will show the held posts in the layers, not as a list in a Page.

So remember list should look as normal as the Home of Wall WordPress Theme. I hope I could explain it. Thank you regards

5 Answers
Jackie Lord
answered 11 years ago

Hi Riccarda & Rick,

I have successfully integrated WP Favorite Posts to WallPress and below is how I do that:

Step 1: Add <?php wpfp_link(); ?> to theme-folder/content.php

Step 2: Add a new Page Template file, I named: template-favorite-list.php to your Theme Folder with the code:

<?php
/**
 * Template Name: Favorite List
 */
get_header(); ?>
    <?php get_sidebar(); ?>
        <div id="container">
           <p><?php echo wpfp_clear_list_link()?></p>
            <div id="content" class="masonry">
            <?php while ( have_posts() ) : the_post(); ?>
                <?php the_content(); ?>
            <?php endwhile; ?>
            </div>
        </div>
<?php get_footer(); ?>

Step 3: Create a new page, then select this Page template.

Step 4: Copy wpfp-page-template.php from Plugin directory to Theme directory.

Step 5: Edit this file:

Remove:

echo "<ul>";


Also Remove:

echo "</ul>";

Remove:

echo '<p>'.wpfp_clear_list_link().'</p>';

Remove:

while ( have_posts() ) : the_post();
...
endwhile;

Then add:

while ( have_posts() ) : the_post();
get_template_part( 'content', get_post_format() );
endwhile;

Step 6: Add Custom CSS to your CSS File:

.page-template-template-favorite-php #content {
max-width: 100%;
}

.page-template-template-favorite-php .item {
width: 16.6%;
}

Regards,
Jackie

stranger
answered 11 years ago

Hi Jackie, thank you. You are a treasure. (-;  Insofar as it works beautifully. But the layers are still too big and go all over the page. So nothing like the content.php. And they are eye lists in a list row down.

Do I need to adjust something somewhere? CSS I’ve tried. But there is nothing excites. only if I have the max-width 250px in # content to sit for example, the layers are smaller, but still ranked in a list down. I have overlooked something? Probably. Thanks again for your help. Cheers Riccarda

stranger
answered 11 years ago

Hi Jackie,

You are wonderful. Thanks again for the solution. I solved it. I Dummie. Using CSS, of course.

Cheers Riccarda

DominicStaff
answered 11 years ago

I think you have resolved this issue.

stranger
replied 11 years ago

This Problem Yes. That is correct. I have for the purpose of Google Map in the Content-single.php actually asked not to this question.
No, unfortunately not. the map shows not all the graphics correctly an. such as the close icon

stranger
answered 10 years ago

Hi, it may be that this spam is made without advertising the end? Can not switch to that. Thanks Rick

Jackie Lord
replied 10 years ago

We got spam issue recently, however this issue has been fixed.
Apology for all the inconvenience you may have

Powered by DW Question & Answer Pro