chinmoy29
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Cannot modify header information – headers already sentShare the code of post-formats.php via pastebin.com. We’ll look the code once
Forum: Themes and Templates
In reply to: [Twenty Fourteen] How Do I Display Custom Taxonomies?Are you wanting to Taxonomy link at menu? You can do it from Appearance->menus and select your custom taxonomy. That’s it.
Forum: Plugins
In reply to: [Testimonials] Limit Characters on SldierAdd the following code in your functions.php file
add_filter("the_content", "excerptforTestimonialSlider"); function excerptforTestimonialSlider($content) { if( get_post_type() == "testimonial") return substr($content, 0, 300); else return $content; }
Forum: Plugins
In reply to: [Extended Featured Widget] Missing Grid optionsThis is free version. if You purchase PRO version then you will get following features
PRO Version have following features:
- Supporting Post, page, custom post type
- Supporting Taxonomies
- Added Stylesheet
- Supporting Grid Style
- Pagination for Post Listings
Forum: Plugins
In reply to: [Testimonials] Post_id doesnt seem to workHe purchased the premium version and issue is solved.
Forum: Plugins
In reply to: [Testimonials] Other views do not workHello Anna,
I checked the live site. Plugin is working there. But Test page is blank. Are you added the testimonials from backend? Can you send me the site access once So I can check the settings? Please do not send the info here. Email me here chinmoy29 at gmail dot com.
Forum: Plugins
In reply to: [Testimonials] Every recent change – new styles and layoutI think that your theme CSS is overwriting the plugin’s css. what is your site URL?
Forum: Reviews
In reply to: [Testimonials] Looking good. Simple and effective.Thanks for your comments. I fixed the Flexslider Jquery error. Please update the plugin now
Forum: Plugins
In reply to: [Testimonials] jQuery errorok. I updated the JS file. Please update the plugin now
Forum: Plugins
In reply to: [Testimonials] jQuery errorCan you give your site URL?
Forum: Plugins
In reply to: [Testimonials] Other views do not workHi Lathea,
Thanks for your comments.
I tested the shorcode
[testimonials view=table columns=3 orderby="date" order="DESC" thumb="large"]
And it is working for me. see the demo here https://demo.pwdtechnology.com/testimonialsplugin/testing-views/
Best
ChinmoyForum: Plugins
In reply to: [Testimonials] Custom TaxonomiesThanks for all your hard work. Yes. This trick will help to other people also.
Forum: Plugins
In reply to: [Testimonials] Next/Prev Navigation Links overlapping, in the wrong locationHi,
Sorry I did not get any notification from here. I just saw your message. Today I updated my plugin. I fully removed the old functionality and remade the plugin with new thoughts. If you are still interested then you can download it and use once on your site.
Best
CForum: Fixing WordPress
In reply to: Showing posts on Pages based on CategoriesFirst Idea: copy all code from archive.php file and paste in new file “category-events.php“
OR
2nd Idea.copy all code from page.php file and paste in new file “page-events.php“
Now add the following code before the “if” condition.
<?php query_posts('category_name=events&posts_per_page=-1'); ?>
Best of Luck
Forum: Fixing WordPress
In reply to: How do get rid of the post reply on pagesgo to ADMIN->Edit page and off the comment posts option under the discussion section.