HDBblogger
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Need to turn off email notifications for new postsThanks, I found the functions.php file but it doesn’t have a word about any notifications. I assume I could hunt down the code to put in and it would affect something but I will first need to know what is currently controlling the email notifications. And, if I could just find it, maybe there would be options suitable for my needs without adding code to functions.php? What’s your opinion, please?
Here is the code in functions.php:
<?php /* This is the main function.php override file - it controls most of the stuff happening with the theme */ /* Anything you need to actively do, put here. This is the first code that will get run whenever the child theme is activated and used. This example just re-defines a function, but you could do anything. */ function weaver_continue_reading_link() { /* very simple example - override the read more text... */ $msg = '[CLICK TO READ MORE]'; return ' <a class="more-link" href="'. get_permalink() . '">' . $msg . '</a>'; } ?>Forum: Fixing WordPress
In reply to: Need to turn off email notifications for new postsYes, I went into the themes tab and didn’t see anything called functions.php. And, it wasn’t intuitive at all as to where the meat of the themes is. Please advise where to dig deeper here and I will try.
Thanks a bunch.
Forum: Fixing WordPress
In reply to: Need to turn off email notifications for new postsAny other ideas to adjust the new post email notifications to subscribers? I’m holding back on posting a new piece because I want to fix the settings prior to publishing.
Thanks in advance!
Forum: Fixing WordPress
In reply to: Need to turn off email notifications for new postsNote, I didn’t see any “Options” only “Settings”
Forum: Fixing WordPress
In reply to: Need to turn off email notifications for new postsThanks, but I went there just now and looked at all the options and none seemed to have anything to do with email notifications to subscribers. I need to control the emails sent when I create new posts.
Any other ideas that might help?
Just to confirm where I looked:
Settings>Discussion Settings.Forum: Fixing WordPress
In reply to: Need to Back-up prior to updating WP 3.5.1Thanks a bunch, turns out this blog is backed up manually from our host, so the back-up plugin wasn’t necessary after all. I do appreciate your help though.