haizdesign
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Style.css in ChromeThanks Andrew. The internal CSS in the head was added by a topup lightbox script that I have now removed.
The line numbers are still not showing in Chrome Version 35.0.1916.153 unfortunately. I have the checkbox for Enable CSS source maps ticked. This is a bespoke theme and all the other scripts and styles are enqueued.
I have just noticed that if the inspector is open and I reload the page, the line numbers show temporarily, then disappear… Need to investigate that one!
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] All-in-One Event Calendar Update 1.10.11Thanks BRG – that was just what I wanted.
One of the ways I was able to fix a site ‘broken’ by the 1.10.11 update was by using a database roll-back on a development server along with the (lifesaving) WP Migrate DB Pro plugin. I used phpMyAdmin to drop all the all in one tables on the live site’s database and replaced the plugin with my 1.10.9 backup. I then used WPMigrate DB Pro to push the events from my dev server to the live site and everything is now back and working. With BRG’s advice above, I removed the update notice and now have a happy client again.
On a side note, a real positive from this has been the opportunity to provide great customer service and turn a potentially difficult situation with a client around.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] All-in-One Event Calendar Update 1.10.11bill, I acknowledged (and have considerable appreciation of) how much work has gone in to this free plugin. No issues, but if the line 160 fix is a quick solution, don’t understand why this is not flagged-up outside of forums like this in a place where it is visible to casual WP users. If an individual (or client) undertakes their own plugin updates, they may not be so comfortable in opening a file in a text editor (heaven forbid MS Word!) and commenting out content.
Convincing a client to move to a premium version of a plugin when it has just caused them a minor meltdown would be a hard sell. At a later stage, or for new clients, I agree. It would also be a good way to put money back in the developer’s pockets.
I’m just asking if there is a way to disable the update notification.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] All-in-One Event Calendar Update 1.10.11I’ve had a similar experience with this upgrade, with a site going offline, Google crawl errors, plugin.php problems, and a very stressed and naturally upset client.
I am a fan of All-In-One but would like to ask Timely how we can remove the upgrade notification from the WP dashboard and if there would be a benefit from revoking the 1.10.11 update altogether.
I appreciate a lot of work has gone in to the development and the version that has been the source of the issues is a free plugin, but it is ‘costing’ a lot of time for web designers fixing various issues and doing harm to our client relations.
This is genuinely not wanting to start a witch hunt, only asking if you can be more proactive in detering what is a known issue for other users of your otherwise very wonderful plugin.
Forum: Plugins
In reply to: [Timely Updater] Update from 1.7 to 1.9.6 Standard: Cannot Activate PluginThank you. Very much appreciated.
Forum: Plugins
In reply to: [Timely Updater] Update from 1.7 to 1.9.6 Standard: Cannot Activate PluginPlease post your solution. I’m having a similar problem with this plugin on one of my sites.
Good news. The beta is working with both WP jQuery Lightbox and Lightbox Plus ColorBox now.
Still missing though is the feature last seen in Version 2.0.40, which has the number of images in an album as the description.
I’m using this on several sites and can’t update the plugin yet. See this page as an example: Streetz Ahead Dance Academy
Thanks. I’ll try it on a development server and let you know how I get on next week.
Forum: Fixing WordPress
In reply to: Adding a Permalink in a foreach loopThe only thing I can’t use this for is pages using the wordpress page.php, because it has no template info.
Does anyone know how you access the default template using this method?
Forum: Fixing WordPress
In reply to: Adding a Permalink in a foreach loopOK – figured it out:
<?php $studentpages = get_pages(array( 'meta_key' => '_wp_page_template', 'meta_value' => 'students.php' )); foreach($studentpages as $studentpage){ $studentlinks = get_page_link($studentpage->ID); echo '<a href=" '.$studentlinks.' ">'.$studentpage->post_title.'</a>' . '<br />'; } ?>
I’ve noticed problems on sites too when viewed on iOS Safari. The issue is when this is in the header.php <head>:
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0," />
It makes the lightbox images too big. This code is advised in the majority of responsive design tutorials, including Ethan Marcotte’s Responsive Web Design, as a resolution-agnostic approach.
Can anyone advise how then to fix the issue with this plugin?Turned out that the problem was old jQuery being loaded by TheTheImageSlider…
Is there any way we can rollback to a previous version? One of my sites (psandc.co.uk) has stopped being navigable/searchable since updating.)
I was going to go Pro for another client but am concerned about this issue at the moment…Forum: Plugins
In reply to: [Contact Form 7] Using a field "send copy to myself"Why not offer a copy as a matter of courtesy? If you want it to be conditional, based on the use of a checkbox, you might need to use some jQuery.
Maybe someone else knows better?Forum: Plugins
In reply to: [Contact Form 7] Using a field "send copy to myself"Why not use the Mail 2 field and set the destination to the <[your-email]> so they get a copy by default? You could add a note saying that a copy is sent if you like. You can add a custom thank you message or whatever you want.