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
| <!-- Google Code for Remarketing Tag --> | |
| <script type="text/javascript"> | |
| var classes = document.getElementById("bdyMaster").className; // Selecting the array of classes assigned to the body | |
| if(classes.indexOf('nextProductDetail') > -1){ // Check for product page class | |
| // Reading Product ID ad Price | |
| var pidWrapper = document.getElementsByClassName("nextProductDetailTop"); | |
| var price = document.getElementById("ctl00_ctl00_ctl00_cphMain_cphMain_cphMain_pdtProduct_spnDisplayedPrice").innerHTML; | |
| var google_tag_params = { | |
| ecomm_prodid: pidWrapper[0].getAttribute('data-productid'), | |
| ecomm_pagetype: 'product', |
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
| <script type="text/javascript"> | |
| var google_tag_params = { | |
| ecomm_prodid: "REPLACE_WITH_STRING_VALUE", | |
| ecomm_pagetype: "REPLACE_WITH_STRING_VALUE", | |
| ecomm_totalvalue: REPLACE_WITH_STRING_VALUE | |
| }; | |
| </script> | |
| <script type="text/javascript"> | |
| /* <![CDATA[ */ | |
| var google_conversion_id = xxxxxxxx; |
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
| // Update the following code wp-login.php | |
| // WP's Code | |
| <h1><a href="<?php echo esc_url( $login_header_url ); ?>" title="<?php echo esc_attr( $login_header_title ); ?>" tabindex="-1"><?php bloginfo( 'name' ); ?></a></h1> | |
| // Your Code | |
| <h1><a href="http://innovatelogics.com" title="Innovate Logics" tabindex="-1">Innovate Logics</a></h1> |
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
| <?php | |
| // Custom WP Login Page | |
| function il_logo() { ?> | |
| <style type="text/css"> | |
| .login h1 a { | |
| background-image: url(<?php echo get_stylesheet_directory_uri(); ?>/images/logo.png); | |
| width: 270px; | |
| background-size: contain; | |
| } | |
| </style> |
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
| int main(void){ | |
| if(printf("Hello")==NULL){ | |
| printf("Hello"); | |
| }else{ | |
| printf("World"); | |
| } |
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
| Void main(){ | |
| char ch[10] = "Vishal"; | |
| printf("%s",ch,"c""question" "bank"); | |
| printf("\n"); | |
| printf("%s","c""question" "bank",ch); | |
| getch(); | |
| } |