We're merging with GenerateBlocks! Learn more here.

[Support request] Suggestions

Please login to receive premium support.

Support for the free plugin can be found here.

Home Forums Pro Support Suggestions

Tagged: ,

Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #1165
    Sebastian
    Participant

    Hi Tom, a few suggestions:

    Title and Content alignment – pssibility to center
    Font Size – for Title and Content
    Center social Icons – The last icon has margin-right: 10px. Therefore, the social icons are not right in the middle. You can see this, by set the ".wp-show-posts-entry-title" "text-algin: center;".

    #1190
    Tom
    Keymaster

    Hi Sebastian,

    Thanks for the suggestions!

    Just released WPSP Pro 0.5 (finally with a bunch of styling options).

    Next I’ll be focusing on typography (font sizes, alignment etc..).

    Thanks for pointing out the centering issue!

    Here’s a fix until the next version:

    .wpsp-social-link, 
    .wpsp-social-link:visited, 
    .wpsp-li-button, .wpsp-li-button:visited {
        margin: 0 5px;
    }
    #1426
    Sarah
    Participant

    Hi Tom, yes, I’d love to see content and title alignment too – center option for Title for sure, and center or justified for the excerpt text if possible.

    #1433
    Tom
    Keymaster

    Good idea – justified text would be useful.

    #1443
    Alexander Seboe
    Participant

    Hi,

    I have some more suggestions:

    The abstract is ignoring formating such as center, linebreak and so on. –> Make the abstract format display.

    The ability to size the boxes of none Masonry mode.

    The ability to remove the links of (individual) or at least all posts of a list. Like this you can create a portfolio without linking further content.

    Also: The image overlap error still exists http://web28.milhouse.kundenserver42.de/ChildTheme/wp-content/uploads/2017/01/Issue-Images.jpg
    And here is another weird behavior: http://web28.milhouse.kundenserver42.de/seboe/wp-content/uploads/2017/01/Issue-Margin.jpg

    Cheers
    Alex

    #1449
    Tom
    Keymaster

    The abstract is ignoring formating such as center, linebreak and so on. –> Make the abstract format display.

    Not too sure what you mean here?

    The masonry boxes are determined by how many columns you choose. Are you wanting various sizes instead of all the same?

    You can remove everything but the images, then change the links of the images like this: https://wpshowposts.com/support/topic/custom-link-or-none/

    It’s not possible to remove the link completely, but that’s something I have planned.

    Can you link me to that page with the overlap?

    #1481
    Alexander Seboe
    Participant

    The abstract is ignoring formating such as center, linebreak and so on. –> Make the abstract format display.

    This is apperantly a wordpress by design. I solved it writing the formated code in the abstract field. Then the text is displayed with formating on the tiles.

    The link for the messed up images is here: http://web28.milhouse.kundenserver42.de/ChildTheme/ Firefox is ok but IE 11 I get this behaviour.

    #1486
    Tom
    Keymaster

    That’s because the images are set to float left and IE11 isn’t very good.

    Try this CSS:

    .wp-show-posts-masonry-block:not(.featured-column) .wp-show-posts-image.wpsp-image-left {
        float: none;
        margin-right: 0;
    }
    #1489
    Alexander Seboe
    Participant

    Thanks, that fixed it. Maybe you can include it in the standard styling to prevent this behaviour.

    Another thing. On my other site http://web28.milhouse.kundenserver42.de/seboe/ there is one tile which does not keep enough space:
    http://dasilvaseboe.de/wp-content/uploads/2017/01/Issue-Margin2.jpg Screen Res. 1336×600

    And also, something that has been buggin me on both sites. Any idea how I can do propper spacing below and above the slider? I want the slider to show without any blank space below or above the slider, now matter what the resolution is. If this is possible…

    P.S. Sorry for spoiling this post wiht my bugs. Maybe you move all the bug posts to another post…

    #1491
    Tom
    Keymaster

    Always feel free to start a new topic 🙂

    That’s happening because you have a super long word in there making the column wider. You can break the word like this:

    .wp-show-posts-entry-summary {
        word-break: break-word;
    }

    As for the slider, that’s a question for the theme I think instead of WPSP.

    #1759
    Alexander Seboe
    Participant

    Afer working with your theme and WPSHowposts for a while now using it on two sites, a third might come later, one is ready: http://dasilvaseboe.de/
    I use the WPSP lists as design building blocks, as you can see.

    My suggestsions are:
    1) Option to disable all links for a post or a whole list. Like this you can use posts as a tool to design a page like I did on my startpage and in that case you might not want links to the actual posts.

    I do this using the following function in the header.php of my child theme:

    <script>
    jQuery(document).ready(function(){
    var pTags = jQuery( “.home section#wpsp-65 article div.wp-show-posts-inner div.wp-show-posts-image a img,.home section#wpsp-11 article div.wp-show-posts-inner div.wp-show-posts-image a img,.home section#wpsp-50 article div.wp-show-posts-inner div.wp-show-posts-image a img” );
    if ( pTags.parent().is( “a” ) ) {
    pTags.unwrap();
    }

    });
    </script>

    2) At the moment I have to manually write HTML code in each post’s abstract field to have it come out formated in the summary/abstract which is displayed on the page.
    It would be much more convenient if I could just format the main post and the abstrat would come out formated automatically.

    #1776
    Tom
    Keymaster

    Added it as a future enhancement: https://github.com/tomusborne/wp-show-posts/issues/7

    Thanks!

    #1805
    Alexander Seboe
    Participant

    Cool 🙂 And the second part?

    #1807
    Tom
    Keymaster

    Not too sure what you mean by that – can you explain a bit more/show me an example?

Viewing 14 posts - 1 through 14 (of 14 total)
  • You must be logged in to reply to this topic.