This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Contact Us form to multiple email adresses | |
Configuration >> Email Options >> Set "Contact Us" Email Dropdown List | |
Set "Contact Us" Email Dropdown List | |
On the "Contact Us" Page, set the list of email addresses , in this format: Name 1 <email@address1>, Name 2 <email@address2> | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* https://www.zen-cart.com/showthread.php?176516-Banners-How-can-I-show-them-on-all-pages-EXCEPT-home&p=1007143#post1007143 */ | |
if (!this_is_home_page) { | |
// your code here | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* https://www.zen-cart.com/showthread.php?71519-How-do-i-make-banner-ads-appear-on-the-front-page-only&p=628667#post628667 */ | |
/* includes/templates/MYTEMPLATE/common/tpl_main_page.php - Display Banner everywhere EXCEPT homepage */ | |
if (!$this_is_home_page && (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2))) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* https://www.zen-cart.com/showthread.php?206857-Header-Banner-Choosing-how-to-display&p=1192586#post1192586 */ | |
/* includes/templates/MYTEMPLATE/common/tpl_main_page.php - Display banner on any page except the product_info page */ | |
<?php if (in_array($current_page_base,explode(",",'product_info')) ) { | |
// do nothing | |
} else { | |
?> | |
if (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2)) { | |
<?php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* https://www.zen-cart.com/showthread.php?206857-Header-Banner-Choosing-how-to-display&p=1192557#post1192557 */ | |
/* includes/templates/MYTEMPLATE/common/tpl_main_page.php - Display Banner when this is the homepage only */ | |
if ($this_is_home_page && (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2))) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://mmenu.frebsite.nl/ | |
http://www.tegdesign.com/tegansnyder-JQuery-Mobile-Slide-Menu/ | |
http://madebymade.github.io/jquery-navobile/ | |
http://alijafarian.com/jquery-horizontal-slideout-menu/ | |
http://www.webdesignerdepot.com/2014/04/how-to-create-mobile-style-slide-in-navigation/ | |
http://www.jquerybyexample.net/2014/02/mobile-menu-jquery-plugins-and-tutorial-list.html | |
http://www.queness.com/post/14244/side-out-sidebar-navigation-javascript-solutions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Method 1: http://dabblet.com/gist/e5a78f2d4bf50b6be4d3 | |
CSS: | |
div { | |
text-align:center; | |
} | |
h1 { | |
position: relative; | |
display: inline-block; | |
color: #818488; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://stackoverflow.com/questions/6666532/how-to-force-table-cell-td-content-to-wrap | |
table {border-collapse:collapse; table-layout:fixed;} | |
table td {word-wrap:break-word;} | |
Alternate solution: | |
td { | |
white-space: -o-pre-wrap; | |
word-wrap: break-word; | |
white-space: pre-wrap; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*apply better categories sidebox styling to wp4zen sideboxes*/ | |
#wpcategoriessideboxContent, #wppagessideboxContent, #wparchivessideboxContent{border-top:1px solid #dbdbce;padding: 0px 5px;} | |
/*bof better categories list formatting for wp4zen*/ | |
li.cat-item a, li.cat-item a:hover, li.cat-item a:active, li.page_item a, li.page_item a:hover, li.page_item a:active, #wparchivessideboxContent ul li a, #wparchivessideboxContent ul li a:hover, #wparchivessideboxContent ul li a:active{padding-left:40px;color:#0C4169 !important;} | |
li.cat-item:hover, li.cat-item:active, li.page_item:hover, li.page_item:active, #wparchivessideboxContent ul li:hover, #wparchivessideboxContent ul li:active{background-color: #7daf00;color:#0C4169;margin-left:-5px;margin-right:-5px;} | |
li.cat-item, li.page_item, #wparchivessideboxContent ul li {display: block;background-color: #fffffe;border-top: 0px solid #ffffff;border-bottom:1px solid #dbdbce;padding: 5px 4px 5px 0px;transition:background 2s ease;-webkit-transition:background 2s ease;-moz-tr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# See this Zen Cart FAQ: http://www.zen-cart.com/content.php?44-how-do-i-change-or-reset-my-admin-password-%28i-lost-it%29 | |
DELETE FROM admin WHERE admin_name = 'Admin'; | |
INSERT INTO admin (admin_name, admin_email, admin_pass, admin_profile) | |
VALUES ('Admin', 'admin@localhost', '351683ea4e19efe34874b501fdbf9792:9b', 1); |
NewerOlder