Sheila
Forum Replies Created
-
EDIT: So I found in the FAQ to use sort=”8″ in my shortcode with 8 being the correct filed ID. This doesn’t sort the list. Is this a known bug? Is there a fix?
Even if we resolve that, what I’m hoping for is to be able to make each region a header with the items listed under it rather than a table where the region is listed every time.
My test version of this isn’t live but here’s a capture of 4 items added via GF to the directory: http://awesomescreenshot.com/056qu0773
Note that the 2 Seattle entires are not together which is what I would expect a SORT to do. I’d also expect them to be alphabetical by Region since that’s the field I sorted on.
AH…found it. Thanks for your patience of my newbie questions.
So I do have the menu item Readings and the posts ARE there! Thanks.
Still having some challenges. First, I followed the suggestion in the video and made the form post submission a draft. I get the thank you message for submitting it in the form entry lists as a form entry. But I’m not yet understanding how this becomes a POST. The title is setup as a post type. But it does not show up as a draft in posts nor do I see any way to make it one. I DO see in the Custom Post Types UI interface that I have 2 “drafts” but no way to access them.
I found how to fix the text displayed on the select option.
Do you know how I would set it up so that the url provided in the website gets assigned to the text of the listing? I’d rather not have text then url. I’d like the text to be linked to the url. But not sure if there’s anyway to do that using the GF setup. Thanks again.
Thanks Brad. The form is at the bottom of the link in my OP: http://sheilabender.com/community/local-readings
Never having done this before I was missing the point of taxonomies. I had made each item it’s own separate taxonomy! But I just watched another video and I think I’ve got it. I had to make the umbrella Reading Regions hierarchical and then create the rest as categories of that taxonomy! DUH! So they’re showing up now. YEAH! I just need to figure out why the label I made saying Select a Region isn’t displaying. It just says “Select a”. I need to test the form and figure out how to get the results to embed in the listing. Then this form will be added elsewhere.
Thanks so much. Sheila
This site finally launched a week ago. Thought I’d post the final url for anyone finding this later as the dev link in the OP won’t be there much longer. http://www.writingitreal.com. Authors are all listed on the Contributors page under Community. And the articles are all listed in the Library which is the posts.
It goes in your CSS. You can put it in the mingle forum css, your general css or a custom css which is what I do so that it won’t get overwritten during any updates.
My niece was able to provide some CSS that corrects this. I will post it. I just don’t know why it was necessary!
body.custom div#wpf-wrapper table.wpf-table br {
display: none;
}Forum: Fixing WordPress
In reply to: Password protecting pages — how does it work??I don’t seem to be able to log-in with my other WP account but I wanted to post that I think I may’ve just found the plug-in solution. It adds a cool lock graphic and then when you’re logged in it adds a button that says LOCK. So then those who are allowed access will need to relock the page on exit.
Color me dumb…I didn’t know I could find previous versions here on the forum. I just deleted v3 and installed 2.4 and all is well with the world again. Hopefully not upgrading the plug-in won’t be a security issue or later on, a compatibility issue. I’m not upgrading again until I know this “bug” is squashed or some new way to control it. Thanks.
I just read the readme.txt and apparently this is a new “feature”! It says “Form appears on category view at top of page”. SO…how can I turn this OFF? I don’t see that option.
Same thing for me. And that’s the only reason I installed the plug-in was to remove 4 categories from the sidebar listing. Are we just missing a setting somewhere? If there’s no fix has anyone found an alternative plug-in that will do this?
Forum: Plugins
In reply to: [Co-Authors Plus] [Plugin: Co-Authors Plus] Migrating complex siteOH…I see…you mean drop the WORD “return”. I’ve now tried it with and without the word and also with and without the semicolon which you had and I did not. I’ve also gotten advice form Headway Themes (my framework) to try it in custom functions instead of in the Easy Hooks. So far nothing has fixed the issue. Can you see if their code needs tweaking that might work in functions?
PHP:
———
function post_author_meta() {
global $post ?>
Written on <?php the_date(); ?> by <?php return coauthors_posts_links(); ?> <?php } add_action(‘headway_after_post_title’,’post_author_meta’);
———Forum: Plugins
In reply to: [Co-Authors Plus] [Plugin: Co-Authors Plus] Migrating complex siteThanks for the quick response. I assume when you say “return” you mean the missing semi-colon? I’m obviously not a coder! I tried adding that as well as removing the word “return” but neither fixed the problem. I’ll contact them but I’m not hopeful about their response. Thank you.
Forum: Plugins
In reply to: [Co-Authors Plus] [Plugin: Co-Authors Plus] Migrating complex siteOK, so no help with the above formatting…no worries. Now I have a bigger “fish to fry”. I have Co-Authors working properly. I’ve just added a premium membership plug-in called DAP (Digital Access Pass). I’ve just discovered that while Co-Authors still work fine for unprotected pages and when logged in, there’s a problem with the code in the hook when not logged in.
You can go here: http://wir.hoffmangraphics.com/a-free-range-writer and see the error which basically is this….
Written on by
Notice: No post ID provided for CoAuthorsIterator constructor. Are you not in a loop or is $post not set? in /home/hoffman/public_html/wir/wp-content/plugins/co-authors-plus/template-tags.php on line 71
, andAs you can see it’s trying to list the 2 authors but instead rendering an error. I’m putting the co-author code in a hook for before featured/single post content. This is what it is.
Written on <?php the_date(); ?> by <?php return coauthors_posts_links()?>Any clues how I can work around this? I really need the Co-Authors AND I really need the membership protection too. My ass is grass if I can’t make them play nice together.
I hope someone can help.