olavxxx
Forum Replies Created
-
Forum: Your WordPress
In reply to: Website about local history in Bergen, NorwayToday I also made an image-sitemap feed, for digestion by search engines.
It feeds all image attachments used in posts, with geolocation (where availible in the article).
Forum: Themes and Templates
In reply to: Uploading themeHi, I think it’s a permission (chmod) issue. (might be wrong though).
Try to unpack the theme on your PC and FTP it up on the server.Forum: Themes and Templates
In reply to: themes with musicDet var ikke lett ? forst? hva du sier, nei!
Forum: Fixing WordPress
In reply to: Our Newspapers site was appently hacked?check to see if you are using timthumb or any other script like it.. or maybe some unsafe plugins, also check chmod of folders, files, etc.
Forum: Your WordPress
In reply to: Which domain do you think is best?Hi,
I would keep your current domain.
You dont really need a subdomain, as you can use a subfolder.I dont really like any of your 3 domain suggestions, as I feel they are all very hard to remember. Especially the 1) which ends in two 2*s ??
The 2) it might be hard to “remember” the e in the beginning.
3) is the best of the pack I reckon, though: why go through the hassle with one more domain?I dont see any reasons you should do so.. You wont be able to “surf” on the pagerank of your current domain, if you choose to do so. Also you will have yet another thing to administrate.
If you are unable to set up a subdomain, I guess you can ask your hosting provider for help. You might also loose some PR using subdomains, though google now treats it more like the same as it does with subfolders. (there is some logic behind it, though I have barely read about the subject, subdomains vs. subfolders (SEO)). In the past, each subdomain had it’s own pagerank, though now google and most likely others will try to analyze if it’s a seperate thing or a seperate function of the same thing.
Google uses subdomains too, though only for completely different “functions”.
Forum: Themes and Templates
In reply to: Image sizeHave you defined the width of the images under settings->media?
You might have to rebuild new sizes, if so, I have used AJAX Thumbnail Rebuild with great success. (it doesent hammer your server)
Forum: Themes and Templates
In reply to: text in footerIt’s not in that file.
Ps. you should remove that code from this thread (not relevant and very long).If you cant find it, just style it away in your css:
.credits { display: none !important; }
btw. Please check with the theme creator that you are actually allowed to remove the credits.
Forum: Themes and Templates
In reply to: Why is my custom sidebar not showing up?Would it be possible to view your website live? (to look at the source parsed)
Forum: Themes and Templates
In reply to: Different design for pages than blog – "Turn off right column?"Hi, you can register new stylesheets for those pages.
Look at this:
https://codex.www.ads-software.com/Function_Reference/wp_enqueue_styleYou hook and register/enque the stylesheet.
Then in your new sheet you can define !important styles that override the others..#sidebar { display:none; } #content { width: 100% !important; }
You will need some logic to choose which pages to style, you can use regular template functions like: https://codex.www.ads-software.com/Function_Reference/is_single , etc.
Forum: Themes and Templates
In reply to: text in footerLook in your functions.php, most likely there is a hook like this:
add_action(‘wp_footer’….Forum: Themes and Templates
In reply to: Thumbnails distorted after switching default size to 180 x 180I have used AJAX Thumbnail Rebuild with great success.
It’s very good on sites where you have existing content, so you dont hammer the server.Ps. if it looks ugly, the thumbs may have styling on them, so it gets sized in the browser? (width and height in the css or in html).
Forum: Themes and Templates
In reply to: Timed RedirectHere you can read a lot about redirection issues:
https://en.wikipedia.org/wiki/URL_redirectionBe aware that if you do a lot of redirection, google may penalize you.
If your site has moved, you should redirect with 301 permanently moved.If redirecting after showing content, I would hook on the get_header .
function redirectMe( ) { } add_action('get_header', 'redirectMe');
You would need to inject the <meta refresh… /> within the <head></head>. If you wish different redirects, you can inside that function parse out your custom fields, inside the meta refresh.
Forum: Themes and Templates
In reply to: Adjusting magins for the default page template.singular #content, .left-sidebar.singular #content { margin: 0 7.6%; position: relative; width: auto; }
It’s in style.css line 104.
Override or remove the margin.Forum: Themes and Templates
In reply to: Changing Header on Specific PagesMost likely you can find plugins that do this, or you can write your own smart plugin.
Plugin development requires some skill and some time, but your task is not very complex. You could override it by enquing new stylesheets for the pages you define.
If you do make this, I’d also make an admin panel where you can specify which sheet for which page/post.
If your not that technical, you can simply look for a plugin.
Ps. the override stylesheet overrides the picture with !ImportantFor such small changes, I would not replace the main sheet.. though if you were to expand with a mobile edition with all definitions new, registerring and deregisterring sheets might be a good way to go.
Forum: Themes and Templates
In reply to: Changing text in a sidebarYou can make a smart widget that checks which post you are viewing, if any. And then tries to retrieve stats.