Fernando Briano
Forum Replies Created
-
Forum: Plugins
In reply to: [List category posts] BulletsBy default the posts will be displayed inside a ul tag with the
lcp_catlistCSS class. So to make the bullets disappear, just add
this CSS code to your theme’s stylesheet:.lcp_catlist li{ list-style: none; }Forum: Plugins
In reply to: [List category posts] Nothing appearsNo tengo mucha idea de por dónde puede venir esto, pero veamos de encontrar la solución.
¿Hiciste algun cambio a la base de datos? Mostrando el query que ejecuta el plugin en mi blog de desarrollo, veo algo similar en el nombre de las tablas y columnas y funciona:
SELECT wp_posts.* FROM wp_posts WHERE 1=1 AND wp_posts.post_type = 'post' AND ((wp_posts.post_status = 'publish' OR wp_posts.post_status = 'private')) AND wp_posts.post_title LIKE 'l%' ORDER BY wp_posts.post_title asc¿Qué versión de WordPress estás usando? ¿El plugin está actualizado a la última versión?
Forum: Plugins
In reply to: [List category posts] Nothing appearsCarlos,
¿No aparece nada? ¿O aparecen posts que no corresponden a ese filtro?¿Te animas a ejecutar con WordPress en modo DEBUG? (http://codex.wordpress.org/Debugging_in_WordPress), a ver si aparece algun mensaje de error.
¡Muchas gracias!
Forum: Plugins
In reply to: [List category posts] List all post that start with a given letter?It *should* work on multisites. I think I did a small change in the filter removal on the latest code, so you should try again after I upload a new version to WordPress.org, see if that fixes it. Otherwise we need to find a new solution.
Thanks!
Forum: Plugins
In reply to: [List category posts] Removing hyperlinkThanks everyone for helping out with this issue. I’m adding your answers to the FAQ. I’m also marking this issue as resolved.
Thanks!
Forum: Plugins
In reply to: [List category posts] Notice: Undefined index error with DebugsirenAri this should be fixed on the next version of the plugin. Please update it when it’s released and let me know if the message is gone for you.
Thanks!
Forum: Plugins
In reply to: [List category posts] How to add custom field text in list's title?Glad it worked!
There is nothing automatic for this at the moment. It could be implemented if there’s enough demand for this on the options page.
I’m marking the issue as resolved for now, since it fixed the original issue.
Thanks!
Forum: Plugins
In reply to: [List category posts] List all post that start with a given letter?That’s odd. I am testing a code like this one:
[catlist starting_with=l order=asc]
And it’s working. What shortcode are you using? Let’s see if we can find the issue…Forum: Plugins
In reply to: [List category posts] List all post that start with a given letter?Do you mean posts whose content starts with a letter? What I implemented works for posts whose title start with a letter.
Forum: Plugins
In reply to: [List category posts] How to add custom field text in list's title?You should use a shortcode similar to this:
[catlist id=7 customfield_display="exact_location" customfield_display_name=no]Forum: Plugins
In reply to: [List category posts] How to add custom field text in list's title?As you can read in the documentation, you can do this with the
customfield_displayparameter:customfield_display – Display custom field(s). You can specify many fields to show, separating them with a coma. If you want to display just the value and not the name of the custom field, use
customfield_display_nameand set it to no. By default, the custom fields will show inside a div with a specific class:<div class="lcp-customfield">. You can customize this using the customfield_tag and customfield_class parameters to set a different tag (instead of the div) and a specific class (instead of lcp-customfield).Forum: Plugins
In reply to: [List category posts] List all post that start with a given letter?Hi, I implemented this for version 0.47. Please update the plugin on your blog once it’s available and let me know how it works for you.
The parameter is:
starting_with– List posts whose title start with a given letter. Example: [catlist starting_with=”a”]Thanks!
Forum: Plugins
In reply to: [List category posts] localization doesn't workI added the
load_plugin_textdomaincode to the included CatList.php file to see if this fixes the issue. I’ll update a new version soon, please check it out and let me know if it works for you.Thanks!
Forum: Plugins
In reply to: [List category posts] Similar plugin?It looks like the developer just used my plugin’s name in the documents for some reason and then forgot to change it. The code is not too similar to List Category Post’s code.
Thanks for reporting it, but it was probably just a mistake in the name.
Forum: Plugins
In reply to: [List category posts] Remove commentsmartenia,
I’m not sure I understood your question. Do you mean remove comments when you’re listing posts with the plugin?
Removing comments from a specific category?Also, what do you mean by removing? Not enabling them? Actually removing them from the database?