Fernando Briano
Forum Replies Created
-
Forum: Plugins
In reply to: [List category posts] Update spits out codeThanks @myblogisgreat and @abcdiamond! I’m marking this issue as resolved for now since there hasn’t been any reply from the rest. If anyone’s still having issues, please open a new issue.
Thanks everyone for your feedback and patience!
Everyone, can you please be more specific as to what is not working?
Forum: Plugins
In reply to: [List category posts] Update spits out coderogerhyam,
Is this an issue with WordPress’ plugin updating system itself? The code from the plugin that you pasted belong to the previous version:
<? /** * Class to build pagination * @author fernando@picandocodigo.net */ class LcpPaginator
Has been changed to:
<?php /** * Class to build pagination * @author fernando@picandocodigo.net */ class LcpPaginator
Apparently you need to change some setup to your php.ini file to allow php files to start with just<?instead of<?php. I changed it to<?phpin version 0.74.1 to keep compatibility.Everyone else, if you can please post your logs that would be really helpful to try and find out what’s wrong. As I said, I can’t see the error on my blogs, so I haven’t completely figured out what’s wrong yet. More info on debugging.
- This reply was modified 8 years, 5 months ago by Fernando Briano.
abhayplt,
Might have been an issue with version 0.74. Please update to 0.74.1 and let me know if this fixes your issue. Thanks.Forum: Plugins
In reply to: [List category posts] Update spits out codeVersion 0.74.1 is out. I think I found the issue and hopefully this update fixes it for everyone here. Please let me know if it does!
Forum: Plugins
In reply to: [List category posts] Update spits out codeI’m debugging the issue, trying to find out why this is happening. In the meantime, you can download the previous version here:
https://downloads.wordpress.org/plugin/list-category-posts.0.73.2.zipI’ll release a bug fix release as soon as I find out what’s going on and am able to fix it.
Forum: Plugins
In reply to: [List category posts] Update spits out codeCan you please post the beginning of the code? It seems to be hidden under the admin bar in the first screenshot. I can’t see it on my testing blogs.
Forum: Plugins
In reply to: [List category posts] List category posts plugin: ‘current category’ issueHi merijntjeatwork,
What version of WordPress are you using? I recently changed something in the way the current category is detected for compatibility with WordPress 4.9. Maybe this is the issue?Let me know,
ThanksFernando
Hi buzzlyhan,
Can you be more specific as to what is not working? Is it not using the same amount of characters? I should read on how Japanese characters are represented. Maybe [this link](https://wpml.org/forums/topic/the_excerpt-causes-formatting-issues-between-languages/) can help?Forum: Plugins
In reply to: [List category posts] And relationship for custom taxonomiesHi Denis,
It’s important you wrap the terms into one pair of quotes. So your example should look like this:
[catlist post_type="work" taxonomy="ct_work" terms="commercial+updates"]
I hope this helps you fix your issue.
Cheers,
FernandoForum: Plugins
In reply to: [List category posts] Custom Post Type Category Post ListAwesome! Glad it worked 🙂
Forum: Plugins
In reply to: [List category posts] Custom Post Type Category Post ListBy default the plugin uses regular posts as post_type, so it won’t load any of the custom post types unless you specify
post_typeto be projects in this case. Do you see anything with[catlist post_type=projects]? The code you posted is wrong, don’t know if that’s exactly what you’re using. But[catlist=extensions post_type=projects]should be[catlist name=extensions post_type=projects].Forum: Plugins
In reply to: [List category posts] Custom Post Type Category Post ListI’m a bit confused about your question. If Extensions and Conversions are categories, you should use
category=extensionsandcategory=conversionsin the shortcode. Then usepost_type=projects. Taxonomy is used for custom taxonomies, which is not the same as custom post types.
So something like:
[catlist category=extensions post_type=projects]should work. It’s weird that[catlist category=extensions]shows you nothing. Have you tried using the category id instead of the slug?Forum: Reviews
In reply to: [List category posts] Não funcionou na sidebarAugustus, como você implementou o sidebar? Com WordPress 4.9, você pode usar um shortcode diretamente em um widgetde texto na sidebar.
Also, did you try using the List Category Posts widget?
Forum: Plugins
In reply to: [List category posts] columnsHi rilliam,
A possible solution would be to use two shortcodes with an offset:<div class="column1"> [catlist id=7 numberposts=10] </div> <div class="column2"> [catlist id=7 numberposts=10 offset=10] </div>Hope this helps!