Fernando Briano
Forum Replies Created
-
Forum: Plugins
In reply to: [List category posts] What is wrong …?I just created an issue on the CM Super Tooltip Glossary support forum:
http://wordpress.org/support/topic/thumbnails-not-showing-22Hopefully we’ll get to a solution so you can use both plugins.
Forum: Plugins
In reply to: [List category posts] Multiple Catlists Are Showing The Same Thingm-one the instance parameter is not necessary unless you’re using pagination. That shouldn’t be an issue though, I tested this same code on my development box and it works just fine. Might there be a plugin which conflicts with List Category Posts?
Try debugging this by deactivating all of your plugins and activate List Category Posts.
Have you tried using the default theme to test this?
Forum: Plugins
In reply to: [List category posts] What is wrong …?I tested your code and it does display the thumbnail on my testing box. What versions of the plugin and WordPress are you using?
Does your theme support thumbnails? (check this link) Have you checked this feature with one of the default themes?
Forum: Plugins
In reply to: [List category posts] Open link in new windowjackitshot thanks for answering!
Forum: Plugins
In reply to: [List category posts] jetpack share buttons get lost using excerptderaltetom,
The developers from Jetpack have created a patched version, could you please try it?Could you try to install this patched version of Jetpack, and let me know if this fixes your problem?
https://github.com/Automattic/jetpack/archive/lcp.zipThanks!
Please test it and let us know if it works?
Thank you!Hello, thanks for answering.
Here’s the code for displaying the content, there is a filter and some processing going on:
$lcp_content = $single->post_content; $lcp_content = apply_filters('the_content', $lcp_content); $lcp_content = str_replace(']]>', ']]>', $lcp_content); if ( preg_match('/[\S\s]+(<!--more(.*?)?-->)[\S\s]+/', $lcp_content, $matches) ): if( empty($this->params['posts_morelink']) ): $lcp_more = __('Continue reading →', 'list-category-posts'); else: $lcp_more = ''; endif; $lcp_post_content = explode($matches[1], $lcp_content); $lcp_content = $lcp_post_content[0] . ' <a href="' . get_permalink($single->ID) . '" title="' . "$lcp_more" . '">' . $lcp_more . '</a>'; endif; return $lcp_content;For the excerpt I do some other processing:
$text = strip_shortcodes($text); $text = apply_filters('the_content', $text); $text = str_replace(']]>',']]>', $text); if( $this->lcp_not_empty('excerpt_strip') && $this->params['excerpt_strip'] == 'yes'): $text = strip_tags($text); endif;Sorry for the crappy code paste 😛
Forum: Plugins
In reply to: [List category posts] jetpack share buttons get lost using excerptI don’t know why the link came out wrong on the previous message, the support ticket I opened on Jetpack’s forum is:
http://wordpress.org/support/topic/issue-with-list-category-posts-pluginForum: Plugins
In reply to: [List category posts] jetpack share buttons get lost using excerptI just opened a support ticket on Jetpack’s forum here.
One more thing you can try is this from their troubleshooting page:
- Disable all other plugins, then try connecting or using Jetpack. If Jetpack starts connecting or working properly, turn your plugins back on one-by-one until you start seeing the error again. Then note the plugin that caused this error and get in touch with us. Sometimes Jetpack and other plugins are incompatible; just let us know and we’ll see what we can do.
- If you are having a display issue, or the plugin step above doesn’t help, try activating Twenty Eleven or Twenty Twelve (one of the default WordPress themes) as your theme. Then try again. If your action starts working, something in your theme is likely broken and you should get in touch with your theme’s author. Be sure to let them know the troubleshooting steps that you have tried.
Also, make sure you update to the latest version (just released) of List Category Posts.
Forum: Plugins
In reply to: [List category posts] Pagination page numbers wrongOk, just released version 0.42.2 which should fix this issue. Please test and let me know if it’s working ok for you.
Thanks!
Cheers,Forum: Plugins
In reply to: [List category posts] Pagination page numbers wrongHi roso60, just came into the support forum because I found this issue on one of my blogs and came to see if someone else had had the same issue.
Working on a fix release now…
Thanks for reporting this!
Forum: Plugins
In reply to: [List category posts] excludeposts no longer workingAwesome! Marking this topic as resolved. Thanks!
Forum: Plugins
In reply to: [List category posts] Pagination markersTry something like this:
.lcp_paginator{ list-style-type:none; }Forum: Plugins
In reply to: [List category posts] Pagination with custom templateThanks for answering! I’m marking this issue as resolved then. If you have any further problems just post a new topic.
Thanks!
Forum: Plugins
In reply to: [List category posts] jetpack share buttons get lost using excerptI am really puzzled with this issue. deraltetom have you tried adding some text after the shortcode on your post?
It’s really weird, there doesn’t seem to be any unclosed tags on your excerpt or anything like that. Try using content=yes to see if the same thing happens. I might have to ask
danynek I can’t see your site.
Also, would you mind setting wp-debug to true on your site and see if there’s any error report? Thank you!
Forum: Plugins
In reply to: [List category posts] CSS thumbnail_classThe lcp_paginator.css file is just a style for the pagination. You need to add your styles to your blog’s stylesheet. Usually wp-content/themes/yourthemefolder/style.css or something similar.