jimmyink
Forum Replies Created
-
Forum: Plugins
In reply to: NextGen Gallery – Using Custom Field to insert gallery (Not the plugin)Just did some extra research, try the ‘nggShowAlbum’ function. There’s some instructions here:
https://www.ads-software.com/support/topic/how-to-insert-nextgen-gallery-slideshow-into-headerGoes without saying, make sure you are using the latest version of WP and NGG. I don’t have the time to test this (at work) but I’m pretty confident ‘nggShowAlbum’ should work. I’ll leave the fun part up to you ??
Forum: Plugins
In reply to: NextGen Gallery – Using Custom Field to insert gallery (Not the plugin)Maybe try –
<?php /* NG Gallery Custom Field Rotating Images */ $gallery_id = get_post_meta($post->ID, 'gallery', true); if( !empty($gallery_id) ){ $ngg_shortcode = '[ nggallery id=' . $gallery_id . ' template=galleryview images=0 ]'; echo do_shortcode($ngg_shortcode); } ?>
I haven’t tested it, so it may still need some tweaking.
Forum: Fixing WordPress
In reply to: using get_posts to return ONLY attachments with audio/mpeg mime typeThanks for posting that!
I think I’m going to have to add this to the codex.
Forum: Requests and Feedback
In reply to: Monospaced font for html editor in tinyMCEThanks for your input Ipstenu.
I agree that it is only taking control over 90% of the HTML (to save us from our own bad habits and lack of standards) but you’d have to agree that if you are going to be editing HTML, regardless of how crippled it is, it would be easier using a monospaced font.
Slightly off topic, but do you know the reason why there is a lack of control over the HTML in the content? e.g. hiding/adding p tags
Forum: Requests and Feedback
In reply to: Monospaced font for html editor in tinyMCEThe TinyMCE editor that edits POSTS. You can switch to ‘HTML’ view and it uses Lucida Grande. I realize TinyMCE is also a 3rd party plug-in but I’m wondering why the HTML (code view) is displayed in a variable width font which is very unnatural for writing and viewing code in. Hopefully it can be modified so that it’s using a font stack like the theme editor does e.g.’Consolas,Monaco,Courier,monospace’.
Forum: Requests and Feedback
In reply to: 'wp_handle_upload' Should Create the Resized VersionsAnyone else experienced this yet?
Forum: Requests and Feedback
In reply to: Monospaced font for html editor in tinyMCEIt’s not the output in the post I’m concerned about, it’s the editor itself.
The code editor in the Appearance section got an update about a year ago. I’d be more likely to work more within the html editor rather than copy and pasting back and forth with dreamweaver.
Forum: Requests and Feedback
In reply to: Autoupdate requires PHP5Congrats! Just made my first contribution the other day too. Still lots of blanks to fill.
Forum: Requests and Feedback
In reply to: Autoupdate requires PHP5You can update the codex yourself if you are logged in. Add what you know and I’m sure if there are any holes someone will fill the gaps.
Forum: Fixing WordPress
In reply to: is_user_logged_in not working as expectedJust had this problem whilst working with addon domains. Always good to check the ‘siteurl’ in the ‘wp-options’ table in the database for anyone else still struggling with this. Had the sub-directory instead on the domain’s url in there. Changed it to the domain and that fixed my problem.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Images opening in new window?No worries. Have a good one.
OK, it’s fixed.
Turns out there was no temp folder assigned in the php.ini file.
Found the solution here – Link
You may need to get you hosting provider to do this for you as some control panels will not give you enough access to the server.
Thanks again for your help Alex. Are you still looking for a new icon for NGG?
You’re a clever cookie alex.
Checked the core media library and that’s not working either. After a bit of research I think I’ve narrowed it down to the temp folder not being defined in ‘php.ini’. I’ve sent a request to my hosting company to fix it as my control panel access doesn’t give me allow me. So now I play the waiting game.
I’ll post the outcome when I finally get this resolved.
—-Working—-
* Operating System : FreeBSD (32 Bit)
* Server : Apache/1.3.41 (Unix) FrontPage/5.0.2.2635 mod_ssl/2.8.31 OpenSSL/0.9.7m
* Memory usage : 12.6 MByte
* MYSQL Version : 4.1.22
* SQL Mode : Not set
* PHP Version : 4.4.7
* PHP Safe Mode : Off
* PHP Allow URL fopen : On
* PHP Memory Limit : 32M
* PHP Max Upload Size : 2M
* PHP Max Post Size : 8M
* PHP Output Buffer Size : N/A
* PHP Max Script Execute Time : 30s
* PHP Exif support : Yes ( V1.4 )
* PHP IPTC support : Yes
* PHP XML support : Yes—-Not Working—-
Server Settings
* Operating System : FreeBSD (32 Bit)
* Server : Apache/1.3.41 (Unix) FrontPage/5.0.2.2635 mod_ssl/2.8.31 OpenSSL/0.9.7m
* Memory usage : 12.66 MByte
* MYSQL Version : 4.1.22
* SQL Mode : Not set
* PHP Version : 5.2.11
* PHP Safe Mode : Off
* PHP Allow URL fopen : On
* PHP Memory Limit : 32M
* PHP Max Upload Size : 2M
* PHP Max Post Size : 8M
* PHP Output Buffer Size : N/A
* PHP Max Script Execute Time : 30s
* PHP Exif support : Yes ( V1.4 )
* PHP IPTC support : Yes
* PHP XML support : YesSurprisingly downgrading my PHP version from 5.2.11 to 4.4.7 gets it working again. I don’t consider this to be a fix, I even get a message from NGG to upgrade so I count this as resolved just yet. I can’t be the only person (out of 1.5 million) that has come across this.
Anyone? Please, I’m stating to look a little crazy just posting to myself.