silver530
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Hide Login LogoYou are welcome.
Forum: Fixing WordPress
In reply to: plugin urlYou need to use it in your functions.php file.
Forum: Fixing WordPress
In reply to: wp-admin page got lost after I changed settingsHi, check out this page:
Forum: Fixing WordPress
In reply to: Custom post type paginationHere is:
<?php $paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1; $slider = new WP_Query( array( 'post_type' => 'sliders', 'posts_per_page' => 3, 'paged' => $paged, 'orderby' => 'ID', 'order' => 'ASC' ) ); ?>
Forum: Fixing WordPress
In reply to: How to set the Layout for internal PagesYou can try it.
Forum: Fixing WordPress
In reply to: Insert link and add media don`t work!!!!You are welcome.
Forum: Fixing WordPress
In reply to: PermalinksForum: Fixing WordPress
In reply to: Transparent Sheet BackgroundHi, use this in your style.css file:
body.home { background-image: url( "your-image-url-here" ); }Forum: Fixing WordPress
In reply to: Recent posts widget order problemDid you update your wordpress to the latest?
Forum: Fixing WordPress
In reply to: Moving Directory giving ErrorHi, try
includefunction instead ofrequire.Forum: Fixing WordPress
In reply to: How to set the Layout for internal PagesForum: Fixing WordPress
In reply to: Custom post type paginationHi, use the
pagedparameter in your custom query.Forum: Fixing WordPress
In reply to: Permalink Redirect ProblemHi, wordpress saves old permalinks in your database.
Forum: Fixing WordPress
In reply to: plugin urlHi, you can use jquery code for your links:
a id="my_link" href="#">My Link</a jQuery(document).ready(function($){ $( '#my_link' ).click(function(){ location.href = 'http://www.my-url.com'; return false; }); });Forum: Fixing WordPress
In reply to: Insert link and add media don`t work!!!!Hi, use this in your
functions.phpfile:wp_enqueue_script( 'jquery-ui-dialog' );