- Posts: 10
- Thank you received: 0
Landing page + Email content
Thankyou for a fantastic product.
I have a few queries.
1.)how do I edit a 'landing page' after an action, for example:
If an order is processed and payment made, the user is directed to this page:
/index.php?option=com_hikashop&view=category&layout=listing&Itemid=72&lang=en. How can I change this to just be say, index.php?
2.)When a user registers and confirms registration they are taken to this page:
Username:
Name:
Email Address:
Password:
Confirm Password:
Back-end Language:
Front-end Language:
User Editor:
Help Site:
Time zone
I would rather they return to basket / checkout if items are present in basket, if not then index.php / catagory page?
3.) How can I change the content on an email sent to user. for example order creation confirmation. I can see the design layout in Hikashop/System/Email, but where can I edit the actual content?
4.)I have odd symbols in a number of database fields - Greece, please see attached. Although I am using Greece as an example here, it looks quite common.
5.)Joomla question so sorry to ask on here.. When creating a menu for the footer, in the past I have been able to select 'Horizontal' in the display type in module. I do not have this option. Any ideas?
Many thanks
A
Please Log in or Create an account to join the conversation.
1. For that page you can enter the URL you want in the "return URL" option of your payment plugin.
2. I suppose that you're talking about the registration which happens via joomla. If you want to change that, you will have to change that in joomla.
groups.google.com/forum/?fromgroups#!top...-general/k58m8lWioSI
forum.joomla.org/viewtopic.php?p=923896
3. If you want to change the text of the emails, you can use translation overrides:
www.hikashop.com/en/download/languages.html#modify
4. That sounds like a problem of encoding format setting on your server. Please make sure that the default encoding of your server is set to UTF8 and you should not have that problem anymore.
5. I'm not sure about what you're talking about. Can you do a screenshot ?
Please Log in or Create an account to join the conversation.
Excellent, thank you.
2. I suppose that you're talking about the registration which happens via joomla. If you want to change that, you will have to change that in joomla.
groups.google.com/forum/?fromgroups#!top...-general/k58m8lWioSI
forum.joomla.org/viewtopic.php?p=923896
Ok, I will look into that.
3. If you want to change the text of the emails, you can use translation overrides:
www.hikashop.com/en/download/languages.html#modify
Again, thank you,
[/strike]
4. That sounds like a problem of encoding format setting on your server. Please make sure that the default encoding of your server is set to UTF8 and you should not have that problem anymore.
I have checked on PHPmyAdmin and char set is UTF_General_ci - I am assuming this is correct?
[strike]5. I'm not sure about what you're talking about. Can you do a screenshot ?
Don't worry, managed to fix this.
[/strike]
I am trying to edit the user control panel - I would like to add remove items from this but cannot find where this is? As default you have:
Edit your account information Manage your addresses View your orders Show the carts Show the wishlists Access to the affiliate program
Where do I find this in the back end?
Thanks
A
Please Log in or Create an account to join the conversation.
6. You can edit the file "cpanel" of the view "user" via the menu Display->Views and modify the $this->buttons array for that.
Please Log in or Create an account to join the conversation.
I included the following line in my .htaccess file : 'AddDefaultCharset UTF-8' - But this made no difference? Any ideas?
6. You can edit the file "cpanel" of the view "user" via the menu Display->Views and modify the $this->buttons array for that.
Sorry, I don't see where in this file I would add / remove specific items? I have a vague understanding of arrays, so I would have thought to remove a specific item I would delete the item from the source not by editing the array?
As an example if I wanted to remove the last item 'Access to the affiliate program', what would I need to change?
Many thanks,
A
Please Log in or Create an account to join the conversation.
Can you give a link to the shop so that we can see that popup to look at the html ?
6. For the affiliate program, it you don't want to use it, simply unpublish the affiliate plugin.
To remove the last element of an array you can use the array_pop function of PHP.
So you would add at the beginning of the file the code:
<?php array_pop($this->buttons); ?>
Please Log in or Create an account to join the conversation.
Ok, I checked your website and server responses and everything is in UTF8.
So the issue is actually that your zones encoding is screwed up.
I don't know what you did with them but the text of the zones in the database is apparently wrong.
The best will be to empty the tables "hikashop_zone" and "hikashop_zone_link" via your phpmyadmin and install HikaShop again so that it puts back all the default zone data which should then have the proper encoding.
Please Log in or Create an account to join the conversation.
How do I go about reinstalling hika without losing all settings and database values? -EDIT I have just downloaded the latest release of Hikashop - 2.1.3 and have done the below, dropping the tables and then recreating with sql (slightly edited to include my prefix. Unfortunately when I install I get a 500 error. /EDIT
Can I not just run something like:
DROP Hikashop_zone
DROP Hiksahop_zone_link
Then run an insert on demo data of the two tables?
I have just checked the sql file I have with demo data and it includes the odd symbols in that, checked the compressed file also and this too has the odd characters....? So as it stands I don't have a backup sql file with non-corrupted data?
Thanks,
Please Log in or Create an account to join the conversation.
nicolas wrote: 4. It could potentially aslo come from the component.php file of your template or something else.
Can you give a link to the shop so that we can see that popup to look at the html ?
6. For the affiliate program, it you don't want to use it, simply unpublish the affiliate plugin.
To remove the last element of an array you can use the array_pop function of PHP.
So you would add at the beginning of the file the code:
<?php array_pop($this->buttons); ?>
Sorry going back to the 'My Account' section. I am wanting to edit one of the menu options 'Account Details'. But I cannot see where this is. I have checked views for all permeatations relating to 'Account' and 'Details', but can find no reference to it. I have also used firebug to see if there is a hint in the code...
This is the seciton I want to edit initially:
Thanks again
Please Log in or Create an account to join the conversation.
My explanation was for the user control panel page of hikaShop.
There is no odd symbol in the demo SQL data that we provided.
Please make sure that you open the file with a text file editor which handles UTF8.
Please Log in or Create an account to join the conversation.
Any idea why my update to 2.1.3 will be error 500? What would cause this? I have changed my prefix for Database tables. from # to custom, will this affect the update?
Thanks
Please Log in or Create an account to join the conversation.
Where do you have changed this prefix ?
It's possible that it affect the update. In all the files we use "#_" and Joomla replace this in all the MySLQ requests with the database prefix set in the Joomla configuration.
So if you changed the "#_" Joomla will no more change the prefix automatically.
Please Log in or Create an account to join the conversation.
Xavier wrote: Hi,
Where do you have changed this prefix ?
It's possible that it affect the update. In all the files we use "#_" and Joomla replace this in all the MySLQ requests with the database prefix set in the Joomla configuration.
So if you changed the "#_" Joomla will no more change the prefix automatically.
Hi Xavier,
This is fine then, by changed I mean during install I selected my own prefix. This is stored in Joomla settings, so if the update takes this into account then it will not matter.
By the way I think you just updated your demo site in dropbox - The file is corrupt FYI.
The 500 Server error I was receiving I have gotten around - I remember when I initially installed I had a similar issue, Nicolas said it was likely down to server restrictions, I instaleld via ftp to negate this. Update complete and 'country zone' funny characters issue fixed.
Thanks again
Thanks
Ashley
Please Log in or Create an account to join the conversation.