Hax
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: "Page # of #"-like Pagination.what is the reason that you can’t use a plugin? you can all ways copy the code on the plugin and adde it to your function.php file
Forum: Fixing WordPress
In reply to: Text goes outside of templateAdd this to your style.css file this will help but is not sopported by all browsers and you may have to do additional tweaks to your styles
div#spotlight { width: 800px!important } .slide, .postcontent { word-break: break-all;}Forum: Fixing WordPress
In reply to: Need help — flag/report inappropriate comments.I don’t think this plugin does everything that you need but it will be a good start
http://tierra-innovation.com/wordpress-cms/plugins/report-comments/
Forum: Fixing WordPress
In reply to: wp_nav_menu: not returning current-menu-item on my archive menu linkdo you now php? because if you do you can add the folowing filter to your functions.php file inside your theme’s folder
add_filter ( 'wp_nav_menu_items', 'add_more_links_to nav' ); function add_more_links_to nav ( $items ){ $items .= '<li class="menu-class"><a href="link-here">archives</a></li>' ; return $items; }Forum: Fixing WordPress
In reply to: Fatal error: Cannot redeclare wp_unregister_globals()you may have a problem with a plugin or your theme, try a different theme and try installing one plugin at the time.
Forum: Fixing WordPress
In reply to: Custom Fields not working in 3.0mmmm this is bad. not sure what could be causing your problem have you try using any of the other custom field functions
get_post_custom
get_post_custom_keys
get_post_custom_values
get_post_metaForum: Networking WordPress
In reply to: Network Site – Subdomain Subdirectoryif you are using WP 3.0 you set you only have to use the multi site feature. I have not use this feature yet but this might help
http://wptheming.com/2010/03/wordpress-3-0-enable-network/
http://codex.wordpress.org/Tools_Network_SubPanel
http://wpengineer.com/wordpress-3-multisite-settings/Forum: Fixing WordPress
In reply to: Built-in plugin updater not working properly.open a ticket with WP http://core.trac.wordpress.org/ but before you do make sure that nobody has already done so.
instructions on how to do it.
Forum: Fixing WordPress
In reply to: Custom Fields not working in 3.0mmmm hard to tell.
Try it on a different theme, if that doesn’t work try uninstalling your plugins. to see it is a plugin issue.
try using this to see if you get any output
print_r( get_post_meta($post->ID, "splashpageimage1"))Check that you do have a value for $post->ID doing
echo $post->IDif that does’t work make your that your spelling is exact on “plashpageimage1” upper, lower case, spaces, dash etc.Forum: Fixing WordPress
In reply to: links to full story do not workit may be a theme issue, try changing the theme to the default to check if it does the same thing. if not we may need a link to your site to look around.
Forum: Fixing WordPress
In reply to: name of database field(s) for user Roles/permissions?They are under $prefix_options table with the option name $prefix_user_roles and the role is assign via user_metadata
Forum: Fixing WordPress
In reply to: Increasing Max upload sizeThe max file upload in not really a wordpress thing.
Is like you said a php or server issue if you already changed your php.init file and your .htaccess file you may have to get in contact with your hosting provider and ask them about the max upload limit.
Forum: Fixing WordPress
In reply to: WordPress 3.0 removing div’s from contentmmmm. the only thing that I can think of is to use going back to a revision if you have your revision on. before you do anything backup your database .
other thing is if you have a backup or your database just do a restore to see if that gets your divs back.
Forum: Fixing WordPress
In reply to: Built-in plugin updater not working properly.yeah!! I had the same problem. it look like there is a problem with the updater. just update your plugins through FTP.
Forum: Fixing WordPress
In reply to: Link is opening in new window – and I don’t want it toa link to your site could help us to look aroun.
But it looks like a javascript issue because your links don’t have the target=”_blank” attribute specify. test it tuning off javascript on your browser.
other thing may be your browser settings. test it in different browsers.