blig
Forum Replies Created
-
Just had a similar issue with these options checked.
Do not export spam comments
Do not export post revisionsThe latest export worked without duplicates unchecking the options above, Maybe it could help.
Thank you Gary! Exclusion settings and configured mode are working now!
The backoffice is much cleaner and readable and the “exclusion by category” was on top of my wishlist.
Thank you for the big improvements and for the post, I appreciate it a lot!Sorry, that was a vintage jargon for “Private Message” (but i see that there is not such an option in the wordpress forums).
Anyway, i could as well start testing the 3.0!
Hi, still no luck with “configured” mode . Can i send you a MP with the url of a test instance? Maybe easier to see than to duplicate..
Forum: Plugins
In reply to: [PHPLeague] [Plugin: PHPLeague] Cannot modify Club informationOk, thank you very much! Can you give a hint about the release date of the 1.4.6? If it’s going to be soon maybe one could start building using the development branch (maybe..)
Forum: Plugins
In reply to: [PHPLeague] [Plugin: PHPLeague] Cannot modify Club informationHi, the issue reports a similar problem but in my case in phpleague.php
i have alreadydefine('WP_PHPLEAGUE_DB_VERSION', '1.3.1');
Theme: i think that you can use a default theme, i tried switching to twenty ten and I still have the problem.
Plugins: before reporting i tried to disable anything but wp-biographia. I’ll test again.
Hi Gary! sorry, answers:
Users: now there are 8 authors, 1 editor, 1 administrator (10 users)
Theme: is Evolution by ElegantThemes (prob. you could use twentyten)
As for the plugins, i am using:
Adminimize (to reduce the actions that users can do)
Simple Local Avatars
Wp-Biographia (of course)
Widget Logic VisualI previously set up a custom post type in my functions.php, I ended deleting the code because i didn’t need it.
Anything else that could help?
Thank you Joseph for letting us know: i am going to use this plugin and i usually configure widget on test instances/demo sites and THEN transfer everything on the live space (which has always a different URL).
I think this is pretty common, so UP for your report, i hope this can be solved in the next release.
I have version 2.4.4 on wp 3.3.1 and i am using the following options in “Biography Box Display”
Display On Front Page / active
Display On Individual Posts / active
Display Location / after post
Per User Suppression Of The Biography Box On Posts / Suppressed Users: admin
Per User Suppression Of The Biography Box On Pages / Suppressed Users: adminIt seems that it my instance
mode="configured"
it’s not workingPS: i also tried to use the author attribute combined with the configured mode but it gives no output. Eg:
[wp_biographia mode="configured" author="*"]
Forum: Plugins
In reply to: [WP Biographia] [Plugin: WP Biographia] wp_biografia shortcode not parsed@gary: The shortcode i was using is actually correct, so i dont’ know what was the problem at the beginning. Now it just works (wp 3.3.1 – biografia 2.3).
Forum: Themes and Templates
In reply to: Duotone PHP Error on WordPress 2.9RSS bug found in template?
EG:https://www.siteurl.it/feed/
gives this kind of error
This page contains the following errors: error on line 12 at column 34: Entity 'laquo' not defined Below is a rendering of the page up to the first error.
Forum: Themes and Templates
In reply to: Duotone PHP Error on WordPress 2.9Hello!
Here’s my hacks for the warnings found til now:1) Missing argument 1 for is_vertical(),
Change$width = (is_vertical() ? MIN_WIDTH : MAX_WIDTH;
into$width = (is_vertical($post->image_url)) ? MIN_WIDTH : MAX_WIDTH;
in functions.php or upgrade to verson 1.0.1 as sayd by Noel2) getimagesize() [function.getimagesize]: Filename cannot be empty
Work on content: make sure that every post has an image associated3) Missing argument 1 for get_year_link()
change<?php echo get_year_link(); ?>
into<?php echo get_year_link(''); ?>
in header.php4) 404 not found error on archives page
Work on content: make sure that there is almost one item posted in the last yearPS:
to developers:
about 2) and 4) it would be good to allow to have also posts/pages without images and to avoid error messages if there are no recent-recent posts (as it may happen on jan the 1st ??Forum: Themes and Templates
In reply to: Duotone PHP Error on WordPress 2.9Ok i don’t want to populate the topic alone but here’s the latest:
– The getimagesize warning seems to appear when there is no image to use as a thumbnail; this happens on posts and pages
(on my side i put images also when i didn’t need them to avoid the error messages, but i think there should be the possibility to have no images)
– The archive page link is not working but the archives do
(eg: ok when using them from the archive widget)One good thing: with some “content tuning” it’s much better yet
One notsogood thing: warnings expose all the paths and break the layout