David_G
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Youtube Embed Not Working ProperlyRead the documentation carefully with the plugin, you can set the size as well as other things.
Forum: Fixing WordPress
In reply to: Remove textHere is the snippet you need for your style.css, I don’t suggest editing your theme files, You can setup a child-theme or for minor style edits you can use a plugin like:
http://wordpress.org/plugins/simple-custom-css/#footer { display: none; }Forum: Fixing WordPress
In reply to: Disable User Registration from WordPress 4.0Also take a look in your WP settings for new users.
Forum: Fixing WordPress
In reply to: Disable User Registration from WordPress 4.0Suggest going to their support.
http://wordpress.org/support/plugin/woocommerceForum: Fixing WordPress
In reply to: Disable User Registration from WordPress 4.0What plugin are you using for the shopping cart. Look at the settings there.
Forum: Fixing WordPress
In reply to: Removing next and previous links from posts 2015 themeThis should help, good video tutorial series on firebug.
Forum: Fixing WordPress
In reply to: Removing next and previous links from posts 2015 themeAlso, play around with firebug, once you master it, it is a great tool for css editing. Watch the videos on it.
Q
Forum: Fixing WordPress
In reply to: Removing next and previous links from posts 2015 themeAny future css edits you want to make, do it there. They won’t be affected by theme updates. The functions.php snippet I gave you was failing on my test site. I use a different theme in which that works perfectly. But if you are only going to do style edits, then you don’t need it. That can be a new topic if you need a functions file.
Happy to be of assistance.
Please mark this resolved if there is nothing more.
Forum: Fixing WordPress
In reply to: Removing next and previous links from posts 2015 themeIf you placed it in the folder /wp-content/themes/twentyfifteen-child
yesForum: Fixing WordPress
In reply to: Removing next and previous links from posts 2015 themeOnce your child-theme is active, you can use the editor in your APPEARENCE menu to edit the stylesheet on your child-theme. That will be the stylesheet that you just created.
Forum: Fixing WordPress
In reply to: Removing next and previous links from posts 2015 themecreate the style.css file on your computer and yes you can use your cpanel file manager to create the child theme folder and upload the style.css file to that. forget about the functions.php for now. Just upload the style.css file with the snippet I gave you. So your style.css file will have the following: Don’t make a functions.php file right now.
/* Theme Name: Twentyfifteen-Child Version: 1.0 Description: A child theme of TwentyFifteen Template: twentyfifteen */ @import url("../twentyfifteen/style.css"); .post-navigation a { display: none; }Forum: Fixing WordPress
In reply to: Removing next and previous links from posts 2015 themeNOTE that I edited the last code snippet.
If you get an error on php, then delete the functions.php file, you don’t need it for style edits.
Forum: Fixing WordPress
In reply to: Removing next and previous links from posts 2015 themeTo make a child theme for 20-15 you need to create a folder in your “wp-content/themes” folder called “twentyfifteen-child” then create a “style.css” file with the following snippet in it.
/* Theme Name: Twentyfifteen-Child Version: 1.0 Description: A child theme of TwentyFifteen Template: twentyfifteen */ @import url("../twentyfifteen/style.css");Place the file in your child theme folder, go to APPEARANCE in your dashboard and activate the child theme. It’s that easy. I did switch one of my sites to 20-15 and tested this, it works.
Forum: Fixing WordPress
In reply to: Removing next and previous links from posts 2015 themeTry this in your style.css I do believe that it will work. I don’t have 20-15 on any of my sites. You can add this to your style sheet directly but remember that when you update the theme, you will have to add it again.
DASHBOARD -> APPEARANCE -> EDITOR -> make sure you edit/add to the stylesheet NOT functions.php..post-navigation a { display: none; }Forum: Fixing WordPress
In reply to: banner across an imageThe PRO version of Meta-slider plugin should do what you want. Take a look at that. Will still take some coding to put it where you want, depending on your theme.