Hax
Forum Replies Created
-
Forum: Plugins
In reply to: Plugin not showing up in search resultsI am getting the same issue when I search for my plugin by name is there any thing that I need to do so it shows on the search “Image Store”
Forum: Fixing WordPress
In reply to: Home Page Redirect Error – Please help. I am at my wits end.Forum: Fixing WordPress
In reply to: Nivo Slider and custom fieldsmmm… not sure, your code should work fine, try adding the post id to the get_post_custom_values() function like this
$value_feat_img = get_post_custom_values("Image", $post->ID );Forum: Fixing WordPress
In reply to: Centering Text around a Square Imageyes is posible with css and position:absolute. how much css do you know if not we may need a link to you page to see if we can write them for you.
Forum: Fixing WordPress
In reply to: Remove a Sidebarif the whole sidebar is control by widget you can enter a blank text widget into the sidebar and the whole sidebar should collapse. if not you have to go into your theme and remove manually.
Forum: Fixing WordPress
In reply to: Error Codeswhat version of wp were you running before updating to 3.0.1?
I looks like your theme is not compatible with wp 3.0.1 try other theme if not deactivate your plugins and active them one to see if is a plugin issue
Forum: Fixing WordPress
In reply to: permalink without https.config????Your are not getting any errors, are you?
Well…. you may have apache but your host may not have the rewrite module active. ask them if they have it installed and active you need this to use permalinks.
If they don’t there is really nothing that you can do but change hosting company.
Forum: Fixing WordPress
In reply to: Redirect Issue – Site Redirecting to PageTry deleting completely the page and to update your permalink structure. test another theme to see if it’s a theme problem or so disable your plugins and activate them one by one to see if one of them is causing the problem
Forum: Fixing WordPress
In reply to: Home Page Redirect Error – Please help. I am at my wits end.Well your problem is not workpress is your theme, unless you know php I will suggest to find a theme that actually works.
you can alway try to delete the line on to see if works but I don’t think it will. the error tells you what you have to delete. open the index.php file on your theme’s folder and delete/change line 7 on it.
good luck
Forum: Fixing WordPress
In reply to: Permalink Issues – Need advanced helpon your permalink you should be able to add something like this /%category%/%postname%.com but it will only show on pages and single post
Forum: Fixing WordPress
In reply to: What's the best plan of attack on these sidebar items?it is possible but I don’t think that there is a plug in that you can use, you have to create your own or code it into your theme’s function.php file
Not sure how much php do you know but here is a link that can help you create the box that you want and widgets
http://codex.wordpress.org/Function_Reference/add_meta_box
http://codex.wordpress.org/Widgets_APIForum: Fixing WordPress
In reply to: Absolutely minimal?First, to center your background images you add
background-position: center top;the first value controls your horizontal alignment and the second one controls your vertical alignment.second you can’t control the image height and width on background images you have to size your image at the exact size that you want them to be.
To align your text try
div.post div.entry-content { text-align: center!important }and make sure that you don’t add any alignment to the content when you create posts through the wp adminhope this helps
Forum: Fixing WordPress
In reply to: 500 nternal errorcan you provided the code that your adding to your .htaccess file
Forum: Fixing WordPress
In reply to: Permalink Issues – Need advanced help2 ) to remove the category base you can use this plugin http://wordpress.org/extend/plugins/wp-no-category-base/
unless you know php and rewrites and you want to so your own rewrites here is a page that will help you do that http://codex.wordpress.org/Function_Reference/WP_Rewrite
1 ) for the categories and subcategories the only thing that you can do is not have subcategories or again try to do you own rewrites.
3) what exactly you want to do with periods? because you can do something like this on yourr permalinks /%category%/%postname%.html
I don’t recommend hacking wordpress core files if you want to update later on.
Forum: Fixing WordPress
In reply to: How to Add Hyperlinks Within a Comment?you should be able to just copy and pate the link in the comment box unless the administrator has restrictions on hyperlinks or you do it like this
<a href="http://the-link-here-no-spaces-between-the-quotes">your text to show as a hyperlink</a>