Constantinos Kouloumbris
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: ADD /SUBFOLDER/ Before Urls.Hi,
There are a few redirection plugins that can help
Hope this works out.
ConstantinosForum: Fixing WordPress
In reply to: My URL is the only way to show my websiteHi,
Moving the folders is fine for the files but there are references of where everything is in the database so if you do any changes in the folder structure you also need to update you database.
A good plugin for doing that is WP Migrate DB but you need access to your database to re upload the file.
I also found Better Search Replace but I haven’t tried this so not sure how well it works.
Having a quick look at your site I do see that you need to replace
- //www.hotelspa.nl/wordpress with //www.hotelspa.nl
- //www_hotelspa_nl.017.bho.nu/wordpress with //www.hotelspa.nl
Hope this works out.
ConstantinosForum: Plugins
In reply to: [Plugin: Developer Formatter] Not workingIt looks like that the plugin needs more testing under wp2.7.
- Visual Editor is broken
- Having more than 1 small code block you get a script not responding error from your browser.
This is what I have noticed so far.
Unfortunately it’s been a long time since I’ve used wp’s API and it has changed critically.
I will have a look into it as soon as I find some time, but lets hope the developer can address this issues quickly.
Constantinos
Forum: Fixing WordPress
In reply to: Weblog not showing anything…Subspect mysql problemHi,
Backup done already (was first thing) then was the email to the host and then here.
I am using the latest one 1.5.2
Thanks.
Forum: Plugins
In reply to: Remove Meta Data listing from while editing postLets say you have a custom field called img. What I am asking is that if there is a way for a plugin to hide that custom field from being displayed while you edit a post that it’s is already set to a value.
I was looking into something like add_filter
Forum: Plugins
In reply to: Image2PostIt basically adds this code into the post but when you want to edit the post thinks are much more cleaner.
<div class='leftbox'><img src='path to image in your wp-images folder' /></div>You can see a demo at my site, because thats what I use to show images into posts.
Forum: Themes and Templates
In reply to: Random element in CSSWhy don’t you do what I did.
Create the images you want like a series. ie. header01.jpg, header02.jpg etc and then add your css code into your header template.
#header { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/head0<?php echo rand(1, 7); ?>.jpg") no-repeat bottom center; }
And you are done. the php rand(1, 7); function will create a random number between 1 and 7 inclusive.
Problem solved simple and easy.CK