Eric Amundson
Forum Replies Created
-
Forum: Plugins
In reply to: [Posts in Page] Remove reference to Category and CommentsYay! Thanks for letting me know.
Have a great weekend!
Forum: Plugins
In reply to: [Posts in Page] Show posts based on tags assigned to postIs there any way to use the shortcode to display posts based on tags assigned to the post using the shortcode?
Yes.
[ic_add_posts tag='tag-slug']
– Show posts using a specific tag. Like categories, it uses slugs and can accommodate multiple tags separated by commas.Forum: Plugins
In reply to: [Posts in Page] Show photo in “Include posts from specific categories”Hi @andreabennati,
Sorry for the late reply here.
is there a way to show also photo using Post in page the shortcode:
Yes, you can show the featured image using Posts in Page. You can see how to do this if you look at the pinned posts within the support forum like this one:
https://www.ads-software.com/support/topic/how-to-add-featured-image/
I’d like also avoid “Posted in – leave a comment – edit, do you think is it possible?
Yup. Check this thread for instructions:
https://www.ads-software.com/support/topic/remove-reference-to-category-and-comments/
Does that make sense? Let me know if you get stuck.
Forum: Plugins
In reply to: [Posts in Page] Show posts by authorHowdy @steigw,
Great question. Short answer: not at this time but it’s a great feature we should add.
You could work around it by creating a category or tag for each author and pulling them in that way, I suppose.
I hope that helps!
Forum: Plugins
In reply to: [Posts in Page] Remove reference to Category and CommentsHi Monique,
If you’re using Posts in Page, I’d recommend copying the
posts_loop_template.php
file from the plugin’s templates folder to your theme and customize it there. You can find some instructions at the bottom of the shortcode list on this page.[ic_add_posts template=’template-in-theme-dir.php’] – In case you want to style your markup, add meta data, etc. Each shortcode can reference a different template. These templates must exist in the theme directory or in a sub-directory named posts-in-page.
Once you’ve copied that file into your theme per above, you’ll likely want to remove or comment out lines 30 – 76:
<!-- This outputs the post META information --> <div class="entry-utility"> <?php /* translators: used between list items, there is a space after the comma. */ $categories_list = get_the_category_list( __( ', ', 'posts-in-page' ) ); if ( $categories_list ) : ?> <span class="cat-links"> <?php printf( /* translators: 1: posted in label. 2: list of categories. */ '<span class="entry-utility-prep entry-utility-prep-cat-links">%1$s</span> %2$s', esc_html__( 'Posted in', 'posts-in-page' ), $categories_list // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ); ?> </span> <span class="meta-sep">|</span> <?php endif; ?> <?php /* translators: used between list items, there is a space after the comma. */ $tags_list = get_the_tag_list( '', __( ', ', 'posts-in-page' ) ); if ( $tags_list ) : ?> <span class="tag-links"> <?php printf( /* translators: 1: tagged label. 2: list of tags. */ '<span class="entry-utility-prep entry-utility-prep-tag-links">%1$s</span> %2$s', esc_html__( 'Tagged', 'posts-in-page' ), $tags_list // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ); ?> </span> <span class="meta-sep">|</span> <?php endif; ?> <span class="comments-link"> <?php comments_popup_link( esc_html__( 'Leave a comment', 'posts-in-page' ), esc_html__( '1 Comment', 'posts-in-page' ), esc_html__( '% Comments', 'posts-in-page' ) ); ?> </span> <?php edit_post_link( esc_html__( 'Edit', 'posts-in-page' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?> </div>
Does that make sense?
- This reply was modified 5 years, 1 month ago by Eric Amundson.
Forum: Fixing WordPress
In reply to: How to use tags for such a showcase of products?Hey @rre,
I’m honestly still having some trouble visualizing this.
Could you do something like the following?
[ic_add_posts category='application-A' tag='product1,product2']
Forum: Plugins
In reply to: [Posts in Page] Removed from www.ads-software.com?Roger, Roger.
Forum: Plugins
In reply to: [Posts in Page] Show Posts on a Specific Page but not on the Home PageHi @echoitteam –
I think you can accomplish what you want by making sure you have two pages – one for Home and another for your IT Corner.
On the home page, you’ll have a shortcode like this:
[ic_add_posts exclude_category='it-corner']
And, on your IT Corner page, it’ll look more like:
[ic_add_posts category='it-corner']
Then, within WordPress Admin, go to Settings > Reading and set a static page for your Home page.
Does that work?
Forum: Plugins
In reply to: [Posts in Page] Removed from www.ads-software.com?I’ve noticed that this plugin was removed from www.ads-software.com today. What is the reason for this?
Hi @davidrahrer – that’s a darn good question. I was just as surprised as you and am guessing it’s just a mistake.
I’ve sent an email to the Plugin Team and will report back as soon as I have an answer.
Forum: Fixing WordPress
In reply to: Color Changes from Desktop to Mobile SiteHi Kate,
Sorry for the late reply.
do you know where/how I need to change the mobile settings to get them to mirror the block color(s) on the desktop version?
Unfortunately, I’m not a Divi guy and am not sure. Since Divi is a commercial theme, I’d recommend that you contact their support for help if you don’t find answers in their documentation.
I hope that helps!
Forum: Plugins
In reply to: [Posts in Page] Posts in Page Pagination is returning Error.Howdy @freakency – thanks for the feedback. We made a few changes to pagination and will look into this.
Forum: Plugins
In reply to: [Posts in Page] Show Posts on a Specific Page but not on the Home PageHowdy @echoitteam – just to make sure I have it clear: your goal is to have a static home page that doesn’t show posts and have another page that shows all or some of your posts?
Questions:
- Will the /it-corner/ page only be pulling in posts from a specific category or are you planning to pull in all posts?
- What are your current settings for Your homepage displays on your Settings > Reading section in the WP Admin?
Thanks!
EricForum: Plugins
In reply to: [Posts in Page] Posts in Page Pagination is returning Error.Hey @ftwwings, I’m glad that you found the issue! Have a great week!
Forum: Plugins
In reply to: [Posts in Page] It add space after each thumbnailGlad to hear you resolved it, @chrsm!
Have a great week!
Forum: Fixing WordPress
In reply to: Any Post Edits/New Posts leads to a “Page Not Found” Error page.Hey @ghostjax – have you tried rebuilding permalinks? If not go to Settings > Permalinks and click the save button and let me know if that works.