WP Libra
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Excluding Categories from Front PageI would ask the theme vendor for help on themeforest since this a paid theme. We typically only support the free ones.
Forum: Fixing WordPress
In reply to: How to merge 2 sidebars from the end of them to the bottomWould need a link to your site or a link to a demo of the template you are using in order to help.
Forum: Fixing WordPress
In reply to: How to change category for slider?Looks like you pasted something wrong on archives.php because it is cut off.
But the amount of the query is set on
&posts_per_page=4Did you change that?
I would think
$post_query = 'cat='.$slider_cat_id.'&posts_per_page=4&ignore_sticky_posts=1';would only show 4 posts.
Forum: Fixing WordPress
In reply to: How to change category for slider?Your home page code for the slider starts with.
<div id="gazpo-slider" class="ui-tabs ui-widget ui-widget-content ui-corner-all">The archive output is below.
<ul class="ui-tabs-nav ui-tabs-selected">So when copying the slider.php code did you forget to include the div? You should copy the line starting with
<div id="gazpo-slider" >all the way down.Forum: Fixing WordPress
In reply to: How to change category for slider?This is a simple way since your theme doesn’t support it. But I would need to link to your site to see why this is happening.
Forum: Fixing WordPress
In reply to: Columns messed up for no reason?Can you verify the link to your site?
Without seeing it I am just guessing to remove the whitespace in between then shortcodes. Those sometimes casue an empty
<p></p>code.Forum: Fixing WordPress
In reply to: How to change category for slider?Got a link to your site? Would be easier.
Forum: Fixing WordPress
In reply to: How to change category for slider?**Backup your files before making changes just in case**
Not tested but open slider.php and copy all the code from
<div id="gazpo-slider" >and down. This is the code that makes the slider.Then open archive.php which is your category template and paste it all right below
<div id="content" >.This will add the slider on top above the posts on your category pages. Now we need to set the category to the current category.
Above the query posts line add the three lines below. This is getting the current category > getting the ID number of it > setting the query to get that category only > only 4 of them > and ignore sticky posts.
<?php $category = get_the_category(); ?> <?php $category_id = $category->cat_ID; ?> <?php $post_query = 'cat='.$slider_cat_id.'&posts_per_page=4&ignore_sticky_posts=1'; ?> <?php query_posts( $post_query ); ?>Like I said. Untested. Just let me know if it works. I am leaving for a few hours so I won’t respond for a bit.
Forum: Fixing WordPress
In reply to: How to change category for slider?Can you link to the theme? I downloaded it and looked and saw in includes/slider.php
* Theme: silverOrchid * Theme URL: http://gazpo.com/2012/04/silverorchid * Created: April 2012 * Author: Sami Ch. * URL: http://gazpo.com * **/ $gazpo_settings = get_option( 'gazpo_options'); $slider_cat_id = $gazpo_settings['gazpo_slider_category']; //if no category is selected for slider, show latest posts if ( $slider_cat_id == 0 ) { $post_query = 'posts_per_page=4&ignore_sticky_posts=1'; } else { $post_query = 'cat='.$slider_cat_id.'&posts_per_page=4&ignore_sticky_posts=1'; }This one again says there is an option.
Forum: Fixing WordPress
In reply to: Featured Image Not WorkingWhen you click use as featured image do you see the image being loaded in the post before you save/update?
Forum: Fixing WordPress
In reply to: How to change category for slider?I didn’t install it but looked the source code real quick and assuming “gazpoMag: Magazine Style WordPress Theme” is the theme you are talking about there is a theme option for this.
array( "name" => "Slider Category", "desc" => "Remember to add Featured image to the category posts. You can see the option in the right column in the New Post page.", "id" => $shortname."_slider_category", "options" => gazpo_cat_list(), "std" => "0", "type" => "select-cat"),So I would go explore the theme options.
Forum: Fixing WordPress
In reply to: Incorrect redirects and css not loadingThere is 2 places where the URL is set in the options table. Both of them have the correct domain?
Forum: Fixing WordPress
In reply to: Blog post aren't showing up on my pagesGo to appearance > menu to get that menu option of home in there if your theme supports it.
Edit your letters page and is there an option under templates for “blog”? If so select it and try.
If not go to Settings > Reading and for blog page select letters from the dropdown.
Forum: Fixing WordPress
In reply to: Can't get post to include commentsI would ask Genesis support since this is a premium theme and we don’t have access to the files. Typically only themes supported are the free ones found in the directory.
Forum: Fixing WordPress
In reply to: Navigating to a specific spot on a page in WPJust like the example above. Not the entire URL.