shadez
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Let's try this again. Dashboard Link Gone From Top of Siteany widgets added to footer? i see body and html tags being closed twice. are there any other codes after wp_footer? can you disable that lightbox and check too?
i think adminbar is not being called coz the code is breaking right above it. but i could be wrong. do check..Forum: Fixing WordPress
In reply to: how to display subcategory images in main categoryoh yeah thats cool too… maybe this string will work:
query_posts('category_name='.$category->name.'&showposts=1')
check it out and let know.. ??
Forum: Fixing WordPress
In reply to: how to display subcategory images in main categoryheard of a plugin th do this but not sure..
workaround is to save images separately on server and then display via loop. instead of wp_list_categories, use get_categories with param ‘child_of=’.$this_category->cat_ID’. and then in a foreach loop, display each, which also gives you an option to output image..
if its 1 image for all then give it as list-style in ul.Forum: Fixing WordPress
In reply to: Show backkground image on whole pageNevins is right… but add it to custom-background class…
replace this with existing:body.custom-background { background: #F1F1F1 url('https://www.deebat.dk/wp-content/uploads/2012/12/solspiren.png') no-repeat center top; background-size: 100%; } #wrapper { margin: 0 auto; padding: 620px 0 20px; }
Forum: Fixing WordPress
In reply to: Let's try this again. Dashboard Link Gone From Top of SiteQ: the space where adminbar should be – is it like completely gone, or do you see a blank space above your #nav where the adminbar is suppsed to be?
check if show_admin_bar(false) is called somewhere in your functions file.Forum: Fixing WordPress
In reply to: How to remove tagsduhh! sorry bout that alchymth/author.
its wrapped in a div:
<div id="additional_info"> <p>Tags: <br />
so for starters, search for the div ‘additional_info’.
or in style.css, insert
#additional_info p { display: none; }
Forum: Fixing WordPress
In reply to: Problem with thumbnail imagesi had a similar issue with nextgen gallery sometime back.
did you change themes and check? and gallery plugins maybe.Forum: Fixing WordPress
In reply to: How to remove tagscan you share link to post/page? else a snapshot..
Forum: Fixing WordPress
In reply to: Linking to Existing Contentsite?
Forum: Fixing WordPress
In reply to: Hacked site and local malware checki suggest using LTS for ubuntu. php and mysql shud be 5+ (linode gave me 4.x by default sometime back so sayin. yeah u can use sudo apt-get install php5 anyways..).
you will need security tweaks for apache.. lot of materials out there for httpd.conf.. and write protect all folders etc, use logging..
zillions of other small things to do..
for linux starters try this: https://library.linode.com/security/basicsForum: Fixing WordPress
In reply to: How to remove tagsadd this where you want to display tags (typically above/below <?php the_content();?> in loop-single.php):
<p><?php the_tags(); ?></p>
ref: https://codex.www.ads-software.com/Function_Reference/the_tagsForum: Installing WordPress
In reply to: Error establishing a database connectionwhats your server setup like? local or hosted?
Forum: Fixing WordPress
In reply to: People cannot comment on my websitedid exactly like this?
https://bbpress.org/about/installation/
also go thru documentation:
https://codex.bbpress.org/where are you getting stuck?
PS: my previous comment got deleted by mistake. so comment_form() worked for you? but i would still suggest re-checking your comments.php file.
Forum: Fixing WordPress
In reply to: Updating plugins results in maintance mode 'lockout' and no update!true that.
tried disabling all plugins, and enable them one-by-one, try the update, and identify which one is creating the problem, if any?Forum: Fixing WordPress
In reply to: How do I host my blog on a remote site?using RSS feeds… unless both are selfhosted and on WPMS..