Free Addon: Info Popup for customers

Hi Dave,

#in file [color=#ff0000][SKIN_PATH_DEPEND_OF_CSCART_VERSION]/addons/popup_info/hooks/index/footer.post.tpl[/color]


[quote]1. Remove the OK button OR remove the X at the top-right corner - no need for both.[/quote]

to remove OK btn just replace php Ok: function() {$ldelim} $( this ).dialog( "close" ); {$rdelim} with ```php
//Ok: function() {$ldelim} $( this ).dialog( “close” ); {$rdelim}

<br />
[quote]2. Remove the drag-out corner at the bottom-right corner - already have a size variable.[/quote]<br />
after ```php
modal: true,
``` add ```php
resizable: false,
```<br />
<br />
Please let me know if is what you need <img src="upload://ssa1U17ndImgNZSdwFNmOF2yUgM.png" class="bbc_emoticon" alt=";)"><br />
<br />
If anybody need the path of the file (footer.post.tpl) please leave the cs-cart version and i will add.<br />
<br />
---<br />
Valentin<br />
[color=#808080][size=2]part of hungryweb.net[/size][/color]

nice work.

[quote name='Vali' timestamp='1367107688' post='160846']

Hi,

Popup Info addon can be used for all general messages for the customers, he uses cookie sow the popup can be seen only ones, in the archive can be found also installation steps.



Can be downloaded for v3.x here , for v2.2.x from here and for v4.0.1 from here





Regards,





Valentin

[/quote]



Thank you very much!!!



I have download the version for v.2.2. How I can remove Ok button and add width?

Hello

Pls help me

I have mega menu pro v2 adon and this menu list up side on poup menu

how I make do this true runing

Hi,

Please add css code bellow at the end of the [color=#ff0000]design/themes/[THEME_NAME]/css/styles.css[/color] (v4 path)
.ui-widget-content.ui-dialog{
z-index:9999!important
}




I hope that helps,





Valentin

[color=#808080][size=2]part of hungryweb.net[/size][/color]

Hello Vali,



[color=#282828][font=arial, verdana, tahoma, sans-serif]I have the version for v.2.2. How I can remove Ok button and add width? [/font][/color]



[color=#282828][font=arial, verdana, tahoma, sans-serif]Please help me.[/font][/color]

Hi,

Please replace content from file [color=#ff0000]skins/[SKIN_NAME]/customer/addons/popup_info/hooks/index/footer.post.tpl[/color] with:```php

{literal}


{/literal}

{strip}{assign var=“banner” value=$addons.popup_info.banner_id|fn_get_banner_data}{/strip}

{$banner.description}

```

You can change width after your preferences, i have added 400

I hope that helps,

---
Valentin
[color=#808080][size=2]part of hungryweb.net[/size][/color]

[quote name=‘Vali’ timestamp=‘1385672099’ post=‘172586’]

Hi,

Please replace content from file [color=#ff0000]skins/[SKIN_NAME]/customer/addons/popup_info/hooks/index/footer.post.tpl[/color] with:```php


{literal}


{/literal}

{strip}{assign var=“banner” value=$addons.popup_info.banner_id|fn_get_banner_data}{/strip}

{$banner.description}

<br />
You can change width after your preferences, i have added 400<br />
<br />
I hope that helps,<br />
<br />
---<br />
Valentin<br />
[color=#808080][size=2]part of hungryweb.net[/size][/color]<br />
[/quote]<br />
<br />
[b]Thank you very much Valentin!! Great job !! <img src="upload://iKNGSw3qcRIEmXySa8gItY6Gczg.gif" class="bbc_emoticon" alt=":grin:"> [/b]

You are welcome

Thanks for this, very useful. Does anyone know for sure what the crawling implications of having the pop up are? i.e. am I right in assuming that Google Bot and other crawlers will still be able to access the site without problem and also, not crawling this pop up?

Hi Valentin



Is it easy to adapt this add-on and make the pop up appear on the 2nd page view (instead of the first) after the user comes to the site?



If not possible or difficult for you to explain how to do it, is it easier to maybe add a timer so that it appears x seconds after the user has landed on the site and had a chance to look around a bit?



Thanks!

Hi Simos,

Yes, both requirements can be done ( second page, timer ) but this require some extra development.



Please PM me for extra development.





Valentin

Nice addon [color=#282828][font=arial, verdana, tahoma, sans-serif]Valentin[/font][/color]



[color=#282828][font=arial, verdana, tahoma, sans-serif]Do you have one that will work with 4.0.3?[/font][/color]

It is a great addon. It works on 4.03 and 4.1.1.

I have v4.0.3. Installed addon. One line inflated in cpanel. Can't see addon in admin area. Any suggestions?



Thanks.

Now add-on can be simply downloaded from our new website www.hungryweb.net





Valentin

[color=#808080][size=2]part of hungryweb.net[/size][/color]

Hi Valentin,



How about this kind of popup?



https://photos-3.dropbox.com/t/0/AAAFhrtcv-uIO_bu9_PSoElyTHoU_hiQhKjxb29OAGrdrw/12/221194152/png/1024x768/3/1393495200/0/2/shopclues2.PNG/BT8xfAtcTGboIGwaNgZGzS0xB7w2cST6vCSZ0hLw8wQ



I found it on shopclues.com which is evidently built on Cs-Cart.



They have this awesome popup where the fb register form will be autofilled once you are logged in to facebook and view the website.



I'd recommend you to check it out and share your views on how we can build it.



Regards,



NaMo

Hi NaMo,

You can use add-on and add into the banner description (html + a little js to activate facebook comments on right side when the popup is open) and you can create a popup like the one you find.





Valentin

[color=#808080][size=2]part of hungryweb.net[/size][/color]

Dear Vali

I have multi vendor version 3.0.3

is there are any way to make this addons appear in specific page not only on the home page

as example to show some message on checkout page and someother message in product page …etc

thank you

You can use if statement, and add all content from:

#v4.x design/themes/[SKIN_NAME]/templates/addons/hw_popup_info/hooks/index/footer.post.tpl

#for checkout.cart


{if $runtime.controller == 'checkout' && $runtime.mode == 'view'}
...
{/if}


#for products.view, product_id=1


{if $runtime.controller == 'products' && $runtime.view== 'view' && $smarty.request.product_id==1}
...
{/if}




#v3.x skins/[SKIN_NAME]/customer/addons/hw_popup_info/hooks/index/footer.post.tpl

#for checkout.cart


{if $controller == 'checkout' && $mode == 'view'}
...
{/if}


#for products.view, product_id=1


{if $controller == 'products' && $view== 'view' && $smarty.request.product_id==1}
...
{/if}




I hope that helps,





Valentin

[color=#808080][size=2]part of hungryweb.net[/size][/color]