Code Themes
Forum Replies Created
-
Forum: Plugins
In reply to: [Polylang] Menu not workingI have done that as well
Forum: Plugins
In reply to: [Polylang] Menu not workingThrough functions.php
// Enable Menus
register_nav_menus( array(
‘primary’ => __( ‘Top primary menu’, ‘cassa’ ),
‘footer-1’ => __( ‘First Footer Menu’, ‘cassa’ ),
‘footer-2’ => __( ‘Second Footer Menu’, ‘cassa’ ),
‘footer-3’ => __( ‘Third Footer Menu’, ‘cassa’ ),
‘footer-4’ => __( ‘Fourth Footer Menu’, ‘cassa’ ),
‘footer-5’ => __( ‘Horizontal Footer Menu’, ‘cassa’ ),
) );Forum: Themes and Templates
In reply to: [Simple Catch] Pictures Showing up On Front PageJust adding the image on Set Featured Image should work.
Like WPyogi said. Your theme is not Attitude and it is indeed couponize from themeforest.
If you paid for this and downloaded from Themeforest, the theme creator could help. If you downloaded illegally, than I would recommend you switch because there could be some malicious code in it.Anyways you could try with
.copyright{
display:none;
} in your style.cssForum: Themes and Templates
In reply to: [Simple Catch] Pictures Showing up On Front PageTry putting image through, “Set Featured Image” button on the right hand side, while adding or editing a post.
Forum: Themes and Templates
In reply to: [Iconic One] Banner Add is not displayingYour URL Please
Forum: Themes and Templates
In reply to: [Wordsmith] How to add banner to blog pageThe theme by default does not support banner. If you can code a little or know where to put your code, I could help.
Forum: Themes and Templates
In reply to: [Wordsmith] How to have photo caption as TitleIf you are talking about adding caption to individual Photos. Try adding the caption to the image in the Upload screen. That should do the job.
Forum: Themes and Templates
In reply to: [Book Lite] spacing between postsIn your style.css find
.hentry{margin: 0 0 4em; }
And change it to .hentry{margin: 0;}
Can you give the URL of your site.
Forum: Plugins
In reply to: [WP-Paginate] WP-Paginate and custom querieshi guys, I tried what has been posted here but it didn’t help. could you see through it.
Here’s my code<?php //wp_reset_query(); $current_page = (get_query_var('paged')) ? get_query_var('paged') : 1; $query = new WP_Query( 'category_name=news&posts_per_page=10&paged='.$current_page ); if ($query->have_posts()) : while ($query->have_posts()) : $query->the_post(); ?> <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3> <?php comments_number( '0 comments', '1 response', '% responses' ); ?> | <?php the_time('M j Y') ?><br /> Posted in: <?php $categories = get_the_category(); $separator = ', '; $output = ''; if($categories){ foreach($categories as $category) { $output .= '<a href="'.get_category_link( $category->term_id ).'" title="' . esc_attr( sprintf( __( "View all posts in %s" ), $category->name ) ) . '">'.$category->cat_name.'</a>'.$separator; } echo trim($output, $separator); } ?> <?php the_excerpt();?> <hr /> <?php endwhile; ?> <?php else: ?> <?php endif; ?> <div class="navigation"> <?php if(function_exists('wp_paginate')) { wp_paginate(false,$query); } ?>
The pagination does not show up