jpkidd
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Post content showing only in custom fieldin my mind the main post content was somehow getting ‘into’ the advanced field, but I’ll put that down to chemo brain – it is clearly some conflict in the div tags which I will ow try to sort out. what remains curious to me is how a user editing content might have affected such a conflict (presumably residing in a theme file), maybe I will actually figure that out …
Forum: Fixing WordPress
In reply to: Post content showing only in custom fieldat the moment I have worked around it with columns. the current left column content is found in the main post, the right column content was in a custom field formatted to appear somewhat like a right sidebar (or like a column as the kludge now produces) but I copied the content into the main post and set up columns. but to reiterate, the “right column content” used to be completely separate from the main post in a custom field!
Forum: Plugins
In reply to: [WP FullCalendar] Time Format not recognising tt for am / pmI changed the tt to A to get the format back (AM PM), I think a gets you am pm
Forum: Plugins
In reply to: [Multi-column Tag Map] get group to span column breakcorrection in case it matters, long list under a numeric character, “5”
whoa, good plugin, thanks
I found the problem and it is working for me
in mctagmap.php, at line 165 as mentioned in an earlier email, it should read numberposts — with an “s”, other wise the default for get_posts of 5 applies I believe as you and I experienced it 🙂
Currently 22 tags under a category. If I add in from_category = ID, the 22 reduces to 5. on another page, a different category, it correctly selects out a separate tag when using from_category = that different category
If I delete line 165 of mctagmap.php
‘$posts_array = get_posts(‘category=’.$from_category.’&numberpost=-1′);’
I get sorry no tags when from_category is enabled (correct behaviour). If I printr posts_array I get just 5 records (not 22)At the bottom of the this page a tag map with and without from_category
ducc.ca/meet-the-community/profiles
was there a resolution to this? I too have more than 5 tags in a category with only up to 5 showing
Forum: Plugins
In reply to: [Contact Form 7] line space in form informationstill a probblem?
on the administration page, where you go to edit Contact forms, you control the mail composition entirely, you can edit it like a basic word processor, at lest you can just delete that blank line, Save and you should be good to gothe next piece may be tougher for you than the above but if you know how to edit the style.css file of your theme you can add in CSS to control for example the width and height of form fields, for example for multiline fields
‘.wpcf7 textarea {
width:100%;
height: 40px;
}’there are lots of other examples in this forum