mrspabs
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Problem with next previous buttonsI resolved this
replace
<?php if (is_front_page()) { query_posts('cat=-250'); } ?>
with<?php if (is_home()) { $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("cat=-250&paged=$paged"); } ?>Forum: Fixing WordPress
In reply to: goto urlIts hard to understand what you want.. are you saying that instead of displaying the error , you want to redirect to another url?
Forum: Plugins
In reply to: [WordPress MU Sitewide Tags Pages] Thumbnail problemI resolved my own problem.
If i replace
<?php if( has_post_thumbnail() ) { the_post_thumbnail(); }else { ?> <img src="<?php bloginfo('template_directory') ?>/images/default-thumb.png" alt="<?php the_title(); ?>" width="220" height="260"> <?php } ?>with
<?php if ( '' != get_the_post_thumbnail() ) { the_post_thumbnail(); }else { ?> <img src="<?php bloginfo('template_directory') ?>/images/default-thumb.png" alt="<?php the_title(); ?>" width="220" height="260"> <?php } ?>[Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
It works.
I got the new code from http://wordpress.org/support/topic/sitewide-tags-thumbnails?replies=5. Thank you.
Forum: Plugins
In reply to: [WordPress MU Sitewide Tags Pages] Multisite AdviceFYI – with multisite, the blogs each have their own database.
It sounds like you want one blog to popular 4 other sites. Sitewide does the opposite though I think if you install the plugin on each child blog and set it up to pull the main blog, you could make it work.You could also try FeedWordpress which works with RSS.
Forum: Plugins
In reply to: [Firelight Lightbox] iframe class ignoring height/width params since upgradejdev, can you tell us more about the workaround? i have this problem too
+1 same issue here
Thanks. its a great plugin.
Forum: Themes and Templates
In reply to: Changing Themethe best way would be to clone your site to a development environment, apply the new theme, make changes, then apply the theme to your live site.
check out backupbuddy. it gives you a pretty easy way to do this.
Forum: Themes and Templates
In reply to: change footer textGo to Dashboard > Appearance > Editor. In the right side, find footer.php and look for the text you want to replace. Be careful! it might break your theme. you might want to back up that file before you mess with it.
PS Its nice to give credit to the theme developer.
Forum: Plugins
In reply to: [Post UI Tabs] Can you provide the CSSI would like to withdraw my request. the plugin was not loading the css for me because my site was https and thus not loading the css files.
Forum: Fixing WordPress
In reply to: Custom Menu helpPlease disregard, the above code is correct. The problem is that I was not ftping to the right location.
Forum: Themes and Templates
In reply to: Posts in multiple collumnsI would do this with 2 loops.
The first would query just 1 post and show it with appropriate CSS styles.
<?php query_posts('showposts=1'); ?> <?php while (have_posts()) : the_post(); ?> your stuff here <?php endwhile; ?><?php endwhile; endif; ?>The second would skip the first post
<?php query_posts('posts_per_page=4&offset=1'); ?> <?php while (have_posts()) : the_post(); ?> your stuff here <?php endwhile; ?><?php endwhile; endif; ?>Forum: Fixing WordPress
In reply to: How to change the Header Logo URLyour logo is not contained in that block of code. It would be after the </head> can you provide site URL?
Forum: Fixing WordPress
In reply to: Blockquote ProblemGo to your style.css and remove height: 100%; from the blockquote
Forum: Fixing WordPress
In reply to: Can't access to the admin anymoreWhen you go to http://localhost:8888/wp-admin can you still log in?
Are you sure you are logged in?
Does your header file contain just before the <?php wp_head(); ?></head>?
Does your footer file contain <?php wp_footer(); ?> just before the </body>?