hotplugin
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problem uploading pictures.Try to assign 755 recursive permissions to wp-contents folder instead of 777 permissions to uploads folder..
Forum: Fixing WordPress
In reply to: table formatting – paragraph marks dissapearthis is new. but i think you don’t need to actually add those tags yourself. just use the default Paragraph option in editor. it should work fine.
Forum: Fixing WordPress
In reply to: Menubar items tooclosetogetherlikethisjust add padding:0px 10px; on your line:577
Forum: Fixing WordPress
In reply to: Login Issueunless you have actual access to database itself. this cannot be fixed.
Forum: Fixing WordPress
In reply to: Possible to turn off comments?or better just download this:
Forum: Fixing WordPress
In reply to: Possible to turn off comments?you may do this from this page;;
http://localhost/wordpress/wp-admin/options-discussion.phpdeselect the comments options.
or if u can code. just remove the comments line codes
Forum: Fixing WordPress
In reply to: Custom Post Type Portfolio menu 404may be you have hooked up your portfolio category to only the custom post type one.
you may try changing the permalink to %category%%postnameForum: Fixing WordPress
In reply to: Display products catalog with no shopping cart pluginthis can be done with any theme
just post your main product in a category and common products inside that category.Forum: Fixing WordPress
In reply to: One category on one pagethis is done by wordpress itself.
Just change your permalinks to %category%%postname.if that doesn’t help. use a custom query as;
query_posts(category=’yourcategoryname’);
then run the loop.Forum: Fixing WordPress
In reply to: Extra Codes in my Site Titledid you mess with the core files?
if not then it must be your css.Forum: Fixing WordPress
In reply to: table formatting – paragraph marks dissapearplz explain your issue more.
Forum: Fixing WordPress
In reply to: Page Titleplz provide the code ur using in header.php
Forum: Fixing WordPress
In reply to: How to Set Meta Title, Keywords & Description for each url?@simonmatthew1
you can add different meta data based on the file you are on: e.g:<meta name=”description” content=”<?php if ( is_single() ) {
single_post_title(”, true);
} else {
bloginfo(‘name’); echo ” – “; bloginfo(‘description’);
}
?>” />Forum: Fixing WordPress
In reply to: Gallery page – slow load time – is it the file sizes?@mc1292 you could look into your code of gallery page and filter out unnecessary codes based on conditions.
this should definitely boost your page load timeForum: Fixing WordPress
In reply to: How can I fix this alignment issue?@gbn1 your #leftcontent width is too small. buy anyway you can do this:
.post_content {
font-size: 12.9px;
font-weight: 100;
letter-spacing: 1px;
text-align: left;
}text-align : left is the only change here..
is it what you wanted?