debirobarts
Forum Replies Created
-
Forum: Plugins
In reply to: Integrating Weddingwire RSVP Form/Function to WordPress.com SiteI’m curious about this exact thing as well.
slickchickit, where did you see on a forum that someone had done it?
Forum: Plugins
In reply to: [Advanced Advertising System] Impressions, Clicks, CTROk thanks. What would cause that? No one would have a reason to besides myself, to generate extra clicks and obviously it wasn’t me. Just trying to figure it out.
What are the other features in pro version? I was looking at the site and wasn’t clear on what was pro features vs regular. I’m considering upgrading if the features are worth it.
Thanks!!
Forum: Plugins
In reply to: [Advanced Advertising System] Attach CampaignThanks so much!
Forum: Plugins
In reply to: [Ninja Forms - The Contact Form Builder That Grows With You] 500 errorNevermind; was an issue on my server and I have it installed/activated. Thanks!
Forum: Plugins
In reply to: [Tools for Twitter] Twitter feeds not downloadingMine aren’t downloading automatically either. When I click to download them, it does work though. Any idea why it stopped automatically downloading?
Forum: Plugins
In reply to: [Tools for Twitter] Twitter Tools Downloading Full History of TweetsSeems to be resolved on own.
Forum: Plugins
In reply to: [Tools for Twitter] Where is the hashtags functionality?I like the idea of importing tweets with specific hashtags, or even better would be also the option to exclude importing tweets by specific hashtags.
Forum: Plugins
In reply to: [Twitter posts to Blog] Constant Error on Page – Undefined indexI am having this same issue and would love to see the resolution! I am dying to get this plugin working, as I’ve had so many issues with Twitter since the API BS!
Thanks!
Forum: Plugins
In reply to: [MP Spam Be Gone] [Plugin: MP Spam Be Gone] Box missingI’m having the same problem. 🙁
Forum: Plugins
In reply to: [Time Machine] [Plugin: Time Machine] Number of PostsNot the draft thing and it seems like the custom post types are ok. It still makes a blank line.
Using it with “widget in pages” – is that what’s doing it?
Forum: Plugins
In reply to: [Time Machine] [Plugin: Time Machine] Number of PostsYou know I think this may be an issue showing a draft. I have a draft I started today but it is a custom post type, so maybe that’s why it’s confusing it?
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Registered Members Only subscribeSure thing! Where/how do I do that? 🙂
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Registered Members Only subscribeAwesome, thank you. That will be perfect. And if you add the management in the future, that would be even better. 🙂 Thanks!!
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Registered Members Only subscribeYes, that essentially would do it. 🙂 I would also like (if you are working on this, and want to add it!) it to say if they are NOT logged in something like “Registered users may subscribe to comments.” and then have a link for them to sign up.
The only other thing is that if a user is registered and logged in, I would love them to be able to manage their subscriptions within the WP dashboard. You know right now they can manage their profile etc.. it would just be an additional link within the dashboard “manage subscriptions” or something. Instead of having a separate management link, like they have now.
🙂 Anyway, it’s a great plugin and works really well – I’m just picky and always want a little something more I guess! Haha!
Forum: Plugins
In reply to: Time Machine plugin – Incorrect time/dateI know I’m a million years late for you but I just installed this plugin and came up with the same problem. Here’s the fix:
Ok look for:
// setup jocker date range
Under that I believe it said:
$tm_time = “2%-“.gmdate(“m-d”).” %:%:%”;
Or something similar? Change that line to:
$tm_time = “2%-“.date(“m-d”).” %:%:%”;
Now look for:
function time_machine($args) {
(This should be a little above what you just were working on)
Under that add:
date_default_timezone_set(‘Canada/Eastern’);
Now where it says “Canada/Eastern” enter the timezone you are in (list is here: http://www.php.net/manual/en/timezones.php )
Ideally I’d want this to show based on the time zone of the reader, however I didn’t drink enough coffee today and I just got out of yoga so my mind is kind of mush. This makes it related to the time zone you set.
Hope it helps.