Joe Hall
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Does WordPress work in China?Actually they have discontinued that services given legal elements.
Forum: Everything else WordPress
In reply to: Does WordPress work in China?kingchros, if a server in china meets the requirements in the link above then you should be able to run a WordPress installation just fine. However, I think you are asking if you will be able to access WordPress.com in china if that’s what you are asking then the answer is a little less reliable. This is because in the past the Chinese government, several ISPs and a few western companies have actively censored parts of the internet that the Chinese government doesn’t not allow with in its borders. WordPress.com has been one of the web sites that has been censored in the past. I am not sure if that censor still exist today or not.
Forum: Plugins
In reply to: [Plugin: Lightbox] Display problemTry changing the z-index to something like 50 or 25
#lightbox{ position: absolute; left: 0; width: 100%; z-index: 100; text-align: center; line-height: 0; bottom:30%;}Forum: Everything else WordPress
In reply to: wordpress image uploads on One.comWhats do you have your upload folder permissions set at? Make sure it is set to 7777. You can so this through your FTP client.
Forum: Themes and Templates
In reply to: Customising a category listingcodex.wordpress.org is going to be the best place to start looking into this. My gut feeling is that you are going to need a plugin to do some of the work. You might even be looking for a Custom Query option. http://codex.wordpress.org/Custom_Queries
I know you said that you were looking for something other than wordpress.org, but this is the best place to look.
Forum: Plugins
In reply to: [Plugin: Lightbox] Display problemShylaz, it works fine for me. However, I think from looking at your screen shot, that your problem exist from the fact that the image is to large. You might want to re size the originals to a height of 600px. 600 is the minimum screen height. Or you can try changing the following CSS code:
#lightbox img{ width: auto; height: auto;}Change the height varible:
#lightbox img{ width: auto; height: 95%;}Forum: Fixing WordPress
In reply to: Tab redirectWhats your URL?
Forum: Fixing WordPress
In reply to: Permalinks Problemwhy do you want to turn it off?
Forum: Fixing WordPress
In reply to: Auto-formatting quotesMoteb,
Can you send a link to an example of what you are talking about?
Joe
Forum: Plugins
In reply to: [Plugin: Lightbox] Display problemshylaz,
Can you send a link to the page where this is happening?
Joe
Forum: Fixing WordPress
In reply to: WP Database Error…Have I been hacked?Problem resolved….. Now i just to need to learn how to lock WP down!
Forum: Fixing WordPress
In reply to: WP Database Error…Have I been hacked?I just foud out that MySQL installation on my host’s machine is down for all users on my partition…. looks like I know the problem now!
Forum: Fixing WordPress
In reply to: WP Database Error…Have I been hacked?I just regained control of my cpanel… first thing i have done is taken a look at wp-config.php and everything looks in order. Still tryingto figure this out…
Forum: Fixing WordPress
In reply to: Automated Repeat Postingclnewbill,
I haven’t found anything for this yet, but at the same time I quit looking about 8 months ago! Eventually what I did was ask myself why I wanted to do this and then I came up with a better alternative. One reason that I would advise you to do the same, is because the there are a few issues involving duplicate postings that may interfere with your rankings in Google or other search engines. I am not sure if this matters to you, but it did to me, therefore I thought of something different.
Forum: Fixing WordPress
In reply to: How Do I Get The Category ID???So, just for clarification: Using the code above, $cat_id, can then be used in my switch statement as followed?
<?php if (is_category()) { global $wp_query; $cat_obj = $wp_query->get_queried_object(); $cat_id = $cat_obj->term_id; } switch ($cat_id) { case 1: header( 'Location: http://www.newsite.com/category1' ) ; break; case 2: header( 'Location: http://www.newsite.com/category2' ) ; break; default: header( 'Location: http://www.newsite.com' ) ; } ?>