Kye
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can't Switch Theme to IllustratrHey again.
When trying to view your screenshots I get a 404, nothing there.
If it’s a single site then it should show, what happens when you go through the theme admin to install Illustratr again?
Cheers.
Forum: Fixing WordPress
In reply to: Is there a way to repair a database?Hey there,
I just wanted to double check here, home is where the WordPress files are, and siteurl is where the WordPress site is.
You have these correct and you’re not just using the base domain.com?
Just wanted to be sure.
Take care.
Forum: Fixing WordPress
In reply to: Is there a way to repair a database?Hey again.
If you’re sure the htaccess and wp-config are fine then a couple more things to check:
1. Rename your plugins folder and try loading the front of your site. This tests for any conflicts/influences from plugins.
2. You could check the database to ensure the correct url is used, you can add these to your themes functions.php:update_option('siteurl','http://example.com'); update_option('home','http://example.com');As per the instructions here:
http://codex.ww.wp.xz.cn/Changing_The_Site_URL#Edit_functions.php
You need to ensure they point to your site/files.
Take care.
Forum: Fixing WordPress
In reply to: 403 ERRORHey there,
So this only happens on a specific page and specific post?
What’s different between those and other pages and posts that work fine?
Perhaps some plugin?
If that’s the case then you could test by disabling all your plugins and loading the page or post again.
403 is the server denying access for some reason, you could check your htaccess to ensure it matches something like:
http://codex.ww.wp.xz.cn/htaccess
Some plugins might alter the htaccess just wanted to mention that so you know. Plugins like cache ones might.
Take care.
Forum: Fixing WordPress
In reply to: Can't Switch Theme to IllustratrHey there,
Is this a multisite or a single site?
If it’s multisite you need to network activate the theme before it appears on sub sites.
Do you have some screenshots to show the differences?
Let me know.
Take care.
Forum: Fixing WordPress
In reply to: Is there a way to repair a database?Hey there,
What do you mean by it’s causing a loop is this the whole site? When logging in? Something else?
You could check your htaccess to make sure it matches the relevant version:
http://codex.ww.wp.xz.cn/htaccess
And also your wp-config, you can find a cool tool here:
http://generatewp.com/wp-config/
I’d start there before messing with the database, after that I’d check the site and home url in the DB.
Take care.
Forum: Installing WordPress
In reply to: Error 404 when logging in – first loginHey there,
You mentioned that the site is installed here:
http://www.greenlineag.co.nz/wp/
But then when you try to access the site you’re going to:
http://www.greenlineag.co.nz/wp-admin/
If that’s the case then you’re missing the folder /wp/ in the URL, for wp-admin you need this:
http://www.greenlineag.co.nz/wp/wp-admin/
Which when not logged in will send you here:
http://www.greenlineag.co.nz/wp/wp-login.php
Is there a reason you wanted it in a subfolder, personally if it were me I’d pop it in the root of the domain.
Hope this helps.
Take care.
Forum: Themes and Templates
In reply to: [Flat] Videos are cut offI can’t inspect the elements or look at the code used with a screenshot, hard to know for sure.
You’ll need to do as Andrew suggested and considering hiring someone. Sorry.
Once it is public and we can see then please feel free to share that link.
Take care.
Forum: Themes and Templates
In reply to: [Flat] Videos are cut offHey there,
Unfortunately as per the forum rules we’re to keep support here and not email:
http://codex.ww.wp.xz.cn/Forum_Welcome#The_Bad_Stuff
Not sure what the moderators would say if you sent credentials privately. Sorry.
Take care.
Forum: Themes and Templates
In reply to: [Make] Logo and Site Tittle in lineCan you share a link so I can see what’s occurring?
Cheers.
Forum: Fixing WordPress
In reply to: wordpress 4.0So it is, proves my point about posting English here as I know neither, advice still stands albeit a different site . 😉
Maybe you could have been kind enough to also share a link to the relevant support site whilst also pointing out my error that could have been more helpful 😉
Cheers.
Forum: Themes and Templates
In reply to: Removing line code from templateHey there,
My question does not relate to a specific commercial theme.
But you originally said:
I'm trying edit a theme I purchased and the developer told me to remove line 186-191If it’s a case of just removing that and you know where it is then as felixreddy mentioned, you can delete it, or if you wish to keep it you can comment it out. For larger blocks of code you can comment like this:
/* CODE BETWEEN */Or singular lines at a time:
// CODE# CODEYou can also use these for commenting in code too.
Take care.
Forum: Fixing WordPress
In reply to: wordpress 4.0Hey there,
So you upgraded to 4.0 and then couldn’t do anything?
I’m not sure by what you mean with you needing a 4.0 manual, for what exactly?
If you can describe the issues you have then perhaps we can help.
Please note that posting in German may limit the amount of support you receive from the community. Best to use English in these forums, you could also look at:
Take care.
Forum: Fixing WordPress
In reply to: Style sheet is not loading propertlyHey there,
If you have no backup and you’ve updated the theme then those CSS changes will have been lost.
You should either use a Child Theme or a CSS plugin like:
http://ww.wp.xz.cn/plugins/imporved-simpler-css/screenshots/
Some themes actually have a CSS field so it’s always worth checking first.
Have a fantastic day! 🙂
Forum: Themes and Templates
In reply to: [Dazzling] How to add a border for Home Widget on static page?Hey there,
So for the home page only?
You want a border around all the widgets?
If so this should do it:
.home .widget{border: 2px solid #000;}You can change the border size, style and colour. For a list of hex codes:
You may also like to add in some padding so that the content (title) is not butt up against the border, something like this instead:
.home .widget{border: 2px solid #000; padding: 10px;}If this wasn’t what you referred to then please provide further clarification, maybe even a screenshot point out exactly what’s needed. 🙂
Hope this helps, take care.