NativePaul
Forum Replies Created
-
Forum: Plugins
In reply to: [Recent Tweets Widget] PHP 7 & WP 4.7On PHP7 and WordPress 4.7.3 – whenever I activate the plugin the site throws an ERR_EMPTY_RESPONSE error.
Unfortunately nothing in the PHP error logs, so hard to identify why that’s happening, but disabling the plugin puts everything right again.
Forum: Plugins
In reply to: [jQuery Masonry Image Gallery] Loading messageUnfortunately I never found a solution to the loading message and ended up with a completely different layout in the end.
Not sure if phoenixMagoo had any luck adding it in to the plugin.
Forum: Plugins
In reply to: [jQuery Masonry Image Gallery] Loading messageThanks. I actually tried using both :before and :after elements before asking this questions.
Unfortunately that didn’t work because the pseudo elements adopt the display properties of the gallery. So despite the display:block property it won’t be visible until the .gallery element is.
It’s not urgent so I’ll look forward to the next release.
Forum: Plugins
In reply to: [Flickr Gallery] HTTPS APIDid anyone else’s lightboxes break after making this change?
Editing the phpFlickr.php on my site and swapping https:// for https:// made the thumbnails show but clicking on them no longer opens the lightbox.
Forum: Plugins
In reply to: [Facebook Connect] Users getting logged in as adminI’m nervous because I’ve been doing a lot of work with this plugin and haven’t been able to reproduce this issue yet.
Can anyone provide any details on what kind of users get registered as admins? Is it truly random or do they always have something in common with an admin user?
Brilliant. Thanks very much Valentinas.
Now I just need to find a solution for IE loading a blank page after connecting with the plugin. All other browsers seem to work perfectly.
I’m not sure where the image max-width property applies but here’s a safer way to fix the squashed thumbnails without effecting anything other than Next Gen Galleries. Add this to your theme’s stylesheet:
.entry-content .ngg-gallery-thumbnail img { height:auto; margin: 0 0 18px 0; max-width:none; }
That will reset the max-width property for Next Gen Galleries only.
Hope that helps.
Forum: Themes and Templates
In reply to: [Painter Theme] Pre-defined colour schemes not loadingThanks Nikki!
Forum: Plugins
In reply to: [Plugin: WordPress PHPList Dual Registration] Any alternatives?Hi Dukessa. That other post is closed for comments now, so I’m replying here.
I eventually gave up on what I was trying to do. It turns out that Register Plus is conflicting with the dual registration. It’s a powerful and useful plugin. It would be even better if a phplist registration could be included.
I started a new topic linked to Register Plus. If you have any advice for me or the developers it would be great to see these two plugins merged.
Thanks again for the help.
Forum: Plugins
In reply to: Falbum page titlesHi Swashbuckler.
I found the solution in the wiki page.
I opened my theme’s header.php file and swapped the <title> line with the following code.
<?php global $falbum; ?> <?php if ($falbum->is_album_page()) { ?> <title><?php echo $falbum->get_page_title(); ?></title> <?php } else { ?> <title><?php bloginfo('name'); ?><?php wp_title(); ?></title> <?php } ?>
That does the trick.
Forum: Plugins
In reply to: Links to old permalink structure don’t redirect with wp-404-handlerThanks orhanozcan.
I eventually moved my site to linux server and enabled WordPress permalinks without the need for the wp-040-handler.phpThank you for the response, hopefully it will help a few people.
Forum: Plugins
In reply to: [Plugin: ProPlayer] Fatal error with curl_init() in F:\web\oliwp\wordpress\wI am so glad I found this post! I’ve spent two days trying to get ProPlayer to work on my local wamp testing sever.
I’m not sure if it was necessary but I went through the hassle of installing libxml according to the steps I found here. I was so bleak when that didn’t work.
Now I just removed a ; from my php.ini file and it works!
An easy way to get to your php.ini in wamp is to click on the wamp icon in the system tray then select PHP and php.ini is in the menu there.
Forum: Fixing WordPress
In reply to: How to provide an “access key” for a prepaid download?I’m looking to do exactly the same thing. Any bright ideas?
Forum: Plugins
In reply to: [Plugin: Sociable] Open in lightbox or similarThis option has now been included in the settings.
In the sociable settings tick the box next to
“Use thickbox/iframe on links?”Forum: Themes and Templates
In reply to: Thematic Gallery theme – Single posts not loadingIf anyone is interested, I found a solution to my problem, although I’m certain it’s not the best one.
I copied single.php from thematic to gallery’s theme folder.
I then cut the “single post” code from gallery’s functions.php
and pasted it into my new single.php file. I removed most of the code from thematic’s single.php file and it didn’t make a difference.<?php get_header() ?> <div id="container"> <div id="content"> // Paste the Single Post code from gallery's functions file <?php thematic_comments_template(); ?> </div><!-- #content --> </div><!-- #container --> <?php get_footer() ?>
I still don’t know why my site wasn’t working and I have no idea why this makes it work instead.
My server is really slow, and this theme makes my site even slower. I think the error was caused by the page timing out before all the functions could be called.
I worry that using a theme framework is slowing it down – is that likely to be the problem?