WP Libra
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Link to a specific part of a page?I can’t write it for you but this is how…
On your categories.php you need to add a variable in the loop and it increases each time. When it hits 3 you output an anchor tag that you can link to it.
Forum: Themes and Templates
In reply to: Need to resize custom header size in Sundance themeYou would change
width="<?php echo HEADER_IMAGE_WIDTH; ?>"to
width="300"then the same with height.
Forum: Fixing WordPress
In reply to: linking pages to postsTurn off trackbacks.
It is not really comment but it is a trackback.
Forum: Themes and Templates
In reply to: Need to resize custom header size in Sundance themeEdit existing code.
Forum: Fixing WordPress
In reply to: Posts Not In Chronological Order on Home PageI see the banner and the Powered by text so I am not sure what the problem is.
Forum: Fixing WordPress
In reply to: Posts Not In Chronological Order on Home PageCheck your post on November 17th, 2012 and make sure it isn’t “sticky”. Appears it is.
Forum: Plugins
In reply to: Log-in and RegisterI have used this one before http://wordpress.org/extend/plugins/sidebar-login/ which should work for what you want.
Forum: Fixing WordPress
In reply to: seo yoastDepends on the keyword. If it is actually a good keyword then yes.
But it takes hours of manual research to actually find good keywords, there is no automated method that is worthwhile.
Forum: Themes and Templates
In reply to: Need to resize custom header size in Sundance themeI didn’t install the theme to look for theme options which you might be able to change it but you can do it manually.
Edit header.php
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home" class="clear header-image-link"><img src="<?php header_image(); ?>" width="<?php echo HEADER_IMAGE_WIDTH; ?>" height="<?php echo HEADER_IMAGE_HEIGHT; ?>" alt="" />Replace
<?php echo HEADER_IMAGE_WIDTH; ?>and
<?php echo HEADER_IMAGE_HEIGHT; ?>with the right numbers.
Forum: Themes and Templates
In reply to: Table/ Image/ Text allignmentsThis is kind of hard because it would actually be better to get rid of all the tables. But easiest fix possible would be to add this to style.css
.entry-content td, .comment-content td {
vertical-align: top;
}Then for your address and stuff left of the map put that all in 1 row so their isnt that space.
Forum: Fixing WordPress
In reply to: How to make a page "thinner"No problem. I said to fix it this way because you said you were new to this.
But if you wanted to fix it the correct way you edit the file at /wp-content/plugins/wp-e-commerce/wpsc-theme/wpsc-default.css
Find #single_product_page_container { and change that number to 580.
But if you leave as it will still work. Just using !important should be avoided if possible.
Forum: Fixing WordPress
In reply to: broken image links in the adminLook at one of the broken images and paste the URL path here. Will help understand how to fix it.
Forum: Fixing WordPress
In reply to: How to make a page "thinner"From wp-admin
Click Appearance -> Editor
Select style.css on the right side. Scroll all the way to the bottom of the page and enter
#single_product_page_container {
width: 580px !important;
}Forum: Fixing WordPress
In reply to: Posting Spider Calendar to a PageMost calendar ones do. You need to be able to tell it what PAGE you want it to display on so either plugins have you enter or shortcode or some have options where you just select the page.
Forum: Fixing WordPress
In reply to: Posting Spider Calendar to a PageNot sure what to tell you. Step 5 tells you.
Create a page and paste that shortcode in there. Did you do that?