tua33450
Forum Replies Created
-
Sure. I’ll do that.
Thanks.
Hello,
Published posts do display according to their publishing date; but, I think you are misunderstanding my request. I am talking about unpublished drafts that do not have publish dates. I would like for them to show up in the calendar according to their first draft dates. Instead, they appear on the calendar by the date that the draft was created.
Does that make sense?
Forum: Plugins
In reply to: [Comments - wpDiscuz] Working with Postmatic Social CommentingSince I don’t see a way to like this question, I would like to second this request. I would love for wpDiscuz to work with Postmatic Social Commenting.
Forum: Plugins
In reply to: [AddToAny Share Buttons] how can I hide add to any buttons on the homepage?I just figured out the answer to my own question. The answer here (https://wordpress.org/support/topic/removing-floating-share-buttons-from-posts-page/) applies; however, the actual code depends on your theme. I was using a custom theme, wherein I had not activated dynamic body classes, so this did not work at first. If you are in the same boat, you need to add “<?php body_class(); ?>” (minus the quotations) to your starting body tag. So, for me, the starting body tag within the header.php code now reads “<body <?php body_class(); ?>>”. With that changed, body.home now selects the styling within my index.php page. That way, adding body.home .a2a_floating_style { display: none; } to my css hides the floating share buttons on my homepage.
Forum: Plugins
In reply to: [AddToAny Share Buttons] how can I hide add to any buttons on the homepage?Any idea how to hide the floating buttons from the homepage? Unchecking the ‘placement’ options in the standard tab do not seem to work for that and the homepage is not technically a page within wordpress to uncheck the option there either.
Forum: Fixing WordPress
In reply to: Link to page with info about all authorsHello again, I think I’ve figured this out. I guess fully writing out my question helped clear this up in my head.
In case anyone else is interested, here is my solution. I am going to manually build the about-us page, being sure to us div IDs that correspond to the authors. Then, I will just change the author links in my single.php page to <?php the_author_link(); ?>. That way, I can set the website for the author in wp-admin to mywebsite.com/about-us#Author1
Hopefully this will work out for me. Sorry for wasting the space in the forum.
Forum: Themes and Templates
In reply to: Need help with image upload in theme options page.Hi, did you ever figure this out? I a trying to do something similar.
Forum: Themes and Templates
In reply to: Styling Theme Options ElementsI kind of figured this out. I just wrapped the element in pre tags, and enabled text wrapping. The text-indent still did not work, but I was able to manually indent with spacing in the textarea.
Forum: Fixing WordPress
In reply to: Call Functions (i.e., get_header();) Only Work on Index PageOkay, so maybe it’s my server – I’m hosting the site locally use Wamp until I make more progress. I am trying to make a media page that includes all posts that are classified in the category ‘media’, but when I try to use get_header, I get the error specified above. Can I only use these WP functions on pages like index.php and single.php?