_OMEGA_
Forum Replies Created
-
Forum: Plugins
In reply to: [Google Authenticator] Login not working from time to timeI think could be on the server. I will check it.
And I will check if the other admin (with Galaxy S2, instead I have an iPhone) has the same problem.If you are interested, I will write updates here.
Thank you and Best Regards.
Forum: Plugins
In reply to: [NextGEN Custom Fields] Custom Field and Shadowbox JSHello shauno and thank you for the answer.
I did some tests yesterday without any luck, but your answer was really helpful. One of the answer I wanna hear. Thank you very much.Forum: Fixing WordPress
In reply to: Titles list of a category in a pageHey, thank you.
I copied and pasted your code and……it works like a charm. Thank you very muchForum: Fixing WordPress
In reply to: Titles list of a category in a pageAny hint? sorry for the bump…
Forum: Fixing WordPress
In reply to: Titles list of a category in a pageI want to print on a page only and all the titles (of the posts) of the category 5.
Forum: Fixing WordPress
In reply to: Titles list of a category in a pageOk, but in this way it prints the titles of all the categories, instead I’m trying to have only the title of the category 5.
Forum: Fixing WordPress
In reply to: Titles list of a category in a pageI tried something like this, it prints the right category but 2 times each title:
<?php foreach((get_the_category()) as $category) { $postcat= $category->cat_ID; $catname =$category->cat_name; } ?> <?php $categories = get_categories("child_of=$postcat"); foreach ($categories as $cat) { ?> <?php query_posts("cat=5&posts_per_page=-1"); ?> <?php while (have_posts()) : the_post(); ?> <ul> <li><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"> <?php the_title(); ?></a> </li> </ul> <?php endwhile; ?> <?php } ?>Forum: Fixing WordPress
In reply to: Custom Fields problem after 3.1 upgradeFound, this plugin causes the problem: iRedlof Ajax Login 2.3.1
Forum: Fixing WordPress
In reply to: Custom Fields problem after 3.1 upgradeyes already did all your hints, but the problem remains.
No, I don’t have that pluginForum: Fixing WordPress
In reply to: Custom Fields problem after 3.1 upgradeHere the same, so I think it’s a bug of the entire page.
Also in the Article Tag section, can’t insert the tag, have to use a trickForum: Plugins
In reply to: Bridge for users registration to phpBB or SMF!No hint?
Nothing??Forum: Plugins
In reply to: [Plugin: SMF2WP] Script VersionsSorry guys but I really can’t fix my problem!!
Wp 2.9.2 fresh install and SMF 1.1.11 fresh install too.
I tried the version 1.0 and 1.1 of this plugin.For both installation I have the same database.
When I log with the admin account I don’t have any problems, but if I try to log in wordpress with an user account I am redirect to the backend section (ok), but if I press for example “My profile” or “Dashboard” I am redirected to the wordpress login screen every action I do.
Tried with: IE7/8, Chrome, Opera, Safari, FF2/3….same result for all!!
Forum: Plugins
In reply to: [Plugin: PHPBB Single Sign On] Can’t Auth Mode – Option Selected Doesn’t SaveThe problem wasn’t my mod to fix the problem.
The problem, as suggested by the author, could be a plugin.
And it was: Bee Offline.I disabled it, applied my fix to the plugin and everything works great.
Forum: Plugins
In reply to: [Plugin: PHPBB Single Sign On] Can’t Auth Mode – Option Selected Doesn’t SaveThis workaround works offline, but online using the original or my modded way I receive a blank page.
I’m working on it also if I’m not the developer 🙁Forum: Plugins
In reply to: [Plugin: PHPBB Single Sign On] Can’t Auth Mode – Option Selected Doesn’t SaveYou have also to modify module.phpbb.php in the phpbb-single-sign-on directory:
MODIFY
$include_contents = file_get_contents($phpbb_root_path . 'common.orig.' . $phpEx);TO
$include_contents = file_get_contents($phpbb_root_path . 'common-orig.' . $phpEx);