dreamyguy
Forum Replies Created
-
Forum: Plugins
In reply to: Allow contributor to upload mediaIt would be nice to combine these two plugins (WP Hide Dashboard + Role Manager) but according to the comments in the plugin’s page, the Role Manager is buggy for 2.8 and is not being actively maintained by Thomas, the author. So that’s not an alternative anymore.
What’s the best alternative to still allow contributors to upload media (even while not allowing them to manage media) – which is the whole idea of this support topic?
Cheers!
Forum: Plugins
In reply to: [Plugin: CSV Importer] It’s importing as a draftI’m looking forward for the update, it will come in handy soon enough ??
Cheers dvkob!
Forum: Fixing WordPress
In reply to: WordPress 2.8 Ajax functions not workingThis solved my problem https://www.ads-software.com/support/topic/289904
Finally back in track!
Forum: Fixing WordPress
In reply to: 2.8.1 – Ajax not working on admin pagesThanks, I had already started a painful “upgrade from hell” process, but after this fix it was like being back in business.
Thanks a lot!!
Forum: Plugins
In reply to: [Plugin: CSV Importer] It’s importing as a draftHi Denis,
Thanks for this plugin, I have been waiting for something like this for nearly a year now. I haven’t even tested it, but I’m getting a very good feeling from what I’m reading.
One question comes to my mind though. It looks like posts are imported as drafts in the latest version as well. In my opinion, that is undesirable… The CSV import does save one a lot of administration time, but it would be even better if the posts get imported as published. So if the posts are set to a date in the future, it would simply be scheduled. THAT would save one even more time!
I’m not particularly interested in importing thousands of posts by for instance creating affiliate sites with loads of products (like many using this plugin would). However it would still be nice to import enough posts for 2 to 3 weeks (already scheduled) and be able to take my mind away from the project.
Unless this is technically impossible/undesirable, it would be nice if it was this way. ??
Cheers for a long-awaited plugin!!!
Wallace@halls
It was an unusual (if not scary) upgrade routine with the advent of version 1.6. But as you said, upgrades like these are necessary from time to time so that the script can evolve. I’m ok with that and got past those buttons without a problem. I needed an upgrade from WordPress 2.5 to 2.8 and chose to go through the whole process locally (on my machine). So when I saw the warning and all, it didn’t feel so terrifying.But I guess a few people updating their production site with the “upgrade automatically” button got surprised. Anyway, it’s not your fault that they chose to do that without backing up their database.
I got a problem on the 1.6.4 upgrade, a problem I didn’t have with any of the previous versions. All the fields in AioSEO’s admin page were gone and reset to default after the upgrade. Lucky me I keep a development version of the site so it was just a matter of copying and pasting them back into the fields. All back to normal here, but maybe something to be controlled… ??
Cheers, it is the greatest plugin in my opinion!
Forum: Fixing WordPress
In reply to: Help: Exclude category messing LoopThanks for sharing it, it’s working great on a blog I’m developing. I too tried to use the:
<?php if (in_category('88')) continue; ?>
…but the pagination included all the other posts. The only one post which was not in the category (somewhat similar to your case) was showing only on the last page ??
Your way is bullet-proof!
Forum: Fixing WordPress
In reply to: 2 column multi loopI was wondering if there was a more elegant solution to this problem because one if/else should have been enough to get this done… I came across this solution:
“Replace have_posts with this in the loop:
<?php
$x=0;
if (have_posts()) : ?>Add a check and condition for odds and evens where your content for each post begins:
<?php if ($odd = $x%2){?>
<div class=”odd”>
<?php } else { ?><div class=”even”> <?php } ?>Make sure you close those div tags after your post content.
Then replace the endwhile in your loop with this:
<?php
$x++;
endwhile; ?>Now you can go CSS crazy changing the background, colors, sizes for each alternate post!”
Would that be correct?
Forum: Fixing WordPress
In reply to: Creating new non wordpress pages with templateThis is probably the most stupid question of this thread:
Assuming I’ve followed all the steps and created the page “example.php”
>> How would my url look like? Like that?
Forum: Plugins
In reply to: [Plugin: intouch] I get a “\n” after every line on my custom messagesBy the way, this line break is totally unrelated to the “required” english text that was changed in the file.
Forum: Plugins
In reply to: InTouch DOES work with WP 2.2, 2.5 etc…I’ve just been through that… ?? But it works as long as you put the files right under the plugin folder, as drobbins said ??
Forum: Plugins
In reply to: wp-dbmanager is showing as an upgrade for wp-postViews WidgetGood to know the upgrade automatically will be fixed GamerZ, here one get an idea of how popular your plugins are ??
I’m using 2.5 and I have never upgraded any plugin automatically. I think I’ll wait until all the plugins I’m using are released on 2009 or something, so the authors can take their time to understand better how this feature works and use it correctly…
Your plugins rock, by the way!
Cheers
Forum: Fixing WordPress
In reply to: need PHP help for get_the_categoryThe code below worked for me too:
<?php echo get_category_link($cat=#);?>
(# is the cat number)I see your plugin is fresher, and perhaps better, but I can’t find a way to have control over the layout… So I’m going for the other WP-PostViews. Please let me know if that can be done, and I might still revert to your plugin ??