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
| /* | |
| * Only for Fronend Section | |
| * @since 1.0.0 | |
| */ | |
| (function($) { | |
| $(document).ready(function() { | |
| $('body').on('click', '.wpt_product_table_wrapper .wpt_thumbnails img', function() { |
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
| /** | |
| * Changing add to cart link with custom Text | |
| * @author Saiful Islam | |
| * | |
| * @global type $product getting Global Product variable for getting permalink | |
| * @return String Add to cart button link change | |
| */ | |
| function sfl_woocommerce_custom_add_to_cart_link_for_shop(){ | |
| global $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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> | |
| <script> | |
| $(document).ready(function(){ | |
| }); | |
| </script> | |
| </head> |
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 | |
| Class Database { | |
| public $host = DB_HOST; | |
| public $user = DB_USER; | |
| public $pass = DB_PASS; | |
| public $dbname = DB_NAME; | |
| public $link; | |
| public $error; |
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 | |
| /** | |
| * Getting Details from a Directory. | |
| * Project is coded by Saiful Islam. | |
| * | |
| * @author Saiful Islam <codersaiful@gmail.com> | |
| * @package Saiful Script | |
| * @link http://fb.com/codersaiful Saiful Islam Facebook Profile link. | |
| */ |
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
| package com.code.practice; | |
| import android.support.annotation.IdRes; | |
| import android.support.v7.app.AppCompatActivity; | |
| import android.os.Bundle; | |
| import android.view.View; | |
| import android.widget.Button; | |
| public class MainActivity extends AppCompatActivity { | |
| Button go_to_class; |
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
| package com.saiful.hello; | |
| import android.support.v7.app.AppCompatActivity; | |
| import android.os.Bundle; | |
| public class MainActivity extends AppCompatActivity { | |
| @Override | |
| protected void onCreate(Bundle savedInstanceState) { | |
| super.onCreate(savedInstanceState); |
NewerOlder