URL rewrite redirect non-www to www domain

Issue:  My client wants to redirect his site to http://www.virtuosomaster.com instead of http://virtuosomaster.com in ASP/IIS Server Solutions: Create a web.config file with the content below: <?xml version=”1.0″ encoding=”UTF-8″?> <configuration> <system.webServer> <rewrite> <rules> <rule name=”Default Redirect” stopProcessing=”true”> <match url=”^default\.asp$” /> <action type=”Redirect” url=”/” redirectType=”Permanent” /> </rule> <rule name=”Redirect inktelligence.co.uk.com to www” patternSyntax=”Wildcard” stopProcessing=”true”> <match url=”*” /> [...]

>>read more

Adding domain on a Bitnami Server

Get the Elastic IP of you EC2 Instances LOgin in your AWS EC2 and click the instance and get the Elastic IP Change A Record in DNS Record Login in Bitnami Server and add your domain in /etc/hosts $ sudo vi /etc/hosts … <NEW_ELASTIC_IP> www.transaffinity.com.au Setup a virtual host to point to your new blog [...]

>>read more

Host your WordPress image in S3 AWS using Amazon S3 Plugin for WordPress by TanTanNoodles

Login in your AWS S3 console and add bucket Make the bucket Public Click the bucket and on Permision Tab click Add Bucket Policy { “Version”: “2008-10-17″, “Id”: “bf37b797-ad4f-4d1c-a6f7-d22865541d8d”, “Statement”: [ { "Sid": "AllowPublicRead", "Effect": "Allow", "Principal": { "AWS": "*" }, "Action": "s3:GetObject", "Resource": "arn:aws:s3:::<--BUCKET NAME-->/*" } ] } Add CNAME images to your domain [...]

>>read more

How to login using WinSCP in Bitnami AWS EC2

Add IP and Username and Private key Put the keyphrase

>>read more

How to login using putty in Bitnami AWS EC2

Put IP Add the private Key file Click in AUTH in Connection –> SSH Click Open Add Username and Key Phrase

>>read more

How to get category name and category id in product page loop jigoshop wordpress

Issue:  How to get category name and id with in the loop of  jigoshop wordpress plugin. Solutions: Add this inside the loop: Category with link: $cat_name= $_product->get_categories( ‘, ‘, ”, ”); $str=$cat_name; echo $str; Category without link: $cat_name= $_product->get_categories( ‘, ‘, ”, ”); $str=$cat_name; preg_match_all(“!<a [^>]+>(.*?)</a>!”, $str, $matches); $cat_name =$matches[1][0]; echo $cat_name; To get category [...]

>>read more

How to put additional custom field in jigoshop add product page

Issue:  My client wants a additional field in jigoshop add product page. Solutions : 1. Edit jigoshop/jigoshop_taxonomy.php 2. Look for ‘supports’ => array( ‘title’, ‘editor’, ‘thumbnail’, ‘comments’/*, ‘page-attributes’*/ ), change to : ‘supports’ => array( ‘title’, ‘editor’, ‘thumbnail’, ‘comments’,’custom-fields’ /*, ‘page-attributes’*/ ),

>>read more

WordPress as a manual manager – File manager

I’m looking for a good manual manager where i can upload, view  and download pdf file. I end up using wordpress to do it. Check out the link below : Manuals for Commercial Laundry Equipment & Parts

>>read more

How to add product filter or sort product in jigoshop base on post_date, title, price, menu_order

Issue: How to add filter in archive product page in jigoshop  to sort it by price, date that product inputed , by specified order, and title. Solutions: Buy this plugin. Demo: http://99tasks.com/browse-services

>>read more

How to add nice pagenation in jigoshop archives or category page

Problem: I want to add pagination in category page in jigoshop Solutions: 1. Install WP PageNavi plugin. 2. Add in your functions.php remove_action( ‘jigoshop_pagination’, ‘jigoshop_pagination’, 10 ); add_action( ‘jigoshop_pagination’, ‘my_jigoshop_pagination’, 10 ); function my_jigoshop_pagination() { if ( function_exists( ‘wp_pagenavi’ )) : wp_pagenavi(); else : jigoshop_pagination(); endif; }

>>read more
« Newer PostsOlder Posts »