Vignesh Pichamani
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [elegantWhite] Primary Navigation – sub itemSite url
Forum: Themes and Templates
In reply to: Esquire Theme changesCan you Provide me site url ?
Forum: Fixing WordPress
In reply to: GravatarCan you provide more information please .
Forum: Fixing WordPress
In reply to: how do i move the entire site from the sandbox to a live site.You could export the mysql data or use wordpress post or page export plugin is available in a wordpress plugin repository. . .
May be it should work 🙂
Thanks,
vickyForum: Fixing WordPress
In reply to: adjusting widthsHi,
I look into your site
If you want the nav bar is appear in one line then you should do as like thishttp://www.fabrica-vitae.com/wp/wp-content/themes/twentyeleven-child/style.css
in line 15
add the line width:100%Then it should work.
Thanks,
vickyForum: Fixing WordPress
In reply to: jquery slider not working in wordpress pageIf you are using jquery js library or some other js library don’t append directly like
<script src="path"></script>You must enqueue the script inorder to workable.
http://codex.wordpress.org/Function_Reference/wp_enqueue_script
and the second thing if you are using$as in javascript change it tojQuery
Sometimes $ is not the function error comesup while integrating wordpress.Another method also available
jQuery(document).ready(function($) { $('#someid').click(function() { // something goes here. }); });Forum: Fixing WordPress
In reply to: The requested URL /wp-login.php was not found on this server.You could read out the documentation in wordpress codex for moving the wordpress site and changing the site url.
That problem might be changing the site url
http://codex.wordpress.org/Moving_WordPress
http://codex.wordpress.org/Changing_The_Site_URLHope if you are look into the above steps you can easily overcome this problem.
Thanks..
This may be a server issue.
Not sure this may be a charset problemContact your host provider regarding this and ask for a support
Thanks,
vickyForum: Fixing WordPress
In reply to: Not all header menu pages appear when home page is viewed onlinedo this in your style.css line 1456
.header_menu_main { background: none repeat scroll 0 0 #3D7B69; float: left; height: 100px; width: 100%; }If you don’t want to edit the theme css then do this from plugin
http://wordpress.org/plugins/custom-css-manager-plugin/Use this should work 🙂
Thanks,
vickyForum: Fixing WordPress
In reply to: nothing happens after changing filesCan you provide the live site url ?
Forum: Fixing WordPress
In reply to: Display most recent blog post from categoryHi,
You could read the codex of wordpress here
http://codex.wordpress.org/Function_Reference/wp_get_recent_posts
That above link contain more and more example which is really helpful for you.Thanks,
vickyForum: Fixing WordPress
In reply to: Is my site hacked? Does it have virus?Forum: Fixing WordPress
In reply to: Show all post with attached image on a single Page<ul> <!-- LOOP START --> <?php $args = array('post_type' => 'post', 'posts_per_page' => -1, 'post_status' => 'publish', 'post_parent' => null); $the_query = new WP_Query( $args ); ?> <?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?> <!-- THIS DISPLAYS THE POST THUMBNAIL, The array allows the image to has a custom size but is always kept proportional --> <li> <?php the_post_thumbnail( array(100,100) );?></li> <!-- THIS DISPLAYS THE POST TITLE AS A LINK TO THE MAIN POST --> <li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li> <!-- THIS DISPLAYS THE EXCERPT OF THE POST --> <li><?php the_excerpt(); ?></li> <!-- READ MORE LINK --> <li><a href="<?php the_permalink() ?>">Read More...</a></li> <?php endwhile;?> <!-- LOOP FINNISH --> </ul>Above method is much helpful for you.
Thanks.
Forum: Fixing WordPress
In reply to: Show all post with attached image on a single PageGood,
Now what you want to show exactly in frontend ?
with attachment or without attachmentForum: Fixing WordPress
In reply to: Show all post with attached image on a single PageIt is because you are mentioned
post_type as attachmentFor that reason it showing images! if you want to show the image which is associate on post then change thepost type as with postalone.