jkovis
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Add drop down listThis sounds like it’s unrelated to WordPress; have you tried contacting 1shoppingcart?
Forum: Fixing WordPress
In reply to: Exclude category from loop problemsHave you tried printing out $wp_query to see what query parameters WordPress is using?
Add something like the following to your code, save, and then view source.
<?php query_posts ($query_string.'&cat=-19&orderby=date&order=DESC'); ?> <!-- wp_query = <?php print_r($wp_query); ?> -->Forum: Fixing WordPress
In reply to: Appearance editor disappearingIs the site part of a network WordPress installation?
If it’s a single WordPress installation, can you verify that your account role (wp-admin/users.php) is set to “Administrator?”
Forum: Fixing WordPress
In reply to: do sticky posts include images?I want my sticky post to include the image from the post— how are you adding the image to the post? From the post editor, featured image, custom field, or something else?
Forum: Fixing WordPress
In reply to: Dashboard Will Not Loadyou can rename wp-content/plugins folder to e.g. wp-content/plugins-x via FTP or cPanelForum: Fixing WordPress
In reply to: Site not showing after change in settingsTo fix this you will need to access the WordPress options table (probably called wp_options) of your site’s MySQL database. Many hosts let you do this via phpMyAdmin.
Once you have access you will need to change the “siteurl” and “home” records to the previous working URL. Make sure you don’t include a trailing slash (
http://example.comNOThttp://example.com/).That should restore the site to the previous URL. To then move the site you can follow http://codex.wordpress.org/Moving_WordPress
Forum: Fixing WordPress
In reply to: problem with link to custom posthmm…I copied your
post_type_homepage_posts()function into a theme of mine and the permalinkexample.com/homepage/testing/(testing was the post name) worked fine for me.A few more questions:
When I hover over the read more link, I can see the homepage slug in there.– can you post a link to this page on your site?
Then I used a custom loop to query the homepage post type– can you post this code?
What permalink appears on the edit post/custom post type page? Does it match the link that appears on the frontend?
What are your permalinks settings (/wp-admin/options-permalink.php) set to? Something like
/%year%/%monthnum%/%postname%/or something else? Have you tired re-saving the permalink structure to flush all rewrite rules?Forum: Fixing WordPress
In reply to: problem with link to custom postI have created a custom post type that works fine— it sounds like the rewrite didn’t get set correctly…how did you create the custom post type?
Forum: Fixing WordPress
In reply to: Upgrading wordpress fix mistakes in SEO code?Will up grading fix those mistakes— it’s always best to upgrade with each new version of WordPress, but from my quick look these problems are caused by entries you made in your (Thesis) theme. Look in the ‘Open Hooks’ pages of the theme options.
Forum: Fixing WordPress
In reply to: [Tools for Twitter] [Plugin: Twitter Tools] Fatal Error@muldari – Twitter Tools requires PHP5 (http://wphelpcenter.com/plugins/twitter-tools/#faq_e5d2c21606de1fe86a1b2b94eb09894f)
Forum: Plugins
In reply to: [Wickett Twitter Widget] [Plugin: Wickett Twitter Widget] Parse erroryou can resolve the error by editing wickett-twitter-widget.php and changing:
function _wpcom_widget_twitter_username( array $matches ) {and
function _wpcom_widget_twitter_hashtag( array $matches ) {to:
function _wpcom_widget_twitter_username( $matches ) {and
function _wpcom_widget_twitter_hashtag( $matches ) {I don’t use the plugin so I am not sure how this affects it’s functionality, but it will definitely resolve the error.
Forum: Fixing WordPress
In reply to: Add default image PHP – TMA themeLooking through their code, it appears that they let you define a default thumbnail somewhere in the theme options page.
Regardless, you can try adding something like this:
<?php $woo_image = woo_image('return=1&width=470&height=210'); if( !is_empty($woo_image) { echo $woo_image; } else { echo get_bloginfo('template_directory').'/images/default-thumbnal.jpg'; } ?>where ‘/images/default-thumbnal.jpg’ is the path within your theme to the default image.
Forum: Fixing WordPress
In reply to: How plugings are parsed?have you tried adding a conditionals like:
if( is_admin() ) { // run some admin only plugin code here }or
if( get_post_type() == 'book' ) { // run some 'book' post type code here }Forum: Fixing WordPress
In reply to: Child Page being called instead of Homecan you post your index.php (or home.php if your theme has one) into a pastebin?
Forum: Fixing WordPress
In reply to: Enabling comments globally?Is that still good, or is there a preferred method now? Just checking. Thanks.— yes, that method will still work…make sure to follow steps one and two