t0mmmmmmm
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Pagenavi X Mandigo themeThis was fixed in version 1.40
Forum: Themes and Templates
In reply to: Serious problem with Mandigo themeCan you please get in touch with me at the email address in the README?
Forum: Plugins
In reply to: “sociableoff” custom field stacks up on every edit of a postThe trick is to redefine sociable_insert_post(), so look for “function sociable_insert_post” in the source and replace the existing function with the one provided above
Forum: Plugins
In reply to: mandigo – where are html inserts stored?In case someone else is wondering about this, they’re stored in the wp_options table.
Forum: Themes and Templates
In reply to: Serious problem with Mandigo themeHi Peter,
The stylesheet is not being generated for some reason:
http://www.magneticjoe.com/wp-content/themes/mandigo/style.css.phpThis is likely due to a php security restriction, and this reminds me of what was happening on the official theme repository.
Try turning error reporting on in style.css.php, it won’t fix it but it’ll help diagnosing the problem:
replace error_reporting(0)
with error_reporting(E_ALL)Forum: Plugins
In reply to: “sociableoff” custom field stacks up on every edit of a postGot it to work correctly after I redefined the sociable_insert_post function:
function sociable_insert_post($pID) { delete_post_meta($pID, 'sociableoff'); update_post_meta($pID, 'sociableoff', ($_POST['sociableoff'] ? 'true' : 'false')); }It may seem stupid to delete the key prior to updating it but it just wouldn’t work otherwise.
Forum: Themes and Templates
In reply to: custom header for a category. Mandigo ThemeI’ve helped Sergio getting it to work on his older version of the theme.
For those who can upgrade, the latest version (1.39) supports per-category headers:
http://www.onehertz.com/portfolio/wordpress/mandigo/Forum: Fixing WordPress
In reply to: Mandigo theme errorDo you happen to have different versions of Mandigo in the themes folder? If you do, they may be fighting over the options, so keep only the most recent one.
Forum: Everything else WordPress
In reply to: Wrong size in youtube videos and flickr slideshow (mandigo)irenegr,
This is a bug that affects version 1.3. The problem is described (and resolved) here:
http://wiki.onehertz.com/WordPress/Mandigo/Current_IssuesThanks for reporting!
Forum: Themes and Templates
In reply to: Embedded video wrong width in IEI’ve fixed a bug but introduced a new one at the same time. The problem is described (and resolved) here:
http://wiki.onehertz.com/WordPress/Mandigo/Current_IssuesThanks for reporting!
Forum: Themes and Templates
In reply to: Mandigo Theme – Keeps Resizing ImagesMandigo 1.37 which I said would include a fix for the issue with images has been released today.
Forum: Themes and Templates
In reply to: Embedded video wrong width in IEThere’s a small bug in versions 1.36-1.36.2 that’s causing some flash elements to shrink when viewed in IE.
It’s been fixed for the next release (1.37) which is due in a few days. Stay tuned!
Forum: Themes and Templates
In reply to: Tom…Edit font for Blog Name for Mandigo?Patrick,
The .blogname class is shared with the stroke/shadow elements. Try with these selectors instead:
<style type="text/css"> .blogname a, .blogname a:hover, .blogname a:visited { color: #f5893f; } </style>Forum: Themes and Templates
In reply to: Mandigo “Auto Collapse Posts” Option Collapses Pages TooBug!
Thanks for reporting, I’ll fix it for the next release.
Forum: Themes and Templates
In reply to: Mandigo Theme – Keeps Resizing ImagesHi Choqo,
Mandigo does resize the images that are too wide to fit the content area. However they’re not supposed to appear distorded like this or make Will Smith look so thin, so I’ll have to look into this. Thanks for reporting.
In the meatime, using slightly smaller images will do the trick (and save bandwidth!)