Monday, 19 July 2010

Getting Listed on Google Products / Shopping

What is Google Shopping and why get listed on Google Shopping ?
 You may or may not have noticed the button for 'Shopping' on the top of the google search page. 


This is powered by Google Base.  
Say for example if you were buying some new surfboard fins and liked the 'FCS K2.1 PERFORMANCE CORE'  
You can search this in Google Shopping Google Base and you would get a list of all the online stores that sell this product.   You can then change the order of the listings to see which product is cheaper etc. 
 There are even Ipod Apps where you can scan barcodes and this will then check google base for other products the same online. Movie App - It's pretty likely they'll be many more things like this appearing over time. 
 SO YOU NEED TO GET LISTED GOOGLE BASE THEN!  HOW DO YOU DO THAT?

We'll you can either do it yourself - check http://www.google.com/base/  .  It's can be a bit tricky though if you're not used to xml sheets etc, so the second option may be more appealing to and that is to pay some else to do it like myself.
For only £9.99 a month you can have upto 100 products listed.*   If you have more than 100 products then please contact me.  As far as I know this is the best price on getting listed on google base / google shopping that I can find on line.  
Check Escape Surfboards listings for and idea of how all your products will look on line  Surf Shop on Google Shopping  

If you'd like to have this service for your website use our shopping cart here ADD YOUR PRODUCTS TO GOOGLE SHOPPING

re information on how we can promote your online website business.  



Saturday, 17 July 2010

Get short easy to remember Facebook Fanpage URLS


The default of Facebook fanpages is that when you start one you get a URL like this


however if you want something shorter and more cool like. 


then all you need to do is visit this page

www.facebook.com/username  and you can assign short names to your fanpages. 


ITS AS EASY AS THAT :))












Friday, 2 July 2010

Making GK3 News Show ( mod_news_show_gk3 ) wider

There's two elements we need to do to make the GK3 News Module (Joomla!) bigger.  Firstly the width is preset in the module itself.

OPEN  modules/mod_news_show_gk3/tmpl/view.default.php


FIND

table mstyle; ?> class="gk_news_show_table" id="module_unique_id; ?>">


DELETE mstyle; ?> 



Now we can set the width from our template.css  ( or wherever you want to put it from inside your template )


for example 

#newsshow1 {
width:100%;
}


you can change the class id from inside the the module administration. 
Hope this helps you.




Wednesday, 23 June 2010

Joomla Module Frontpage not showing latest article

On the frontpage of Escape Surfboards Media Pages - http://www.escapesurfboards.biz I've used the Joomla module Mini Front Page ( mod_minifrontpage ) to display the latest blog entry for the Surf Reports category.
However I was getting a problem with the article not being the latest entry. A small change to the mySql statement in the helper file for this module has sorted this problem out in this scenario.


OPEN modules/mod_minifrontpage/helper.php


FIND line 95 - which should be the ORDER BY command.

I changed this to

. "\n ORDER BY a.id DESC "



this now works for me.








Surf Report:Polzeath Surf Reports

Blogs - Surfboard Manufacturing Blogs, SUP Blogs, Kite Boarding Blogs, Retro Surfing Blogs

Gallery - Polzeath Surf Pictures, constantine surf photos, UK surfing pictures

Videos - Surfing equipment videos, surf technical videos, surf equipment videos

Technical - Polzeath Ding Repair, custom kite boards daymer, surfboard artwork cornwall

 

 

 

Friday, 11 June 2010

Getting rid of  à from Mysql Searchs.

Getting rid of  à from Mysql Searchs.


I was returning a search from a MySQL database and in my results I'm getting these signs around £ signs 'Â Ã' .

The way to get rid of this was to change the collation of this table in MySQL. It was latin and after changing it to Utf8_unicode_ci .

Tuesday, 1 June 2010

stop editPlus overtyping

Today when I turned started to use my EditPlus software I found I could not use the return button as I could before. Insted of creating a new line it would just drop to the line below. Also when editing it would overtype.

I could not find any information on this from google searches. So after solving this problem have created this blog in the hope you will find it and save you some time.

The searches I made in Google where.

Edit plus overtyping

stop editplus overtyping

editPlus return button not working

editPlus turn off overtyping


I could not find anything of use here or in the softwares documentation so had to cover every option I could in the menu.

What you need to do it is turn off the 'auto indent' under the 'Document' menu item on the top menu.



Hope this helps you out.

Wednesday, 19 May 2010

Joomla - Customizing Mini Ad Spot css

I was commissioned to create a menu item that would display a few adverts - that would be

a image for a company > each one on different coloured backgrounds and they would need

to display randomly.

On this version of Joomla I already had Flexbanner - which is a VERY flexible advertising

manager this would do what I needed except for the last part. I couldn't seem to

randomise the adverts. If you know an answer to this let me know.

After checking out a few Advertising problems and finding problems with them, in a few

instances 'security' issues seemed to be weak - I found Mi

ni Ad Spot



This does exaclty what I needed only I needed to write a little css hack so that the

backgrounds displayed properly.

Here's what I need to change. NOTE! YOULL NEED TO GET RID OF SPACES AROUND THE < or >'s


>> Download the module to you harddrive

>> OPEN modules/mod_miniadspot/tmpl/default.php

>> on line 72, 76 , 81

FIND


< div style="float:left; display: inline; " >

CHANGE TO

< div class="miniad" style="float:left; display: inline; " >



!! note: now you could either just paste the ccs below into your template.css in the template your using. However if like me you use more than 1 template on your site you'll need to call it up from inside the module.


OPEN

modules/mod_miniadspot/mod_miniadspot.xml


FIND:

helper.php

ADD UNDERNEATH:


< filename >css/style.css


CREATE a new folder in modules/mod_miniadspot/ called 'css'

CREATE a new file named 'style.css'

paste this code or similar into it.



UPLOAD THESE FILES