Kye
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can't View PagesWhilst researching this as well as noting permissions and ownership to an issue there is also this:
http://httpd.apache.org/docs/2.0/howto/ssi.html#config
Your host should be able to assist further.
Take care.
Forum: Fixing WordPress
In reply to: Can't View PagesDid you check the file/folder ownership on your set up to ensure the right account owns them.
Please consult with your host and ask them to take a peek, let me know what they say.
Take care.
Forum: Themes and Templates
In reply to: wp loginHey there,
You would pop that into a hook and then into your functions.php file of the theme or a mini plugin which you’d have to make.
I just took another look and it seems there is a plugin doing this:
https://ww.wp.xz.cn/plugins/private-only/
Take care.
Forum: Themes and Templates
In reply to: Mobile Theme*EDIT Scratch that.
I think that was me. Just looking again 🙂
Can you share the code in your single.php use:
Cheers.
Forum: Themes and Templates
In reply to: wp loginHey there.
Then rather than redirecting you could just just create a login page for the front of your site:
http://codex.ww.wp.xz.cn/Function_Reference/wp_login_form
Or use a plugin:
http://ww.wp.xz.cn/plugins/search.php?q=login+form
WordPress Multisite wouldn’t let people edit other peoples websites. They would need to be an admin first. If you don’t want to give them a whole website in a network install then maybe consider something like BuddyPress:
Hope this helps.
Take care.
Forum: Themes and Templates
In reply to: wp loginHey there,
So you want to redirect all logged out users to that page?
You don’t want them to be able read the content if logged out?
Not sure that’s a good thing to do, but if that’s what you need then maybe something like:
if ( !is_user_logged_in() ) { wp_redirect( home_url() . '/wp-login.php'); exit; }You could hook that into the page:
http://codex.ww.wp.xz.cn/Function_Reference/add_action#Simple_Hook
http://codex.ww.wp.xz.cn/Plugin_API/Action_ReferenceYou may also find a plugin here that helps:
https://ww.wp.xz.cn/plugins/tags/redirect
Hopefully that should get you in the right direction. Let me know how you go.
Forum: Themes and Templates
In reply to: Mobile ThemeHey there,
Looks like you’re all fixed up when I just took a look, I see your articles are on top. 🙂
Take care.
Forum: Themes and Templates
In reply to: [Hueman] header imageHey there,
You mentioned you know CSS, why not just do it through that then?
Something like this:
#header .container{ background-image: url(URL-TO-IMAGE); background-repeat: no-repeat; }Or you could do something like this:
.site-description:after { content:url(URL-TO-IMAGE); margin-left:30px }That places an image after the description for example.
In both cases replace URL-TO-IMAGE with your full image url.
If for some reason you still want to edit the PHP then look in header.php for where you want to place it.
Hope this helps 🙂
Forum: Themes and Templates
In reply to: [Theme: Hueman] Change color of social icons on sidebarHey again,
This would imply that the original CSS was either not called last in the load order, or there is another !important somewhere that ruled it.
Basically the !important takes it out of the natural order of CSS and gives it priority, it’s this which can be issue later if you add more CSS to override again but only if you need to make another change or debug, that said you could just edit the one you personally added now so it shouldn’t hurt you really. 🙂
Glad I could help 🙂
Forum: Themes and Templates
In reply to: [Clean Black] changing the width of the central part of the postAwesome, glad I could help 🙂
Forum: Installing WordPress
In reply to: How to remove grey from header backgroundHey there,
Unfortunately we’re not allowed to help here with commercial stuff, sorry. This is due to the forum rules that you can review here:
http://codex.ww.wp.xz.cn/Forum_Welcome#Commercial_Products
The footer:
.et-social-icons { float: none; margin: 0 auto; width: 200px; }That removes the float, the width sets the size and then the margin can be auto so it’s in the middle.
I’m sorry but I wasn’t sure what you needed with your other question.
Hope this helps to at least get you part of the way 🙂
Take care.
Forum: Fixing WordPress
In reply to: Can't View PagesHey there,
The front page, looks like you just have an index.html page:
http://tableauxvivantsdesign.com/index.html
For [an error occurred while processing this directive] can you first go check all the file (644) and folder (755) permissions?
Have a great day!
Forum: Themes and Templates
In reply to: [Clean Black] changing the width of the central part of the postHey there,
You could use some CSS like this:
#homepage { width: 72%; } #sidebar { width: 22%; }There is a chance that the theme has a CSS field in the options, if not then you can make a child theme:
http://codex.ww.wp.xz.cn/Child_Themes
http://premium.wpmudev.org/blog/create-wordpress-child-theme/Or you can instead use a plugin if you like:
http://ww.wp.xz.cn/plugins/custom-css-manager-plugin/screenshots/
http://ww.wp.xz.cn/plugins/my-custom-css/screenshots/
http://ww.wp.xz.cn/plugins/pc-custom-css/
http://ww.wp.xz.cn/plugins/imporved-simpler-css/screenshots/
Have a fantastic day! 🙂
Forum: Themes and Templates
In reply to: Show post titles onlyHey there.
The way CSS works is that that the last style called takes precedence, unless !important is used but that’s something else.
The editor is just an interface to edit through.
I’m guessing that for some reason where you add the CSS it is earlier in the load process and thus some other rule is taking control. I wonder if you’ve looked through either of the following:
You can add the CSS to your themes stylesheet.
If the theme is not one you made, then you may wish to use a child theme for this additional CSS. That way you’re protected when you come to upgrade.
http://codex.ww.wp.xz.cn/Child_Themes
http://premium.wpmudev.org/blog/create-wordpress-child-theme/Take care!
Forum: Themes and Templates
In reply to: Mobile ThemeHey there,
You could edit the template within your child theme and change the order for your #primary div so it is above the #secondary one.
Or you might be able to tackle this with JS.
Is editing in the child theme an option 🙂
Take care.