Gantry
Forum Replies Created
-
Forum: Plugins
In reply to: [Gantry 4 Framework] Gantry Framework update brakes themeHi,
We’ve just released Gantry 4.0.1 to address the PHP 5.2 issues. Please backup and update your site 🙂 One more time sorry for the issues.
Thanks,
JakubForum: Plugins
In reply to: [Gantry 4 Framework] Gantry 4.0 does not work, theme is not showing!Hi,
We’ve just released Gantry 4.0.1 to address the PHP 5.2 issues. Please backup and update your site 🙂 One more time sorry for the issues.
Thanks,
JakubForum: Plugins
In reply to: [Gantry 4 Framework] Gantry Framework update brakes themeHi,
Can you please enable the debug mode ? What’s your PHP version ? What is your PHP memory limit ?
Thanks,
JakubForum: Plugins
In reply to: [Gantry 4 Framework] Broken siteHi,
Can you please enable the debug mode ? Also what version of PHP are you using and what is your PHP memory limit ?
Thanks,
JakubForum: Plugins
In reply to: [Gantry 4 Framework] Safari Layout Footer BugHi,
What popup menu you have on your mind ? I just tried it on my Safari and everything seems to be fine. Please attach a screenshot if you can.
Thanks,
JakubForum: Plugins
In reply to: [Gantry 4 Framework] newest version breaks websiteHi,
The issue :
Fatal error: Cannot use string offset as an array in /public_html/wp-content/plugins/gantry/functions.php on line 166is caused by the fact that for some reason the theme default options are removed from the database durning the update. We’re still investigating what can cause that.
To fix the issue you should go to your Gantry Theme Settings and click on the Save Changes to resave settings. If you CANNOT access the WordPress admin please use this temporary solution :
1. Please make a BACKUP OF THE FILE and edit wp-content/plugins/gantry/functions.php and around line 165 replace this :
$options = get_option(get_template() . "-template-options"); $cache_enabled = $options['cache']['enabled']; $cache_lifetime = $options['cache']['time']; load_plugin_textdomain('gantry', false, basename($gantry_path) . '/languages'); // Get the gantry instance gantry_import('core.gantry'); if ($cache_enabled) { gantry_import('core.utilities.gantrycache'); $cache = GantryCache::getInstance(); $cache->setLifetime($cache_lifetime); $cache->init(); $gantry = $cache->get('gantry', 'gantry', array('Gantry', 'getInstance')); } else { $gantry = Gantry::getInstance(); }with this :
load_plugin_textdomain('gantry', false, basename($gantry_path) . '/languages'); // Get the gantry instance gantry_import('core.gantry'); $gantry = Gantry::getInstance();2. Please make a BACKUP OF THE FILE and edit wp-content/plugins/gantry/admin_functions.php and around line 370 comment out/remove this :
$options = get_option(get_template() . "-template-options"); if ($options['cache']['enabled']) { add_meta_button('cache-clear', 'Clear Cache', '?clear-cache', array( get_plugin_page_hook('gantry-theme-settings', ''), get_plugin_page_hook('gantry-theme-overrides', 'gantry-theme-settings') ), array('class' => 'clear-cache')); }3. Now you should be able to access your WP admin. Please go to the Gantry Theme Options and click on Save Changes to resave your settings. Once your settings have been resaved, please revert the two modified above files to their original versions. Your site should be working fine now.
One more time we’re very sorry for this issue. We’ll try to fix this ASAP.
If you’ll send me your FTP and WP login details via email I can do the fix for you.
Kind regards,
JakubHi,
Please consider sending me WP and FTP login details just like alisondoyle. That way I’ll be able to investigate the issue and help you.
Thanks,
JakubI’m glad it worked 🙂
dg_baines – please try resaving your theme settings.
Forum: Plugins
In reply to: [Gantry 4 Framework] newest version breaks websiteHi,
Can you please download this file : http://cl.ly/3n452g36230d and compare it to the one you have ? Is the code exactly the same compared to the file you have ?
After updating to 1.31 please go to the Theme Options and resave settings – this is important step!
Thanks,
JakubHi,
Do you have the Gantry Cache enabled on your sites ? Did you try to resave theme options after update to 1.31 ? Did you cleaned your browser/site cache ? Please send me your login credentials and I’ll try to locate what can cause the issue. Please also remember to do the full backup of your site and database.
Thanks,
JakubHi,
Please try updating your site to Gantry 1.31 and see if it fixes your issue.
Thanks,
JakubForum: Plugins
In reply to: [Gantry 4 Framework] Breaks themeHi,
Can you please update the Gantry to the version 1.31 and see if this fixes the issue ?
Thanks,
JakubForum: Plugins
In reply to: [Gantry 4 Framework] newest version breaks websiteHi,
Fatal error: Call to a member function getGridcss() on a non-object in /.../wp-content/plugins/gantry/core/gantry.class.php on line 366This issue was only present when Gantry Cache was active – we fixed it in the version 1.31 Sorry about that!
Thanks,
JakubForum: Plugins
In reply to: [Gantry 4 Framework] newest version breaks websiteHi,
The first line of the maintenance mode gizmo is <?php so there’s no any string and this error shouldn’t appear – very odd. Can you please tell me on what your platform your server stands ? Windows, Linux ? Can you also please upload your maintenancemode.php gizmo somewhere so I could investigate it ?
Thanks,
JakubForum: Plugins
In reply to: [Gantry 4 Framework] Add a slider on HomepageHi,
Have you added your widget position both to the templateDetails.xml file and the index.php file ?
Thanks,