DaveBurns
Forum Replies Created
-
Forum: Plugins
In reply to: [Floating Social Bar] Adjusting the CSSPaal – In your stylesheet, did you add “!important” to the style rule? You need to do this because the current rule is embedded in the HTML and loaded *after* your stylesheet. Adding the !important makes your rule take precedence. So instead of
border: none;Use:
border: none !important;Hope this helps,
dbForum: Plugins
In reply to: [Digg Digg] Buttons Overlap in Floating SharebarFWIW, everyone I see on the web has this issue even if they’re not using Digg Digg. I think it’s a bug with Pinterest.
Jon Brown’s solution worked for me although I took out the second attribute since it’s a broader solution:
.dd_button_v a[data-pin-log="button_pinit"] { margin-top: 30px !important; }Forum: Plugins
In reply to: [Analyticator] Stats display doubled when selecting 60 days+1 for this. I see it no matter how many days are selected in the drop down.
Forum: Plugins
In reply to: [Analyticator] 6.4.4.2 broken on 3.5.1.All seems well. So much nicer with flot!
Forum: Plugins
In reply to: [Analyticator] 6.4.4.2 broken on 3.5.1.Hi, guys. But the error message in the admin dashboard shows that you called Google with a URL that doesn’t have the right Analytics Property ID (it shows /accounts/XXXXXXXX/webproperties/UA-XXXXXXXX-X/). Or am I confusing cause and effect?
Also, why the PHP error?
Forum: Plugins
In reply to: [Analyticator] Error when loading the 60 day graph on the dashboardSame effect here. Have reset the plug in and reauthenticated with same results.
Forum: Plugins
In reply to: [Digg Digg] [Plugin: Digg Digg] Disable Digg-Digg on Three PagesFWIW, I have just sent a pull request to the digg-digg authors with code that lets you control the vertical positioning of the floating bar on individual pages. Maybe they will include it in a future version.
Forum: Plugins
In reply to: [Digg Digg] [Plugin: Digg Digg] Disable Digg-Digg on Three PagesI see your problem. If you’re not interested in my code changes themselves, you’ll want to look at two files in the plugin:
wp-content/plugins/digg-digg/digg-digg.php around line 342
and
wp-content/plugins/digg-digg/js/diggdigg-floating-bar.js around line 8 and 15.Good luck.
Forum: Plugins
In reply to: [Digg Digg] [Plugin: Digg Digg] Disable Digg-Digg on Three Pages@neocorps – Not quite sure what you’re asking. The dd_override_start_anchor_id is a mechanism I added in the code. Once that was added, I go to edit that page, scroll down to Custom Fields and add dd_override_start_anchor_id as a field name. Then as a value, I give the ID of the HTML element I want it to align to. In my case, “header-container” but yours will surely be different.
Does that make sense? Seems to me that you’d need the actual code changes to make use of this. Unless you’re a coder as well and are going to dive in.
[Might make sense to move this to a new thread, btw.]
Forum: Plugins
In reply to: [Digg Digg] [Plugin: Digg Digg] Disable Digg-Digg on Three Pages@neocorps – I have my code modified here to allow optionally overriding the default vertical positioning. I didn’t need horizontal control but it should be easy enough using the same approach. The way I did it to minimize effort was to use the existing Custom Fields mechanism – I did not create a pretty UI. I have it so that you can specify one or both of
dd_override_start_anchor_id
and
dd_override_top_offsetThe first lets you override the HTML element used to align the bar vertically. The second lets you override the offset to the anchor position. You can use both at once too.
I’m not sure the best way to share my changes with people other than through the officially requested way of forking the GitHub repo. I’ll try to get to that later this week. Other suggestions welcome.
db
Forum: Plugins
In reply to: [Digg Digg] [Plugin: Digg Digg] Disable Digg-Digg on Three Pages@socialrich – I’m surprised you see the bar quickly. From what I see in the code, it should never show in the first place.
BTW, I can’t find the thread but someone asked somewhere about how to adjust the vertical position of the bar on certain pages. I have a patch that does this via custom fields so you can control it per post. Let me know if interested.
db
Forum: Plugins
In reply to: [Digg Digg] How do I turn OFF the floating bar on my home page?Try the solution I posted here: http://ww.wp.xz.cn/support/topic/is-there-a-way-to-manually-remove-floating-sidebar-from-some-pages?replies=6
Forum: Plugins
In reply to: [Facebook] DOCTYPE error in FireBugThanks for the update, Niall. It’s not a critical issue since browsers still render the site but it’d be nice to have clean validation. I’d prefer it if the issue stayed unresolved until WP accepts your patch but I’m not too fussed. Main thing for me is knowing that it’s expected behavior.
db
No, it can appear anywhere in the page/post content. Two ideas without seeing it myself:
– Did you enter that using the Visual or the Text tab? Make sure you’re using the Text tab or else the < and > will get converted to HTML entities which will make it not work.
– If you intentionally entered HTML entities, don’t do that. Use an actual < and >.
If that doesn’t fix it, do a View Source in your browser and search for “Digg Digg Disabled” to see if the full HTML comment string was preserved which is what you want.
db
Yes. Looking through the 5.3.0 code, there is an undocumented feature for this. Add the following HTML comment to your content:
<!– Digg Digg Disabled –>
This worked well for me.
db