huntz
Forum Replies Created
-
Is this something the author would considering adding to the plugin?
Forum: Plugins
In reply to: [Standard Widget Extensions] sticky widgetWhat I mean is the widget jerks about when you scroll instead of being nice and smooth or even just stationary?
Can anyone help me here?
Thanks
Forum: Plugins
In reply to: [WP2Social Auto Publish] Post published twice after new versionYes I can confirm this as well. I have posts with an image in that are scheduled and by the looks of it it is posted to facebook when posted and then again on scheduled date/time.
Forum: Themes and Templates
In reply to: [Pictorico] Infinite scroll "jumps back" hiding posts.You can see the behaviour if you scroll to the bottom of the page at my site. If I take off the float: left it works fine.
Not sure what a solution is.
Forum: Themes and Templates
In reply to: [Pictorico] Infinite scroll "jumps back" hiding posts.I also have this issue.
I the posts are floated left, there are two on each line.
I think this might be the problem.
Forum: Fixing WordPress
In reply to: Wiped site and DB, started from scratch, MANY problems!Maybe run one of the malware/virus scan plugins to see if you have an infection.
Forum: Fixing WordPress
In reply to: Sider in a PostYou could add this code into the loop?
<?php get_sidebar(); ?>
Forum: Fixing WordPress
In reply to: Imported Images brokenForum: Fixing WordPress
In reply to: New posts using defaul url rather than date as setYou may have to publish the post to get the proper url? Can you test that please?
Forum: Fixing WordPress
In reply to: Editor cannot see "Comments" feature in dashboardMaybe you could use this plugin to show the option
Forum: Fixing WordPress
In reply to: Wiped site and DB, started from scratch, MANY problems!Problem 1. You can manually download and upload the Jetpack plugin to the plugins folder then activate it.
Problem 2. Sounds like malware, what theme have you got activated? Is it one you already had or a new one? Old one may be infected.
Forum: Fixing WordPress
In reply to: need to change the color of one tab in my navigation menuAdd this to your css file.
.menu-item-717 { background-color:pink }
Forum: Fixing WordPress
In reply to: New posts using defaul url rather than date as setYou may have to check your .htaccess rules to see if they have changed.
Forum: Fixing WordPress
In reply to: Plugin: Add styles when javascript is disabledYou could put your css styles in a noscript tag?
<noscript>
<style>
body {
background-color: linen;
}h1 {
color: maroon;
margin-left: 40px;
}
</style>
</noscript>I tool would like to disable the link.
I want to write a function to disable the link part, can anyone give me any help achieving this?
Thank you