
Search In
Hello
Today we will discuss in details about the config.xml file in PhoneGap
The config.xml file allows developers to specify metadata about their application. To load the config.xml file correctly it should be at the top level of the application
If you want to reorder product tabs, you can do this according to you wish as you want, just add the below code to your function.php.
<?php
add_filter( 'woocommerce_product_tabs', 'FindNerd_woo_reorder_tabs', 90 );
function FindNerd_woo_reorder_t
Here is a function which returns an image with different background of you choice.
- (UIImage* )setBackgroundImageByColor:(UIColor *)backgroundColor withFrame:(CGRect )rect{
// tcv - temporary colored view
UIView *tcv = [[UIView alloc] initWithFram
To invalidate spring security session you need to follow below steps:
1. Add Logout configuration in your applicationContext-security.xml file
Set logout-success-url attribute to /login.jsp. After logout user will be redirected to this page.
<
Stylus is a dynamic style-sheet language, it's design influenced by Sass and LESS. It makes your development more faster, smarter and more powerful then ever before. you can change your all color scheme in just a single line of code.
Quick and Easy
When we try a wrong URL in cakephp then it displays an error page with error message:
"Controller class could not be found".
We can override this message and also can handle this exception using Error.php of cake. We can override this function in
Through this code we can use NSLOG whenever required. Write this snippet in some common file(say utility) so that it would be easily handled throughout the project. Make sure class should import utility class to handle NSLog.
All you need is to chang
Here I have illustrated how to rotate image using java code.
Impot imgscalr-lib-4.2.jar for Scalr class to rotated image on various angles.
Below code will rotated image on 90 degree angle.
File file= new File("file-path");
BufferedImage src =
Hello reader's in this blog I will guide you how to import "Wordpress functions in custom.php file?".
First Create a custom.php file into your theme and put your code into it.
Below is the example of image crop function into custom.php :
<?php
Trigger function has an interesting concept as it is used to execute all handlers and behaviors attached to the matched elements for the given event type.
For example, If I want to have a click event on a button without clicking, we can use this func
