Re: Responsive Sheffield Blue v2.0
Thank you for explaining this so well. I have been looking for this solution for awhile! This worked perfectly!:smile:
Re: Responsive Sheffield Blue V 2.0!
Hi Anne,
I installed the template, looks good, then I was making some changes and all of a sudden I cannot access my store. I can logon to my admin but I get a 500 error in my store
www.benzbonz.biz/store
Re: Responsive Sheffield Blue V 2.0!
The www.benzbonz.biz page isn’t working
www.benzbonz.biz is currently unable to handle this request.
500
Re: Responsive Sheffield Blue v2.0
It was me removing payment options I think, working now
Re: Responsive Sheffield Blue V 2.0!
Quote:
Originally Posted by
jpda
The file mentioned above is: YOUR_ADMIN_FOLDER/includes/init_includes/init_responsive_sheffield_blue.php .
Currently starting at line 30:
PHP Code:
$db->Execute("INSERT IGNORE INTO " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) VALUES
('Version', '" . $module_constant . "', '0.0.0', 'Version installed:', " . $configuration_group_id . ", 0, NOW(), NOW(), NULL, NULL),
('Home Page Slideshow', 'RSB_SLIDER_STATUS', 'true', 'Activate Home Page Slideshow', " . $configuration_group_id . ", 1, NOW(), NOW(), 'zen_cfg_select_option(array(\'true\', \'false\'),', NULL),
('EZ Pages in Header Menu', 'SHOW_EZ_PAGES_MENU', 'true', 'Shows the menu option for EZ pages/important links in the header menu', " . $configuration_group_id . ", 3, NOW(), NOW(),'zen_cfg_select_option(array(\'true\', \'false\'),', NULL);");
Replace by:
PHP Code:
$db->Execute("INSERT IGNORE INTO " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) VALUES
('Version', '" . $module_constant . "', '0.0.0', 'Version installed:', " . $configuration_group_id . ", 0, NOW(), NOW(), NULL, NULL),
('Home Page Slideshow', 'RSB_SLIDER_STATUS', 'true', 'Activate Home Page Slideshow', " . $configuration_group_id . ", 1, NOW(), NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
('EZ Pages in Header Menu', 'SHOW_EZ_PAGES_MENU', 'true', 'Shows the menu option for EZ pages/important links in the header menu', " . $configuration_group_id . ", 3, NOW(), NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),');");
This change will NOT resolve the issue if the template has been installed already. You might want to apply it to the distributed file for future installs. To immediately solve the issue, change the values in the database using phpadmin or your favourite equivalent.
Always BACKUP your database before making changes!!
Thanks,
jpda
This still needs to be fixed, particularly if the module is not going to continually re-install itself.
Re: Responsive Sheffield Blue v2.0
Just installed this template on a local store and noted that in admin all the modules (shipping, payment etc) were showing 'Flexible Footer Menu' as the heading title.
So I simply changed a couple of files:
1. Your_Admin/includes/languages/english/extra_definitions/flexible_footer_menu.php around line 11
PHP Code:
define('HEADING_TITLE','Flexible Footer Menu');
changed to
PHP Code:
define('HEADING_TITLE_FLEXIBLE_FOOTER_MENU','Flexible Footer Menu');
Then in Your_Admin/flexible_footer_menu.php around line 142
PHP Code:
<td class="pageHeading"><?php echo HEADING_TITLE; ?></td>
changed to
PHP Code:
<td class="pageHeading"><?php echo HEADING_TITLE_FLEXIBLE_FOOTER_MENU; ?></td>
and that fixed the headings for all modules in admin.
I vaguely remember that this was also an issue in other responsive templates (Westminster New ???) - not sure.....
Re: Responsive Sheffield Blue v2.0
I have my sheffield blue template working now. It looks awesome thank you Anne.
Some issues I've come across.
1) Clicking on a category or subcategory that does not have an image file, you MUST click on the text, clicking just in the box doesn't take you anywhere.
2) On a tablet, the category drop down box goes away after about 3 seconds.
A few smaller issues, but they're probably me not knowing what I'm doing.
But none the less a 100% improvement over my old zen cart store. thanks again
1 Attachment(s)
Re: Responsive Sheffield Blue v2.0
I found another issue that I need help with.
When main_page=no_account I get
In the new account wrong things are displayedAttachment 16325
Re: Responsive Sheffield Blue v2.0
Frank18:
Post #976:
Quote:
"Just installed this template on a local store and noted that in admin all the modules (shipping, payment etc) were showing 'Flexible Footer Menu' as the heading title."
Just wanted to say "Thanks Much" for this contribution. Really appreciate it. got that straightened out now!
Kind regards,
Silver
Re: Responsive Sheffield Blue v2.0
Quote:
Originally Posted by
SilverHD
Frank18:
Post #976:
Just wanted to say "Thanks Much" for this contribution. Really appreciate it. got that straightened out now!
Kind regards,
Silver
My pleasure :smile: