This file contains hidden or 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
//* Remove Post Meta from entry Footer | |
add_action( 'genesis_entry_content', 'tgt_remove_post_meta' ); | |
/** | |
* Remove Post Meta in Entry Footer site-wide excerpt on static Pages. | |
* | |
* @author Sridhar Katakam | |
* @link http://sridharkatakam.com/remove-post-meta-entry-footer-genesis/ | |
*/ | |
function tgt_remove_post_meta() { | |
if ( is_singular( 'page' ) ) { |
This file contains hidden or 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
/* Add a separator between menu items in site header */ | |
.site-header ul.menu > li a { | |
display: inline-block; | |
vertical-align: middle; | |
} | |
.site-header ul.menu > li:after { | |
content: "|"; | |
font-size: 0.9em; | |
} |
This file contains hidden or 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
//* Customize Read More Link | |
add_filter( 'the_content_more_link', 'customize_wp_read_more_link' ); | |
function customize_wp_read_more_link() { | |
return '<a class="more-link" href="' . get_permalink() . '">' . __( 'Read More', 'tgt-theme' ) . '</a>'; | |
} |
This file contains hidden or 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
/*Use Image Button with Genesis eNews Extended*/ | |
.enews-widget #subbutton { | |
transition: none; | |
text-decoration: none !important; | |
padding: 0px; | |
margin-top: 1em; | |
border: none; | |
display: block; | |
color: #FFFFFF !important; |
This file contains hidden or 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
Visibility | |
The way to go for column “visibility” is as follows: | |
1 = Not Visible Individually | |
2 = Catalog | |
3 = Search | |
4 = Catalog, Search | |
Delete Products | |
Activate Magmi Deleter Plugin | |
"sku","magmi:delete" |
This file contains hidden or 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
Uninstall Magento Module | |
http://www.host1plus.com/tutorials/cms-tutorials/magento/magento-installation/how-to-uninstall-module-without-magento-connect-manager/ | |
There is a way to uninstal module without Magento connect manager by setting their active flags to false values in “app/etc/modules/” directory. If we will check this directory we will find lots of .xml based files that are storing various settings for Magento modules. | |
As we may notice there are line containing <active>true</active> | |
which is responsible for defining whether module is in the active state or not. In order to change the state to disabled, we can simply replace “true” with “false” and save the file. After that we can just go to modules directory and delete required module files. In the case there was any information stored in the database which is related to that module, it might be worth to delete such records as well. |
This file contains hidden or 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
/* Customize Footer Menu */ | |
.footer-widgets li { | |
display: inline-block; | |
border-bottom: none; | |
margin-bottom: 10px; | |
padding-bottom: 10px; | |
} | |
.footer-widgets ul.menu > li a { | |
display: inline-block; | |
vertical-align: middle; |
This file contains hidden or 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
Agregar una columna al final del Excel | |
http://wiki.magmi.org/index.php?title=Custom_Options | |
(0) Opcional | |
(1) Obligatorio | |
Para un campo de texto: | |
FILA TITULO: Texto:field:1:1 (el segundo 1 define el orden, ante la duda poner siempre 1) | |
FILA PRODUCTO: :fixed:0::35 (35 es el número de caracteres) | |
FILA PRODUCTO: :fixed:0.5::35 (con inremento de 0.5 en precio) |
This file contains hidden or 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
/* | |
* Header with Split Menu | |
*/ | |
//* Remove the Header Right widget area | |
unregister_sidebar( 'header-right' ); | |
// Register Header Navigation Menu | |
register_nav_menu( 'header', 'Header Navigation Menu' ); | |
// Add Theme Support for Genesis Menus |