hotplugin
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Blog To Categoriesjust goto http://localhost/wordpress/wp-admin/nav-menus.php
and add your category as menus
Forum: Fixing WordPress
In reply to: Changing the site logocan’t understand your question..
Forum: Fixing WordPress
In reply to: Social links not workingyou haven’t added any links to the share this tribute . only image link is given
add href=”www.facebook.com/yourname”><img src=”image link”>Forum: Fixing WordPress
In reply to: Manually Upload to Media Libraryyou will have to change the max.upload limit
use
define(‘WP_MEMORY_LIMIT’, ’64M’);
to
wp-config.phpForum: Fixing WordPress
In reply to: blog posts on different pagesit depends on what kind of theme you are using. try creating a post on the category the page is using.
Forum: Fixing WordPress
In reply to: photo sizeeach time you upload a pic. WP generates 3 pics of different sizes.
you can specify it from your admin-settings.Forum: Fixing WordPress
In reply to: Menubar items tooclosetogetherlikethislol 🙂
Forum: Fixing WordPress
In reply to: Sidebar post filtercan this help?
$category = get_the_category();
if (!empty($category))
$cat_tree = get_category_parents($category[0]->term_id, FALSE, ‘:’, TRUE);
$top_cat = split(‘:’,$cat_tree);
$cat_slug = $top_cat[0];query_posts(‘posts_per_page=15&category_name=’.$cat_slug.’&orderby=rand’);
Forum: Fixing WordPress
In reply to: Read more not working in some casesif you know little coding then only you can get this done. do you?
Forum: Themes and Templates
In reply to: Left Menu Problems with Easelhave you put the pages in custom menu order properly?
it should look menu-submenu already in the addmenu panel.slide one submenu under another to get this.
Forum: Fixing WordPress
In reply to: Search box placementjust goto:
Forum: Fixing WordPress
In reply to: Malware Detected – HELP removeobviously you have posted content from a site that has malware distribution.
you need to check your resourcesForum: Fixing WordPress
In reply to: Slideshow Only Show Static Imagesyou first need to check if your jquery is working properly. you can do it from DOM inspector.
next, its likely just a css issue with your theme.
check the ul tags for your slider.Forum: Fixing WordPress
In reply to: Menu item goes to ALL of my poststhis is done default by wordpress. your posts on a category are displayed in descending order means latest first.
Forum: Fixing WordPress
In reply to: how do you redirect to a mobile version of your site?<script type=”text/javascript”>
<!–
if (screen.width <= 699) {
document.location = “mobile.html”;
}
//–>
</script>this should be enough.