David_G
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to deleting Admin with no delete optionIs your account currently set for admin? It might have been changed by your coder. Also is this a multisite WP install? If so your coder might have “super-admin” rights.
Forum: Fixing WordPress
In reply to: How to deleting Admin with no delete optionAre you logged in at admin level yourself. If nothing else you can change his access rights lower.
Forum: Fixing WordPress
In reply to: struggling with access to forum and setting up my siteYou could try Customizr theme, I have several sites with totally different layouts including portfolios. Their support is awesome and it’s free. They do have a commercial version also.
Forum: Fixing WordPress
In reply to: Appreciate help with a Table/Spreadsheet ProjectMake the items in the tables linkable to the document you want to show.
Forum: Fixing WordPress
In reply to: woo-commerce order receipt helpSuggest going to woocommerce’s support.
Forum: Fixing WordPress
In reply to: Can I edit files without the editor?You can run a child theme on you local machine just as you can online. Can’t answer anything about 20-12, never used it.
Forum: Fixing WordPress
In reply to: Can I edit files without the editor?The best way to make changes like this to a theme is to use a child theme, so your tweaks won’t be overwritten when updating the theme. Here are some guides in case you haven’t made one before:
https://codex.wordpress.org/Child_Themes
http://op111.net/53/
http://vimeo.com/39023468You should also check this out for customizing your site.
http://themesandco.com/snippet/firebug-best-spent-6-minutes/
http://getfirebug.comThen to edit this editor is fantastic. You can edit multiple files at the same time. This is a windows program.
http://notepad-plus-plus.org/Forum: Fixing WordPress
In reply to: Help Removing menu from a single page in Genesis Child themeThis will work.
.postid-3454 #header .menu { display: none; }If your using Customizr, then click on the help button on the top right of your dashboard, it will take you to the customizr support forum and other customizr stuff like code snippets. Those guys there know their theme better than anyone and are great help. Give it a try.
Forum: Fixing WordPress
In reply to: Visible Code on CommentsThe best way to make changes like this to a theme is to use a child theme, so your tweaks won’t be overwritten when updating the theme. Here are some guides in case you haven’t made one before:
https://codex.wordpress.org/Child_Themes
http://op111.net/53/
Forum: Fixing WordPress
In reply to: Visible Code on CommentsThis should work for you. Add to your style.css
#respond .form-allowed-tags { display: none; }Forum: Fixing WordPress
In reply to: Help Removing menu from a single page in Genesis Child themeGo to your editor for that post and click on “GET A SHORTLINK” what does it say?
Forum: Fixing WordPress
In reply to: Help Removing menu from a single page in Genesis Child themeTry this
#postid-3454 #header .menu { display: none; }Forum: Fixing WordPress
In reply to: Help Removing menu from a single page in Genesis Child themeI just edited the snippet.
Forum: Fixing WordPress
In reply to: Help Removing menu from a single page in Genesis Child themeTry this in your css, I know the first 2 selectors are correct, the post part I am not certain, someone correct it if I am doing it wrong. It’s been awhile since I added css to a single page/post.
#header .menu postid-3454 { display: none; }