leonzinger
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Carousel] [Plugin: WP Carousel] Two problems on version 0.5Hi Sumolari,
The thing is that i need to show the newest post in certain categories,
But the thing is that the plugin shows me the img but no content is being shown, although i have seen a div for content and seen it in your demo page. I need that it will show me the title of the post and the category name it was taken from, please help (if possible)
And you have a very cool plugin, exactly the thing i was looking for. keep up the good work.Forum: Plugins
In reply to: Contact Form 7: Sending users a confirmation emailworked great for me, thanks takayukister
Forum: Fixing WordPress
In reply to: Display Child Pages (title & content) on Parent PageHey guys,
There was some little issue with this code, i have tried to use it too but i was getting the content of the current page under each child title, eventually i have changed only the
<?php echo $content ?>
to
<?php echo $page->post_content ?>
not the smartest solution, but works for me very well(my php skills are pretty low).
Forum: Fixing WordPress
In reply to: How to do display the content of a child page?Hi Michael,
I have copied your solution to show content on sub pages of a specific page in my site, but for some reason the content i see is the current page content.
here is the code of the page that shows the child pages content like you posted:
<?php $pages = get_pages('child_of='.$post->ID.'&sort_column=post_date&sort_order=desc'); $count = 0; foreach($pages as $page) { $content = $page->post_content; if(!$content) continue; if($count >= 20) break; $count++; $content = apply_filters('the_content', $content); ?> <h2><a href="<?php echo get_page_link($page->ID) ?>"><?php echo $page->post_title ?></a></h2> <?php echo $content ?> <?php } ?>
the page itself: https://leon-zinger.com/classa/products/
what could be the problem?
Thanks for your help
Forum: Fixing WordPress
In reply to: How to do display the content of a child page?Forum: Themes and Templates
In reply to: Starker’s Theme – Works, but…Hi Khawley,
Please notice that Starker’s theme for some reason is in latest/starker/ folder, you need to grab everything from starker folder and move it to your root theme folder “latest/”
should work ??
Forum: Themes and Templates
In reply to: How can I get a short versions of my blog posts?Hi Guys,
I’m new to WordPress, and I had the same issue…
I have solved it now thanks to you!