Rahil627
Forum Replies Created
-
thanks @seitenwind.
my bandage:
if (isset($file) && file_exists($file))i haven’t used PHP in like 15 years though, so no guarantee
- This reply was modified 4 years, 4 months ago by Rahil627.
Forum: Plugins
In reply to: [List category posts] How do you remove the Bullets?I used the theme editor from the admin panel.
resource:
http://codex.wordpress.org/Editing_FilesForum: Plugins
In reply to: [List category posts] How do you remove the Bullets?my css file has
/* todo: style for list category posts plugin*/ #content ul.lcp_catlist { padding:0px 0px 0px 0px; /*works*/ } #content ul.lcp_catlist li { list-style-type:none; /*doesn't work*/ } #content article ul, #content article ul { padding:0px 0px 0px 25px; } #content article ul li, #content article ul li { /*padding:0px 0px 20px 0px;*/ font-size: 14px; /*line-height:23px;*/ list-style: square !important; }For me, changing the list-style didn’t work, but removing that 25px of padding did. So maybe it’s a theme specific problem for some people.
Forum: Plugins
In reply to: [List category posts] Missing posts using year and monthnummy hunch was correct!
[catlist year=2014 monthnum=9 numberposts=-1]
that removes the number of posts limit. Maybe the default is 10? not sure, but sure is confusing.
Forum: Plugins
In reply to: [List category posts] Posts by Category and date rangeif the plugin is impossible: http://stackoverflow.com/questions/8034697/wordpress-get-posts-by-date-range …. 🙁
Forum: Plugins
In reply to: [List category posts] Posts by Category and date rangeFor now I might just have to create a category for the date range, which would be a kind of silly hack
Forum: Plugins
In reply to: [List category posts] Posts by Category and date rangeI also want this for a specific date range. 🙁
I tried:
[catlist year=2014 monthnum=9,10,11,12]
But that didn’t work.For now I have:
[catlist year=2014 monthnum=9 orderby=date order=asc]
[catlist year=2014 monthnum=10 orderby=date order=asc]
[catlist year=2014 monthnum=11 orderby=date order=asc]
[catlist year=2014 monthnum=12 orderby=date order=asc]
[catlist year=2015 monthnum=1 orderby=date order=asc]
etc.Forum: Plugins
In reply to: [List category posts] Missing posts using year and monthnumAh, I wonder if it limits the amount of posts from one day to 5… because I have 9 posts in one day, but only 5 show.