jennjoanne
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Email full posts while using "more"Maybe I’m misunderstanding something, but I currently do have an email subscription already established – every post we post gets sent to our email subscribers. But I’m just trying to figure out how to send the full post even when I’m using the “more” feature.
Forum: Plugins
In reply to: [Bottom of every post] Appears Two Times at the Bottom of PostsI went through the code of the plugin and I’m not sure where the issue is exactly. I don’t see anything duplicate, so I just asked them for help.
Haha, I could see that but it works great for our type of blog–I continually have to edit reading orders for book series. Instead of having to hunt out each post linked to a book series and updating each one independently I only have to edit the Page that contains the reading order and then it updates each post that has that page added to the bottom of post. Huge time saver for me. ??
Forum: Plugins
In reply to: [Bottom of every post] Appears Two Times at the Bottom of PostsThank you Corey for getting back to me.
I just inspected the element and the funny thing is that the post which only has it appearing ONE time has the Bottom of the Post appearing within the Insert Pages info (like you thought) but it doesn’t have it actually at the bottom of the post. Whereas the post that has Bottom of the Post appearing TWO times has it also appearing within the Insert Pages info and then also as it should correctly at the bottom of the post.
I’ll look into that code and if it’s over my head then I’ll ask that plugin site for help and post the answer here.
Forum: Plugins
In reply to: [Bottom of every post] Hide From Specific PostsJust did this:
You’ll have to edit the plugin. Find this line:
if( !is_page( ) && file_exists( $fileName )){…and change that code to one of these lines depending on your configuration:
EXCLUDE A CATEGORY
if( !is_page( ) && !has_category(‘portfolio’) && file_exists( $fileName )){
EXCLUDE A CUSTOM POST TYPE
if( !is_page( ) && ‘portfolio’ != get_post_type() && file_exists( $fileName )){
So mine looked like this:
if( !is_page( ) && !has_category(‘reading-order’) && file_exists( $fileName )){Forum: Fixing WordPress
In reply to: Change Address Bar Icon?It works! You rock! Thank you so much for the basic explanation of what I needed to correct!
Forum: Fixing WordPress
In reply to: Change Address Bar Icon?Ryan,
Thanks for responding! And yes, that’s exactly what I am wanting to do. I’m still somehow missing something.
I read that article and uploaded the image (favicon1.ico.ico) into the public_html directory and the theme’s directory. I then went into the header.php and changed the verbaige to:
<link rel=”shortcut icon” href=”favicon1.ico.ico” type=”image/x-icon”>
Not sure why the title changed when I uploaded it to the directories? But it still isn’t working.
Forum: Fixing WordPress
In reply to: Increase Space Between Rows in TableAWESOME!! Thank you Andrew & andypaddock! I combined both of your suggestions together and it worked perfectly! Thank you, thank you, thank you!
This code below works ONLY if it’s in the actual theme’s Style.css. Just a FYI for anyone – this doesn’t work in your Edit CSS because it only shifts the items closer together.
.post-content th,
.post-content td {
padding:15px;
}Forum: Fixing WordPress
In reply to: Table alignment with empty cellsFigure it out myself. In case anyone else is looking for the answer:
go into your style.css sheet in your Themes FolderIn the section:
.post-content table {Add:
table-layout: fixed;??
Forum: Fixing WordPress
In reply to: Not Receiving Comment Notification EmailsJust to clarify – this plugin will not affect or change how posts are emailed to email subscribers correct?
Forum: Fixing WordPress
In reply to: Not Receiving Comment Notification EmailsI don’t have a form for them to fill out. But I do receive notifications for every like on a post that we get (regardless if I am the author of the post or not).
I don’t receive notifications anymore for – comments, new followers, new email address followers.And all of our posts that get sent out by email subscription are always received by the recipient.
Going to look at the link right now, thank you SO much!!
Forum: Fixing WordPress
In reply to: Not Receiving Comment Notification EmailsAll of those are checked below.
E-mail me whenever
Anyone posts a comment
A comment is held for moderation
Someone likes one of my postsYet me, nor any of the other 3 members who write posts ever get notified of comments. I won’t even go into the fact that I receive every single like notification instead of the actual post creator receiving that email.
Forum: Fixing WordPress
In reply to: Not Receiving Comment Notification EmailsThe only plugin I have that is related to spam is Askimet.
What do you mean by checking site stats and traffic? This issue has been going on for a while and nothing in regards to stats/traffic was different before or after this problem
Thanks for the help!Forum: Plugins
In reply to: [Advanced Editor Tools] Remove Alternating Row Color & LinesThank you so much for informing me Andrew! I will take a look into figuring out where and how to change those settings!
Forum: Fixing WordPress
In reply to: Main Page Format ChangedFor anyone else having this problem – I figured out that for some reason it was having an issue with a Custom CSS I’ve had entered for the last few months (never had issues before). It was in regards to having 0 margin between the margin and the posts. Once removed, the issue resolved.
Forum: Fixing WordPress
In reply to: Not Receiving Comment Notification EmailsAnd furthermore, I am also no longer receiving email notifications when I have a new email subscriber. Anyone out there have ideas on how to fix this?