tylerfugazzie
Forum Replies Created
-
Thanks Andrew. That’s what I’m going to do!
- This reply was modified 8 years, 5 months ago by tylerfugazzie.
When I tried installing a Child Theme, I wasn’t able to make any edits. Even if this method isn’t recommended, will it still prevent changes with updates? I’ll look into the plugin, thanks!
Forum: Fixing WordPress
In reply to: Preventing Spam Bots from Using Search Bar?I have this installed but it doesn’t appear to be working as I’m still getting these spam search queries
Forum: Networking WordPress
In reply to: Google Analytics on a Subsite?The tracking code is on the main site site.org. I thought this would cover a URL that is site.org/subsite so I didn’t generate a specific tracking code for the subsite.
Forum: Fixing WordPress
In reply to: My site has disappeared!Who do you host with? Have you made any theme changes or plugin updates or database changes recently?
Forum: Fixing WordPress
In reply to: CSS ProblemIt looks like you resolved the spacing issue but I would do:
p { font-size: 16px; line-height: 110%; font-family: Palatino; text-align: justify; text-indent: 10px; margin: 0; }instead of having two separately defined p elements.
Forum: Fixing WordPress
In reply to: Can't access admin pageHere’s how to access phpMyAdmin on Dreamhost (with finding your user credentials):
- Login to Dreamhost
- Go to Goodies > MySQL Databases
- Scroll down to the Database(s) on this server section
- Click the link of your website within Users with Access
- Scroll down to find your username and show your password
- Go back to the MySQL Databases page and click on the link under Web Administration that says phpMyAdmin and you’ll be brought to the login page
Then follow the Resetting Your Password link provided by songdogtech.
Forum: Fixing WordPress
In reply to: fix Follow buttonWhoops! I was writing my response before I saw your follow up!
Forum: Fixing WordPress
In reply to: fix Follow buttonInstall the Jetpack plugin which gives you the ability to add this follow blog/subscribe element along with a number of other wordpress.com features.
Forum: Fixing WordPress
In reply to: Songkick Embed Code won't workPost a link to your site and the embed code you’re trying to use.
Forum: Fixing WordPress
In reply to: Custom Links doesn't have option to open in new Tab- Go to Dashboard > Appearance > Menus
- At the top-right corner of the Menus page, click on the Screen Options dropdown
- On the bottom row of options (Show advanced menu properties), select Link Target
- Scroll to your Custom Link item within the Menu Structure, and open where you make edits to the URL and Navigation Label
- Select Open link in a new window/tab
Forum: Fixing WordPress
In reply to: Make pages for postsAre you looking to achieve something like this: http://www.tylerfugazzie.com/notes/, where you have a single page displaying a feed of all your posts?
Use the Archivist plugin. There are a number of different configurations that allows you to organize by date, recent posts, tags, categories, and more.
The code is very simple on the page I linked to and looks like this –
[archivist category="note"]Forum: Fixing WordPress
In reply to: How do I align my featured images?Happy to help. Please mark the thread as resolved and good luck with your site 🙂
Forum: Fixing WordPress
In reply to: How do I align my featured images?Ok, after
display: block;add
margin: 1em auto;so that you end up with:
.entry-thumbnail img { display: block; margin: 1em auto; }Forum: Fixing WordPress
In reply to: How do I align my featured images?You can navigate to your styles.css file through your themes editor right? Go in there and CTRL or CMD-F for .entry-thumbnail img and let me know you find it.