Advanced Search

Search Results (Searched for: tax category)

16 Apr 2024 07:17

Allow vendors to set their own sales tax?

Category: HikaMarket

Hello,

HikaShop (and so HikaMarket) doesn't allow you to enter a price with and without tax at the same time.
One of them need to be fill by the user and the other is processed dynamically depending the tax rules (via the tax category).

You can use the HikaMarket template system if you want to force the tax category for all new products.
By putting the tax category in the template you will choose the default value ; and if you remove the ACL to edit the tax category, that value will become a forced value.

Regards,
02 Apr 2024 07:22

Allow vendors to set their own sales tax?

Category: HikaMarket

Hello,

Vendors can set-up the tax category for their products ; you can also use the "product template" system to force the values depending the vendor (via the template).

If you want to handle US taxes, we highly recommend to you "TaxCloud".

Regards,
25 Mar 2024 15:52

Plugin Hikashop Matomo : Uncaught SyntaxError: Unexpected token 'false'

Category: Support en Français (French Support)

Il manquait une virgule ligne 162 du fichier matomo.php du plugin dans sa version 1.0.1
"_paq.push(['setEcommerceView',
	false, // (Required) productSKU
	false, // (Optional) productName
	".json_encode($category->category_name)."
	false // (Optional) price
]);"

remplacé par :
"_paq.push(['setEcommerceView',
	false, // (Required) productSKU
	false, // (Optional) productName
	".json_encode($category->category_name).",
	false // (Optional) price
]);

23 Mar 2024 10:07

Order Size Limited Sales Tax

Category: Taxes

Hi,

Adding an extra charge of 1% with a threshold above which the charged amount is flat is possible with the cart fees plugin:
www.hikashop.com/marketplace/product/279-cart-fee.html
With two formulas:
- one with a condition {price}<5000 and a formula {price}*0.01
- one with a condition {price}>=5000 and a formula 50
So that's not a problem.

The big problem you'll have is that there is no mechanism to restrict a formula based on the county. In fact, there is no easy way to know the county based on the address of the user.
It would first require an integration with a paid service like opencagedata.com/api to provide the address and get back the county, so that you can then apply the correct charge based on the county ( pointmatch.floridarevenue.com/General/Di...alesSurtaxRates.aspx )

Also, the surtax might not apply based on the type of product being sold:
floridarevenue.com/taxes/taxesfees/Pages/sales_tax.aspx
For example, if you sell services as well as physical products, you can't blindly take into account the total amount of the order, but only the portion for the type of product for which the surtax applies.

So, if you want to get a complete solution, handling both the product type and different rates for different counties, with a threshold, I'm afraid the only solution is to develop a custom plugin to handle this.
By implementing the onHikashopGetTax(&$obj, $zone_id, $tax_category_id, $type, &$matches, &$taxPlans) event in a hikashop plugin, you can force the list of taxes in $obj->taxRates (with objects similar to what you have in $matches or $taxPlans), empty $matches and $taxPlans and the system will us your tax rate objects to calculate the tax. And to base yourself on the user address, you can load the cart address:
$checkoutHelper = hikashopCheckoutHelper::get();
$cart = $checkoutHelper->getCart();
echo $cart->shipping_address->address_city;
That way, you can pass the address to the API of the service to get back the county name.
And you can use $tax_category_id to check the type of product.
And then, you need to implement the event onAfterCartShippingLoad(&$cart) to check if the surtax calculated goes above the threshold and if so you can force the value and recalculate the total.
So, if you're a skilled developer, or can hire one, with the information above, it should be totally possible to do it. It's not simple though and it will require at least a few days of work, if not a few weeks.

A better solution would be to use TaxCloud: www.hikashop.com/support/documentation/260-taxcloud.html
The integration plugin is included for free in HikaShop. And with it, TaxCloud will calculate the taxes for your products based on their TIC and the address of the user.
13 Mar 2024 12:25

GA4 plugin results in ga4 + gtag + ads

Category: Reports & Statistics

Yes, it seems like client_id is indeed fine and i see no errors:
BluePsyduck\Ga4MeasurementProtocol\Request\Payload Object
(
[clientId] => 787889507.1710273916
[userId] =>
[timestampMicros] =>
[userProperties] => Array
(
)

[nonPersonalizedAds] =>
[events] => Array
(
[0] => BluePsyduck\Ga4MeasurementProtocol\Request\Event\PurchaseEvent Object
(
[currency] => EUR
[transactionId] => D1L8T34
[value] => 34.95
[affiliation] =>
[coupon] =>
[shipping] => 0
[tax] => 6.07
[items] => Array
(
[0] => BluePsyduck\Ga4MeasurementProtocol\Request\Event\Item Object
(
[itemId] => 6011431748786_O
[itemName] => Lightbenders Oranje zwart
[affiliation] =>
[coupon] =>
[currency] => EUR
[creativeName] =>
[creativeSlot] =>
[discount] =>
[index] => 0
[itemBrand] =>
[itemCategory] => "UV400 filter brillen"
[itemCategory2] => "Alles"
[itemCategory3] =>
[itemCategory4] =>
[itemCategory5] =>
[itemListId] =>
[itemListName] =>
[itemVariant] =>
[locationId] =>
[price] => 34.95
[promotionId] =>
[promotionName] =>
[quantity] => 1
)

)

[session_id] => 1710273915
[engagement_time_msec] => 1
)

)

)

Hope any new ideas pop up, don't wish to need to go back to my developer to code this into hikashop for 300usd just to make it work. Thanks already.
19 Feb 2024 13:51

Create custom zones for shipping

Category: Shipping Methods

Hi!

I'm selling only in Greece. Okay so i removed the Zone Greece from the tax category right?
I changed everything back to how you had it in the first place, but still it does not work.
No courier shipping methods are displayed, i set up a courier shipping method for each state of the country "Εκτός Αττικής (other cities)" and 2 courier shipping methods for the other countries.
I go to checkout and i see no courier methods there.

Thank you
19 Feb 2024 09:14

Create custom zones for shipping

Category: Shipping Methods

Hi Nicolas!

Thank you for your time but it was not working as i wanted it to.
As i explained to you, i saw and checked what you suggested
I think you need to remove the "display limited to" in the address_state field so that it is always displayed. That way, it will refresh based on the selected country, and it will overwrite the address_state in the database each time you save an address.
but it wasn't working for me, i don't know how it worked for you. The result was exactly the same.

The thing is that i need Greece as my main tax category so isn't there going to be a problem if i disable Greece?

Thank you
10 Jan 2024 21:17

Help Setting up Sales Tax for different states

Category: Install & Update

Hi,

First, you need to check which "tax category" is configured in your products.
Then, go in System>Taxes and click on the "manage tax rates" button. There, click on the "new" button and create a new tax rate with the name "sales tax" and the value 8.375%
Then, go back to System>Taxes and click on the "new" button. There create a tax rule with the tax category of your products and that new tax rate and in the zone setting select the Nevada state zone.
Make sure this tax rule is enabled and that you don't have other tax rules enabled.
Then, disable the TaxCloud plugin and it should work like you want.
27 Oct 2023 12:07

Add additional costs at "Upload your image" field

Category: Content Creation

Hi,

I can't check anything with just the link of the page as the problem is on the server side.
I'm suspecting that the problem might be that the plugin is trying to use the tax category id of the variant and if empty, it doesn't look for the tax category id of the main product in order to calculate the taxes on the values of the tags.
Could you provide a FTP access so that I could check things out ?
You can use our contact form to provide an access:
www.hikashop.com/support/contact-us.html
23 Oct 2023 19:57

In U.S. charge charge tax only for customers who live in Michigan

Category: Taxes

Hi,

You need to be careful of the "tax category". Check the tax category of your products. By default, it should be the "default tax category" tax category. So in your tax rule, you need to also select that tax category.
Besides that, you should be all good.
23 Sep 2023 14:11

Probleme mit Plugin Chart fee

Category: German

-- HikaShop version -- : 5.0.0
-- Joomla version -- : 4.3.4
-- PHP version -- : 8.1.2
-- Browser(s) name and version -- : Firefox 117.0.1
-- Error-message(debug-mod must be tuned on) -- : PHP Errors

Hallo,
ich habe probleme mit dem plugin Cart fee
Ich bekomme diverse fehler:
( ! ) Warning: Undefined variable $amount in /var/www/breisig.live/www/htdocs/plugins/hikashop/fees/fees.php on line 99
Call Stack
#	Time	Memory	Function	Location
1	0.0000	365744	{main}( )	.../index.php:0
2	0.0000	366512	require_once( '/var/www/breisig.live/www/htdocs/includes/app.php )	.../index.php:32
3	0.0050	987320	Joomla\CMS\Application\CMSApplication->execute( )	.../app.php:61
4	0.0055	1131776	Joomla\CMS\Application\SiteApplication->doExecute( )	.../CMSApplication.php:293
5	0.0595	3634496	Joomla\CMS\Application\SiteApplication->dispatch( $component = ??? )	.../SiteApplication.php:249
6	0.0605	3663280	Joomla\CMS\Component\ComponentHelper::renderComponent( $option = 'com_hikashop', $params = ??? )	.../SiteApplication.php:208
7	0.0614	3720608	Joomla\CMS\Dispatcher\LegacyComponentDispatcher->dispatch( )	.../ComponentHelper.php:361
8	0.0655	4459976	Joomla\CMS\Dispatcher\LegacyComponentDispatcher::Joomla\CMS\Dispatcher\{closure:/var/www/breisig.live/www/htdocs/libraries/src/Dispatcher/LegacyComponentDispatcher.php:70-72}( $path = '/var/www/breisig.live/www/htdocs/components/com_hikashop/hikashop.php' )	.../LegacyComponentDispatcher.php:73
9	0.0655	4461000	require_once( '/var/www/breisig.live/www/htdocs/components/com_hikashop/hikashop.php )	.../LegacyComponentDispatcher.php:71
10	0.0689	4683576	hikashopController->execute( $task = 'listing' )	.../hikashop.php:88
11	0.0689	4683576	Joomla\CMS\MVC\Controller\BaseController->execute( $task = 'listing' )	.../helper.php:2530
12	0.0689	4683576	hikashopController->listing( )	.../BaseController.php:678
13	0.0689	4683576	hikashopController->display( $cachable = ???, $urlparams = ??? )	.../helper.php:2261
14	0.0691	4690360	Joomla\CMS\MVC\Controller\BaseController->display( $cachable = FALSE, $urlparams = FALSE )	.../helper.php:2552
15	0.0691	4690360	CategoryViewCategory->display( $tpl = ???, $params = ??? )	.../BaseController.php:645
16	0.0793	5126064	hikashopView->display( $tpl = NULL )	.../view.html.php:26
17	0.0795	5142800	Joomla\CMS\MVC\View\HtmlView->display( $tpl = NULL )	.../helper.php:2843
18	0.0795	5142848	hikashopView->loadTemplate( $tpl = NULL )	.../HtmlView.php:203
19	0.0797	5142848	Joomla\CMS\MVC\View\HtmlView->loadTemplate( $tpl = NULL )	.../helper.php:2889
20	0.0797	5163760	include( '/var/www/breisig.live/www/htdocs/components/com_hikashop/views/category/tmpl/listing.php )	.../HtmlView.php:410
21	0.0800	5186064	hikashop_getLayout( $controller = 'product', $layout = 'listing', $params = class hikaParameter { protected $data = class stdClass { public $layout_type = 'div'; public $columns = '4'; public $rows = '4'; public $limit = '16'; public $enable_switcher = '1'; public $div_item_layout_type = 'img_title'; public $image_width = '325'; public $image_height = ''; public $product_transition_effect = 'linear'; public $product_effect_duration = ''; public $pane_height = ''; public $text_center = '1'; public $show_description_listing = '0'; public $consistencyheight = '1'; public $infinite_scroll = '0'; public $background_color = ''; public $margin = '10'; public $border_visible = '0'; public $rounded_corners = '1'; public $zoom_on_hover = '0'; public $ul_class_name = ''; public $product_order = 'ordering'; public $order_dir = 'ASC'; public $random = '0'; public $filter_type = '0'; public $use_module_name = '0'; public $discounted_only = '0'; public $related_products_from_cart = '0'; public $show_out_of_stock = '1'; public $link_to_product_page = '1'; public $product_popup_mode = '0'; public $show_price = '1'; public $price_display_type = 'cheapest'; public $price_with_tax = '3'; public $show_original_price = '1'; public $show_discount = '1'; public $add_to_cart = '1'; public $add_to_wishlist = '0'; public $show_quantity_field = '0'; public $product_waitlist = '0'; public $product_contact_button = '0'; public $details_button = '1'; public $show_vote = '0'; public $display_custom_item_fields = '0'; public $display_filters = '0'; public $display_badges = '0'; public $content_synchronize = 1; public $main_div_name = 'hikashop_category_information_module_'; public $selectparentlisting = '12'; public $recently_viewed = 0; public $show_vote_product = '0'; public $product_synchronize = '1'; public $show_price_weight = 0; public $show_compare = 0; public $catalogue = 0; public $show_limit = 1 }; protected $initialized = FALSE; protected $separator = '.' }, $js = '', $backend = ??? )	.../listing.php:141
22	0.0802	5210808	ProductViewProduct->display( $tpl = NULL, $params = class hikaParameter { protected $data = class stdClass { public $layout_type = 'div'; public $columns = '4'; public $rows = '4'; public $limit = '16'; public $enable_switcher = '1'; public $div_item_layout_type = 'img_title'; public $image_width = '325'; public $image_height = ''; public $product_transition_effect = 'linear'; public $product_effect_duration = ''; public $pane_height = ''; public $text_center = '1'; public $show_description_listing = '0'; public $consistencyheight = '1'; public $infinite_scroll = '0'; public $background_color = ''; public $margin = '10'; public $border_visible = '0'; public $rounded_corners = '1'; public $zoom_on_hover = '0'; public $ul_class_name = ''; public $product_order = 'ordering'; public $order_dir = 'ASC'; public $random = '0'; public $filter_type = '0'; public $use_module_name = '0'; public $discounted_only = '0'; public $related_products_from_cart = '0'; public $show_out_of_stock = '1'; public $link_to_product_page = '1'; public $product_popup_mode = '0'; public $show_price = '1'; public $price_display_type = 'cheapest'; public $price_with_tax = '3'; public $show_original_price = '1'; public $show_discount = '1'; public $add_to_cart = '1'; public $add_to_wishlist = '0'; public $show_quantity_field = '0'; public $product_waitlist = '0'; public $product_contact_button = '0'; public $details_button = '1'; public $show_vote = '0'; public $display_custom_item_fields = '0'; public $display_filters = '0'; public $display_badges = '0'; public $content_synchronize = 1; public $main_div_name = 'hikashop_category_information_module_'; public $selectparentlisting = '12'; public $recently_viewed = 0; public $show_vote_product = '0'; public $product_synchronize = '1'; public $show_price_weight = 0; public $show_compare = 0; public $catalogue = 0; public $show_limit = 1 }; protected $initialized = FALSE; protected $separator = '.' } )	.../helper.php:929
23	0.0937	5448496	hikashopView->display( $tpl = NULL )	.../view.html.php:29
24	0.0937	5448904	Joomla\CMS\Application\WebApplication->triggerEvent( $eventName = 'onHikashopBeforeDisplayView', $args = [0 => class ProductViewProduct { protected $_errors = [...]; public $document = NULL; protected $option = 'com_hikashop'; protected $_name = 'product'; protected $_models = [...]; protected $_defaultModel = NULL; private ${Joomla\CMS\MVC\View\AbstractView}dispatcher = NULL; protected $_basePath = '/var/www/breisig.live/www/htdocs/components/com_hikashop'; protected $_layout = 'listing'; protected $_layoutExt = 'php'; protected $_layoutTemplate = '_'; protected $_path = [...]; protected $_template = NULL; protected $_output = NULL; protected $_charset = 'UTF-8'; private ${Joomla\CMS\MVC\View\HtmlView}currentUser = class Joomla\CMS\User\User { ... }; public $triggerView = [...]; public $displayView = TRUE; public $toolbar = [...]; public $direction = 'ltr'; public $chosen = TRUE; public $extrafilters = [...]; public $title = ''; public $allowInlineJavascript = FALSE; public $extraData = NULL; public $toolbarHelper = NULL; public $paramBase = 'com_hikashop.product_hikashop_category_information_module__12'; public $pageInfo = class stdClass { ... }; public $params = class hikaParameter { ... }; public $searchOptions = NULL; public $openfeatures_class = NULL; public $pagination = class hikashopPaginationHelper { ... }; public $doOrdering = NULL; public $ordering = NULL; public $dynamicAttributes = [...]; public $type = 'main'; public $ctrl = 'category'; public $nameListing = 'PRODUCTS'; public $nameForm = 'PRODUCTS'; public $icon = 'product'; public $module = TRUE; public $baseurl = ''; public $config = class hikashopConfigClass { ... }; public $modules = [...]; public $fieldsClass = class hikashopFieldClass { ... }; public $quantityDisplayType = class hikashopQuantitydisplayType { ... }; public $badgeClass = class hikashopBadgeClass { ... }; public $currencyClass = class hikashopCurrencyClass { ... }; public $toggleHelper = class hikashopToggleHelper { ... }; public $imageHelper = class hikashopImageHelper { ... }; public $currencyHelper = class hikashopCurrencyClass { ... }; public $toggleClass = class hikashopToggleHelper { ... }; public $image = class hikashopImageHelper { ... }; public $classbadge = class hikashopBadgeClass { ... }; public $categoryFromURL = FALSE; public $category_selected = '_12'; public $task = 'listing'; public $itemid = '&Itemid=287'; public $ajax = TRUE; public $currentId = 12; public $displayedFilters = ''; public $cart = class hikashopCartHelper { ... }; public $maxFilter = -1; public $maxColumn = '2'; public $filters = [...]; public $filterClass = class hikashopFilterClass { ... }; public $filterTypeClass = class hikashopFilterTypeClass { ... }; public $heightConfig = '100'; public $showResetButton = '1'; public $showButton = '1'; public $displayFieldset = '1'; public $buttonPosition = 'inside'; public $collapsable = '1'; public $scrollToTop = FALSE; public $element = class stdClass { ... }; public $listingQuery = ' FROM #__hikashop_product_category AS a LEFT JOIN #__hikashop_product AS b ON a.product_id=b.product_id WHERE (b.product_published = 1) AND (b.product_type = \'main\') AND (a.category_id IN (12)) AND ((b.product_access = \'all\' OR b.product_access LIKE \'%,9,%\')) ORDER BY a.ordering ASC'; public $productFields = [...]; public $rows = [...]; public $characteristicsToBeDisplayed = [...]; public $category_pathway = ''; public $redirect_url = '%2Fevents%2Fcheckout' }] )	.../helper.php:2800
25	0.0937	5449000	Joomla\Event\Dispatcher->dispatch( $name = 'onHikashopBeforeDisplayView', $event = class Joomla\Event\Event { protected $name = 'onHikashopBeforeDisplayView'; protected $arguments = [0 => class ProductViewProduct { ... }, 'result' => [...]]; protected $stopped = FALSE } )	.../EventAware.php:111
26	0.0938	5450368	hikashopJoomlaPlugin->onHikashopBeforeDisplayViewHandler( class Joomla\Event\Event { protected $name = 'onHikashopBeforeDisplayView'; protected $arguments = [0 => class ProductViewProduct { ... }, 'result' => [...]]; protected $stopped = FALSE } )	.../Dispatcher.php:486
27	0.0938	5450744	hikashopJoomlaPlugin->__call( $name = 'onHikashopBeforeDisplayViewHandler', $arguments = [0 => class Joomla\Event\Event { protected $name = 'onHikashopBeforeDisplayView'; protected $arguments = [...]; protected $stopped = FALSE }] )	.../Dispatcher.php:486
28	0.0938	5451816	plgHikashoppaymentPaypalcheckout->onHikashopBeforeDisplayView( $view = class ProductViewProduct { protected $_errors = []; public $document = NULL; protected $option = 'com_hikashop'; protected $_name = 'product'; protected $_models = []; protected $_defaultModel = NULL; private ${Joomla\CMS\MVC\View\AbstractView}dispatcher = NULL; protected $_basePath = '/var/www/breisig.live/www/htdocs/components/com_hikashop'; protected $_layout = 'listing'; protected $_layoutExt = 'php'; protected $_layoutTemplate = '_'; protected $_path = ['template' => [...], 'helper' => [...]]; protected $_template = NULL; protected $_output = NULL; protected $_charset = 'UTF-8'; private ${Joomla\CMS\MVC\View\HtmlView}currentUser = class Joomla\CMS\User\User { protected $_errors = [...]; protected $isRoot = NULL; public $id = 0; public $name = NULL; public $username = NULL; public $email = NULL; public $password = NULL; public $password_clear = ''; public $block = NULL; public $sendEmail = 0; public $registerDate = NULL; public $lastvisitDate = NULL; public $activation = NULL; public $params = NULL; public $groups = [...]; public $guest = 1; public $lastResetTime = NULL; public $resetCount = NULL; public $requireReset = NULL; protected $_params = class Joomla\Registry\Registry { ... }; protected $_authGroups = NULL; protected $_authLevels = [...]; protected $_authActions = NULL; protected $_errorMsg = NULL; public $aid = 0 }; public $triggerView = [0 => 'hikashop', 1 => 'hikashopshipping', 2 => 'hikashoppayment']; public $displayView = TRUE; public $toolbar = []; public $direction = 'ltr'; public $chosen = TRUE; public $extrafilters = []; public $title = ''; public $allowInlineJavascript = FALSE; public $extraData = NULL; public $toolbarHelper = NULL; public $paramBase = 'com_hikashop.product_hikashop_category_information_module__12'; public $pageInfo = class stdClass { public $filter = class stdClass { ... }; public $limit = class stdClass { ... }; public $search = ''; public $currency_id = 1; public $zone_id = 81; public $elements = class stdClass { ... } }; public $params = class hikaParameter { protected $data = class stdClass { ... }; protected $initialized = FALSE; protected $separator = '.' }; public $searchOptions = NULL; public $openfeatures_class = NULL; public $pagination = class hikashopPaginationHelper { public $limitstart = 0; public $limit = 16; public $total = 1; public $prefix = ''; public $pagesStart = 1; public $pagesStop = 1; public $pagesCurrent = 1; public $pagesTotal = 1; public $hideEmptyLimitstart = FALSE; protected $viewall = FALSE; protected $additionalUrlParams = [...]; protected $app = class Joomla\CMS\Application\SiteApplication { ... }; protected $data = NULL; public $hikaSuffix = ''; public $form = '' }; public $doOrdering = NULL; public $ordering = NULL; public $dynamicAttributes = []; public $type = 'main'; public $ctrl = 'category'; public $nameListing = 'PRODUCTS'; public $nameForm = 'PRODUCTS'; public $icon = 'product'; public $module = TRUE; public $baseurl = ''; public $config = class hikashopConfigClass { protected $_errors = [...]; public $tables = [...]; public $pkeys = [...]; public $namekeys = [...]; protected $db = class Joomla\Database\Mysqli\MysqliDriver { ... }; protected $database = class Joomla\Database\Mysqli\MysqliDriver { ... }; public $toggle = [...]; public $values = [...] }; public $modules = []; public $fieldsClass = class hikashopFieldClass { protected $_errors = [...]; public $tables = [...]; public $pkeys = [...]; public $namekeys = [...]; protected $db = class Joomla\Database\Mysqli\MysqliDriver { ... }; protected $database = class Joomla\Database\Mysqli\MysqliDriver { ... }; public $errors = [...]; public $prefix = ''; public $suffix = ''; public $excludeValue = [...]; public $toggle = [...]; public $where = [...]; public $skipAddressName = FALSE; public $report = TRUE; public $messages = [...]; public $externalValues = NULL; public $regexs = [...] }; public $quantityDisplayType = class hikashopQuantitydisplayType { public $default = [...] }; public $badgeClass = class hikashopBadgeClass { protected $_errors = [...]; public $tables = [...]; public $pkeys = [...]; public $namekeys = [...]; protected $db = class Joomla\Database\Mysqli\MysqliDriver { ... }; protected $database = class Joomla\Database\Mysqli\MysqliDriver { ... }; public $toggle = [...] }; public $currencyClass = class hikashopCurrencyClass { protected $_errors = [...]; public $tables = [...]; public $pkeys = [...]; public $namekeys = [...]; protected $db = class Joomla\Database\Mysqli\MysqliDriver { ... }; protected $database = class Joomla\Database\Mysqli\MysqliDriver { ... }; public $toggle = [...]; public $taxRates = NULL; public $_loadedVariants = [...] }; public $toggleHelper = class hikashopToggleHelper { public $ctrl = 'toggle'; public $extra = ''; public $token = '&370e4c054bfc5ec50d06986f535a7960=1' }; public $imageHelper = class hikashopImageHelper { public $thumbnail = 1; public $uploadFolder_url = '/images/com_hikashop/upload/'; public $uploadFolder = '/var/www/breisig.live/www/htdocs/images/com_hikashop/upload/'; public $thumbnail_x = 475; public $thumbnail_y = 475; public $main_uploadFolder_url = '/images/com_hikashop/upload/'; public $main_uploadFolder = '/var/www/breisig.live/www/htdocs/images/com_hikashop/upload/'; public $main_thumbnail_x = 475; public $main_thumbnail_y = 475; public $override = FALSE; protected $image_mode = 'GD' }; public $currencyHelper = class hikashopCurrencyClass { protected $_errors = [...]; public $tables = [...]; public $pkeys = [...]; public $namekeys = [...]; protected $db = class Joomla\Database\Mysqli\MysqliDriver { ... }; protected $database = class Joomla\Database\Mysqli\MysqliDriver { ... }; public $toggle = [...]; public $taxRates = NULL; public $_loadedVariants = [...] }; public $toggleClass = class hikashopToggleHelper { public $ctrl = 'toggle'; public $extra = ''; public $token = '&370e4c054bfc5ec50d06986f535a7960=1' }; public $image = class hikashopImageHelper { public $thumbnail = 1; public $uploadFolder_url = '/images/com_hikashop/upload/'; public $uploadFolder = '/var/www/breisig.live/www/htdocs/images/com_hikashop/upload/'; public $thumbnail_x = 475; public $thumbnail_y = 475; public $main_uploadFolder_url = '/images/com_hikashop/upload/'; public $main_uploadFolder = '/var/www/breisig.live/www/htdocs/images/com_hikashop/upload/'; public $main_thumbnail_x = 475; public $main_thumbnail_y = 475; public $override = FALSE; protected $image_mode = 'GD' }; public $classbadge = class hikashopBadgeClass { protected $_errors = [...]; public $tables = [...]; public $pkeys = [...]; public $namekeys = [...]; protected $db = class Joomla\Database\Mysqli\MysqliDriver { ... }; protected $database = class Joomla\Database\Mysqli\MysqliDriver { ... }; public $toggle = [...] }; public $categoryFromURL = FALSE; public $category_selected = '_12'; public $task = 'listing'; public $itemid = '&Itemid=287'; public $ajax = TRUE; public $currentId = 12; public $displayedFilters = ''; public $cart = class hikashopCartHelper { public $override = FALSE }; public $maxFilter = -1; public $maxColumn = '2'; public $filters = []; public $filterClass = class hikashopFilterClass { protected $_errors = [...]; public $tables = [...]; public $pkeys = [...]; public $namekeys = [...]; protected $db = class Joomla\Database\Mysqli\MysqliDriver { ... }; protected $database = class Joomla\Database\Mysqli\MysqliDriver { ... }; public $toggle = [...]; public $canBeUsed = TRUE }; public $filterTypeClass = class hikashopFilterTypeClass { protected $_errors = [...]; public $tables = [...]; public $pkeys = [...]; public $namekeys = [...]; protected $db = class Joomla\Database\Mysqli\MysqliDriver { ... }; protected $database = class Joomla\Database\Mysqli\MysqliDriver { ... }; public $receivedFilter = ''; public $parent = NULL; public $canBeUsed = TRUE }; public $heightConfig = '100'; public $showResetButton = '1'; public $showButton = '1'; public $displayFieldset = '1'; public $buttonPosition = 'inside'; public $collapsable = '1'; public $scrollToTop = FALSE; public $element = class stdClass { public $category_id = 12; public $category_parent_id = 1; public $category_type = 'product'; public $category_name = 'Veranstaltungen'; public $category_description = ''; public $category_published = 1; public $category_ordering = 6; public $category_left = 26; public $category_right = 27; public $category_depth = 1; public $category_namekey = 'root_1692645207_644740240'; public $category_created = 1692645207; public $category_modified = 1692645207; public $category_access = 'all'; public $category_menu = 0; public $category_keywords = ''; public $category_meta_description = ''; public $category_layout = ''; public $category_page_title = ''; public $category_alias = 'veranstaltungen'; public $category_site_id = ''; public $category_canonical = ''; public $category_quantity_layout = ''; public $file_id = NULL; public $file_name = NULL; public $file_description = NULL; public $file_path = NULL; public $file_type = NULL; public $file_ref_id = NULL; public $file_free_download = NULL; public $file_ordering = NULL; public $file_limit = NULL; public $file_access = NULL; public $file_time_limit = NULL }; public $listingQuery = ' FROM #__hikashop_product_category AS a LEFT JOIN #__hikashop_product AS b ON a.product_id=b.product_id WHERE (b.product_published = 1) AND (b.product_type = \'main\') AND (a.category_id IN (12)) AND ((b.product_access = \'all\' OR b.product_access LIKE \'%,9,%\')) ORDER BY a.ordering ASC'; public $productFields = []; public $rows = [0 => class stdClass { ... }]; public $characteristicsToBeDisplayed = []; public $category_pathway = ''; public $redirect_url = '%2Fevents%2Fcheckout' } )	.../pluginCompat.php:50
29	0.0938	5451816	plgHikashoppaymentPaypalcheckout->processListing( $view = class ProductViewProduct { protected $_errors = []; public $document = NULL; protected $option = 'com_hikashop'; protected $_name = 'product'; protected $_models = []; protected $_defaultModel = NULL; private ${Joomla\CMS\MVC\View\AbstractView}dispatcher = NULL; protected $_basePath = '/var/www/breisig.live/www/htdocs/components/com_hikashop'; protected $_layout = 'listing'; protected $_layoutExt = 'php'; protected $_layoutTemplate = '_'; protected $_path = ['template' => [...], 'helper' => [...]]; protected $_template = NULL; protected $_output = NULL; protected $_charset = 'UTF-8'; private ${Joomla\CMS\MVC\View\HtmlView}currentUser = class Joomla\CMS\User\User { protected $_errors = [...]; protected $isRoot = NULL; public $id = 0; public $name = NULL; public $username = NULL; public $email = NULL; public $password = NULL; public $password_clear = ''; public $block = NULL; public $sendEmail = 0; public $registerDate = NULL; public $lastvisitDate = NULL; public $activation = NULL; public $params = NULL; public $groups = [...]; public $guest = 1; public $lastResetTime = NULL; public $resetCount = NULL; public $requireReset = NULL; protected $_params = class Joomla\Registry\Registry { ... }; protected $_authGroups = NULL; protected $_authLevels = [...]; protected $_authActions = NULL; protected $_errorMsg = NULL; public $aid = 0 }; public $triggerView = [0 => 'hikashop', 1 => 'hikashopshipping', 2 => 'hikashoppayment']; public $displayView = TRUE; public $toolbar = []; public $direction = 'ltr'; public $chosen = TRUE; public $extrafilters = []; public $title = ''; public $allowInlineJavascript = FALSE; public $extraData = NULL; public $toolbarHelper = NULL; public $paramBase = 'com_hikashop.product_hikashop_category_information_module__12'; public $pageInfo = class stdClass { public $filter = class stdClass { ... }; public $limit = class stdClass { ... }; public $search = ''; public $currency_id = 1; public $zone_id = 81; public $elements = class stdClass { ... } }; public $params = class hikaParameter { protected $data = class stdClass { ... }; protected $initialized = FALSE; protected $separator = '.' }; public $searchOptions = NULL; public $openfeatures_class = NULL; public $pagination = class hikashopPaginationHelper { public $limitstart = 0; public $limit = 16; public $total = 1; public $prefix = ''; public $pagesStart = 1; public $pagesStop = 1; public $pagesCurrent = 1; public $pagesTotal = 1; public $hideEmptyLimitstart = FALSE; protected $viewall = FALSE; protected $additionalUrlParams = [...]; protected $app = class Joomla\CMS\Application\SiteApplication { ... }; protected $data = NULL; public $hikaSuffix = ''; public $form = '' }; public $doOrdering = NULL; public $ordering = NULL; public $dynamicAttributes = []; public $type = 'main'; public $ctrl = 'category'; public $nameListing = 'PRODUCTS'; public $nameForm = 'PRODUCTS'; public $icon = 'product'; public $module = TRUE; public $baseurl = ''; public $config = class hikashopConfigClass { protected $_errors = [...]; public $tables = [...]; public $pkeys = [...]; public $namekeys = [...]; protected $db = class Joomla\Database\Mysqli\MysqliDriver { ... }; protected $database = class Joomla\Database\Mysqli\MysqliDriver { ... }; public $toggle = [...]; public $values = [...] }; public $modules = []; public $fieldsClass = class hikashopFieldClass { protected $_errors = [...]; public $tables = [...]; public $pkeys = [...]; public $namekeys = [...]; protected $db = class Joomla\Database\Mysqli\MysqliDriver { ... }; protected $database = class Joomla\Database\Mysqli\MysqliDriver { ... }; public $errors = [...]; public $prefix = ''; public $suffix = ''; public $excludeValue = [...]; public $toggle = [...]; public $where = [...]; public $skipAddressName = FALSE; public $report = TRUE; public $messages = [...]; public $externalValues = NULL; public $regexs = [...] }; public $quantityDisplayType = class hikashopQuantitydisplayType { public $default = [...] }; public $badgeClass = class hikashopBadgeClass { protected $_errors = [...]; public $tables = [...]; public $pkeys = [...]; public $namekeys = [...]; protected $db = class Joomla\Database\Mysqli\MysqliDriver { ... }; protected $database = class Joomla\Database\Mysqli\MysqliDriver { ... }; public $toggle = [...] }; public $currencyClass = class hikashopCurrencyClass { protected $_errors = [...]; public $tables = [...]; public $pkeys = [...]; public $namekeys = [...]; protected $db = class Joomla\Database\Mysqli\MysqliDriver { ... }; protected $database = class Joomla\Database\Mysqli\MysqliDriver { ... }; public $toggle = [...]; public $taxRates = NULL; public $_loadedVariants = [...] }; public $toggleHelper = class hikashopToggleHelper { public $ctrl = 'toggle'; public $extra = ''; public $token = '&370e4c054bfc5ec50d06986f535a7960=1' }; public $imageHelper = class hikashopImageHelper { public $thumbnail = 1; public $uploadFolder_url = '/images/com_hikashop/upload/'; public $uploadFolder = '/var/www/breisig.live/www/htdocs/images/com_hikashop/upload/'; public $thumbnail_x = 475; public $thumbnail_y = 475; public $main_uploadFolder_url = '/images/com_hikashop/upload/'; public $main_uploadFolder = '/var/www/breisig.live/www/htdocs/images/com_hikashop/upload/'; public $main_thumbnail_x = 475; public $main_thumbnail_y = 475; public $override = FALSE; protected $image_mode = 'GD' }; public $currencyHelper = class hikashopCurrencyClass { protected $_errors = [...]; public $tables = [...]; public $pkeys = [...]; public $namekeys = [...]; protected $db = class Joomla\Database\Mysqli\MysqliDriver { ... }; protected $database = class Joomla\Database\Mysqli\MysqliDriver { ... }; public $toggle = [...]; public $taxRates = NULL; public $_loadedVariants = [...] }; public $toggleClass = class hikashopToggleHelper { public $ctrl = 'toggle'; public $extra = ''; public $token = '&370e4c054bfc5ec50d06986f535a7960=1' }; public $image = class hikashopImageHelper { public $thumbnail = 1; public $uploadFolder_url = '/images/com_hikashop/upload/'; public $uploadFolder = '/var/www/breisig.live/www/htdocs/images/com_hikashop/upload/'; public $thumbnail_x = 475; public $thumbnail_y = 475; public $main_uploadFolder_url = '/images/com_hikashop/upload/'; public $main_uploadFolder = '/var/www/breisig.live/www/htdocs/images/com_hikashop/upload/'; public $main_thumbnail_x = 475; public $main_thumbnail_y = 475; public $override = FALSE; protected $image_mode = 'GD' }; public $classbadge = class hikashopBadgeClass { protected $_errors = [...]; public $tables = [...]; public $pkeys = [...]; public $namekeys = [...]; protected $db = class Joomla\Database\Mysqli\MysqliDriver { ... }; protected $database = class Joomla\Database\Mysqli\MysqliDriver { ... }; public $toggle = [...] }; public $categoryFromURL = FALSE; public $category_selected = '_12'; public $task = 'listing'; public $itemid = '&Itemid=287'; public $ajax = TRUE; public $currentId = 12; public $displayedFilters = ''; public $cart = class hikashopCartHelper { public $override = FALSE }; public $maxFilter = -1; public $maxColumn = '2'; public $filters = []; public $filterClass = class hikashopFilterClass { protected $_errors = [...]; public $tables = [...]; public $pkeys = [...]; public $namekeys = [...]; protected $db = class Joomla\Database\Mysqli\MysqliDriver { ... }; protected $database = class Joomla\Database\Mysqli\MysqliDriver { ... }; public $toggle = [...]; public $canBeUsed = TRUE }; public $filterTypeClass = class hikashopFilterTypeClass { protected $_errors = [...]; public $tables = [...]; public $pkeys = [...]; public $namekeys = [...]; protected $db = class Joomla\Database\Mysqli\MysqliDriver { ... }; protected $database = class Joomla\Database\Mysqli\MysqliDriver { ... }; public $receivedFilter = ''; public $parent = NULL; public $canBeUsed = TRUE }; public $heightConfig = '100'; public $showResetButton = '1'; public $showButton = '1'; public $displayFieldset = '1'; public $buttonPosition = 'inside'; public $collapsable = '1'; public $scrollToTop = FALSE; public $element = class stdClass { public $category_id = 12; public $category_parent_id = 1; public $category_type = 'product'; public $category_name = 'Veranstaltungen'; public $category_description = ''; public $category_published = 1; public $category_ordering = 6; public $category_left = 26; public $category_right = 27; public $category_depth = 1; public $category_namekey = 'root_1692645207_644740240'; public $category_created = 1692645207; public $category_modified = 1692645207; public $category_access = 'all'; public $category_menu = 0; public $category_keywords = ''; public $category_meta_description = ''; public $category_layout = ''; public $category_page_title = ''; public $category_alias = 'veranstaltungen'; public $category_site_id = ''; public $category_canonical = ''; public $category_quantity_layout = ''; public $file_id = NULL; public $file_name = NULL; public $file_description = NULL; public $file_path = NULL; public $file_type = NULL; public $file_ref_id = NULL; public $file_free_download = NULL; public $file_ordering = NULL; public $file_limit = NULL; public $file_access = NULL; public $file_time_limit = NULL }; public $listingQuery = ' FROM #__hikashop_product_category AS a LEFT JOIN #__hikashop_product AS b ON a.product_id=b.product_id WHERE (b.product_published = 1) AND (b.product_type = \'main\') AND (a.category_id IN (12)) AND ((b.product_access = \'all\' OR b.product_access LIKE \'%,9,%\')) ORDER BY a.ordering ASC'; public $productFields = []; public $rows = [0 => class stdClass { ... }]; public $characteristicsToBeDisplayed = []; public $category_pathway = ''; public $redirect_url = '%2Fevents%2Fcheckout' } )	.../paypalcheckout.php:176
30	0.0938	5451816	plgHikashoppaymentPaypalcheckout->getPaymentMethod( )	.../paypalcheckout.php:225
31	0.0939	5452480	hikashopCartClass->getFullCart( $cart_id = ???, $options = ??? )	.../paypalcheckout.php:349
32	0.1170	5613640	Joomla\CMS\Application\WebApplication->triggerEvent( $eventName = 'onAfterCartShippingLoad', $args = [0 => class stdClass { public $cart_id = 73; public $user_id = 0; public $session_id = 'qvm7e11h2hki8tp9tn42a2rffk'; public $cart_modified = 1695470913; public $cart_type = 'cart'; public $cart_coupon = ''; public $cart_currency_id = 1; public $cart_payment_id = 3; public $cart_shipping_ids = [...]; public $cart_billing_address_id = 0; public $cart_shipping_address_ids = 0; public $cart_name = ''; public $cart_current = 1; public $cart_share = 'nobody'; public $cart_params = class stdClass { ... }; public $cart_fields = NULL; public $cart_ip = '178.162.225.9'; public $cart_products = [...]; public $additional = [...]; public $total = class stdClass { ... }; public $full_total = class stdClass { ... }; public $messages = [...]; public $package = [...]; public $usable_methods = class stdClass { ... }; public $usable_addresses = class stdClass { ... }; public $products = [...]; public $order_fields = [...]; public $item_fields = [...]; public $quantity = class stdClass { ... }; public $volume = 0; public $weight = 0; public $total_quantity = 1; public $volume_unit = 'm'; public $weight_unit = 'kg'; public $shipping = [...]; public $shipping_prices = [...]; public $cache = class stdClass { ... }; public $shipping_groups = [...] }] )	.../cart.php:1448
33	0.1170	5613736	Joomla\Event\Dispatcher->dispatch( $name = 'onAfterCartShippingLoad', $event = class Joomla\Event\Event { protected $name = 'onAfterCartShippingLoad'; protected $arguments = [0 => class stdClass { ... }]; protected $stopped = FALSE } )	.../EventAware.php:111
34	0.1170	5614384	Joomla\CMS\Plugin\CMSPlugin->Joomla\CMS\Plugin\{closure:/var/www/breisig.live/www/htdocs/libraries/src/Plugin/CMSPlugin.php:268-294}( $event = class Joomla\Event\Event { protected $name = 'onAfterCartShippingLoad'; protected $arguments = [0 => class stdClass { ... }]; protected $stopped = FALSE } )	.../Dispatcher.php:486
35	0.1170	5614760	plgHikashopFees->onAfterCartShippingLoad( $cart = class stdClass { public $cart_id = 73; public $user_id = 0; public $session_id = 'qvm7e11h2hki8tp9tn42a2rffk'; public $cart_modified = 1695470913; public $cart_type = 'cart'; public $cart_coupon = ''; public $cart_currency_id = 1; public $cart_payment_id = 3; public $cart_shipping_ids = [0 => '2@1']; public $cart_billing_address_id = 0; public $cart_shipping_address_ids = 0; public $cart_name = ''; public $cart_current = 1; public $cart_share = 'nobody'; public $cart_params = class stdClass { }; public $cart_fields = NULL; public $cart_ip = '178.162.225.9'; public $cart_products = [79 => class stdClass { ... }]; public $additional = []; public $total = class stdClass { public $prices = [...] }; public $full_total = class stdClass { public $prices = [...] }; public $messages = []; public $package = ['zone' => 81, 'volume' => [...], 'weight' => [...], 'total_quantity' => 1, 'total_items' => 1]; public $usable_methods = class stdClass { public $shipping = [...]; public $shipping_valid = TRUE }; public $usable_addresses = class stdClass { public $billing = [...]; public $shipping = [...] }; public $products = [79 => class stdClass { ... }]; public $order_fields = []; public $item_fields = []; public $quantity = class stdClass { public $total = 1; public $items = 1 }; public $volume = 0; public $weight = 0; public $total_quantity = 1; public $volume_unit = 'm'; public $weight_unit = 'kg'; public $shipping = [0 => class stdClass { ... }]; public $shipping_prices = [0 => class stdClass { ... }]; public $cache = class stdClass { public $shipping_key = 'a3b34d0f1acc6ade81742416d77b2752dae86135'; public $shipping = [...] }; public $shipping_groups = [1 => class stdClass { ... }] } )	.../CMSPlugin.php:284

Weiterhin ist mir nicht klar welche Platzhalter ich verwenden kann.
18 Sep 2023 00:07

Custom Field Price not adding correctly

Category: Checkout

Hello,

Please re-download the "custom field price" plugin to get the latest version (1.0.2).
That version changes how the taxes are handled by "item custom fields", you have to not configure the "tax category" for the plugin, thus the price will be added as "without taxes".
If the plugin has a tax category (like "default tax category" like in your latest screenshot), the price will be added as a taxed price thus you will have some unwanted side effect with taxpay.

Regards,
16 Sep 2023 15:15

Custom Field Price not adding correctly

Category: Checkout

Good morning,
Here are the settings I have for taxes.
Main Tax Zone: Maine (U.S. State)
Type of address: Billing
Detailed Tax Display: Yes
Show Taxed Prices: No Tax
VAT number check: No check
Round prices during calculations: No
Floating Tax Prices: No
Apply Discounts: After Taxes
Apply Coupons: After Taxes

Then under Configuration:

Product Tax Category: Default Tax category
Rate: Maine Sales Tax (5.5%)
Cumulative Tax: No
Post Code: Blank
Zone: Blank
Customer Type: All
Start Date: Blank
End Date: Blank
Internal Code: 0
Tax Note: Blank
Access Level: All
Published: Yes

Hope this helps,
15 Sep 2023 15:25

Custom Field Price not adding correctly

Category: Checkout

Hi,
I've simplified the entries in the custom fields to just "yes" and "7" as you suggested and it has made no difference. The total is coming up short. Taxes don't get added on until further in the checkout process, and even still it should make the amount increase and not decrease. The amount that it decreases is not the same percentage as the tax rate.

You say I'm using the "TaxPay" plugin. I'm not to my knowledge. Not sure what that one is and it is not listed in the list of plugins for Hikashop or joomla.

Changing the Tax category to None in the Custom Field Price plugin, had no affect. The total is still less than it should be by the same amount.

Curious, huh?
15 Sep 2023 09:17

Custom Field Price not adding correctly

Category: Checkout

Hello,

For values in drop-down custom fields, please prefer a less complexe content, such as "0", "1", "2", etc.
It will avoid some kind of misspelling issues.

Otherwise, we made a simpler test with a product used by the field you gave us (since we cannot check the elements for the product you gave in your first message).
Here our sample : pasteboard.co/TN8CFObGFoJ6.png

Please note that you have a tax category set-up, which can influence the final price.
And since it looks like you're using the "taxpay" plugin, I do have the feeling that's a tax issue and you should give more details regarding that.
You can also configure the "custom field price" elements to not have a tax category and see if the price is better.

Regards,
17 Aug 2023 22:10

tous les prix HT

Category: Support en Français (French Support)

C'est l'id de la catégorie de taxe. Allez dans le menu Système>Taxes et cliquez sur le bouton "gérer les taxes". Là vous aurez le listing des catégories de taxes avec l'id mentionné sur la droite du listing.
Les catégories de taxes sont toujours dans la table hikashop_category. Ce sont uniquement les statuts de commande qui ont maintenant leur propre table et ne sont plus dans hikashop_category

Dans le champ "zone" d'une règle de taxe, il est possible de sélectionner des zones de type "pays", "département" ou "taxe". Les trois types fonctionnent. Il est possible de sélectionner une zone taxe avec tous les pays à taxer dedans. Cela fonctionne de mon coté. Donc vous avez dû louper quelque chose.

Vous dites:

tous les prix sont HT si on est déloggé et seulement si on est logge dans un pays EU TTC on a les bons prix

Lorsque vous êtes déloggé, c'est la zone principale de la configuration qui est utilisée. Donc, cela indique que cette zone n'est pas listée dans l'option "zone" de votre règle de taxes où dans le listing de sous zones des zones sélectionnées dans cette option.
Notez que dans HikaShop, il y a déjà une zone "France métropolitaine", et une zone "France". C'est la zone France qui a le code 3 lettres FRA et le code 2 lettres FR, et la zone France métropolitaine avec FRX. Dans vos captures, la zone France métropolitaine que vous utilisez ne correspond à aucune des deux. Donc il est possible que vous ayez plusieurs zones dénommées "France métropolitaine" de configurées, et peut être que vous avez confondu l'une avec l'autre ?
18 Jul 2023 01:43

Show a list of all/several product categories and a few additional questions

Category: Product & Category Display

-- HikaShop version -- : 4.7.4
-- Joomla version -- : 4.3.3
-- PHP version -- : 8.1
-- Browser(s) name and version -- : Google Chrome 114.0.5735.199

Hello,

For example, my product structure looks like this:
Category_name_1
--Subcategory_name_1
----Product_list
--Subcategory_name_2
----Product_list
Category_name_2
----Product_list

Q1) Is it possible to configure the display of a certain number of products (for example, 3 products from a category or another specified quantity) from all categories, with the ability to switch to a product category by clicking on categories / subcategories or by clicking the "See more" button, as they are displayed as in screenshot_1 ?

Q2) Is there a functionality or an opportunity to make a "On Order" button (instead of the "Buy" and "Add to Cart" buttons), when clicked on, a window with custom input fields will appear, which the user fills in, after which the completed form will go to the store administration ?

Q3) My bank has provided me with a payment module. It works well. But if I enable the "Send data to a check" function in the settings, then the module stops working and an error appears - "Connection to bank failed", tell me, please, what could be the problem?
The bank spoke the standard shipping method and the tax, but I don't quite understand how this could be related to my problem.

Q4) I want the user to be redirected to a certain page after paying or when they refuse to pay. The banking module makes a redirect to the homepage, this does not suit me. But at the same time, the bank gives the opportunity to use custom success or error pages when paying. Question - where to find and edit these pages (screenshot_2)?
06 Jul 2023 14:13

Loging Form Does not work with Serial

Category: HikaSerial

Hi nicolas,

So I found some news that can help us on our problem.

I came back this morning and everything was working fine on my website.

I register new account, buy stuff and so on. But I soon as I want to login with that register account on that register page I've got the error 401 coming. And it is happening only on my computer.

I've tried with an other computer right after I messed up mine and everything is working, you still can register and all.

So my thinking is that when I try to register something is messing with my navigator or something like that.

And as I was saying, I've tried on two different hosting, the problem remain.

Forum Post Assistant (v1.6.6) : 6-Jul-2023 wrote:

Basic Environment :: wrote: Joomla! Instance :: Joomla! 4.3.2-Stable (Bora) 30-May-2023
Joomla! Configured :: Yes | Writable (644) |
Configuration Options :: Offline: false | SEF: true | SEF Suffix: false | SEF ReWrite: true | .htaccess/web.config: Yes | GZip: true | Cache: false | CacheTime: 15 | CacheHandler: file | CachePlatformPrefix: true | FTP Layer: N/A | Proxy: false | LiveSite: | Session lifetime: 30 | Session handler: database | Shared sessions: false | SSL: 2 | Error Reporting: none | Site Debug: false | Language Debug: false | Default Access: Public | Unicode Slugs: false | dbConnection Type: mysqli | PHP Supports J! 4.3.2: Yes | Database Supports J! 4.3.2: Unknown | Database Credentials Present: Yes |

Host Configuration :: OS: Linux | OS Version: 3.10.0-962.3.2.lve1.5.26.4.el7.x86_64 | Technology: x86_64 | Web Server: Apache | Encoding: gzip, deflate, br | System TMP Writable: Yes | Free Disk Space : 96.23 GiB |

PHP Configuration :: Version: 8.1.11 | PHP API: litespeed | Session Path Writable: Yes | Display Errors: 0 | Error Reporting: 22527 | Log Errors To: error_log | Last Known Error: 04th July 2023 15:45:56. | Register Globals: | Magic Quotes: | Safe Mode: | Allow url fopen: 1 | Open Base: | Uploads: 1 | Max. Upload Size: 16M | Max. POST Size: 32M | Max. Input Time: 60 | Max. Execution Time: 30 | Memory Limit: 256M

Database Configuration :: Connection Error: 2005:Unknown MySQL server host '127.0.0.1:3306' (2)User Privileges : Unknown

Detailed Environment :: wrote: PHP Extensions :: Core (8.1.11) | date (8.1.11) | libxml (8.1.11) | openssl (8.1.11) | pcre (8.1.11) | sqlite3 (8.1.11) | zlib (8.1.11) | bz2 (8.1.11) | calendar (8.1.11) | ctype (8.1.11) | curl (8.1.11) | hash (8.1.11) | filter (8.1.11) | ftp (8.1.11) | gettext (8.1.11) | json (8.1.11) | iconv (8.1.11) | SPL (8.1.11) | pcntl (8.1.11) | readline (8.1.11) | Reflection (8.1.11) | session (8.1.11) | standard (8.1.11) | mbstring (8.1.11) | shmop (8.1.11) | SimpleXML (8.1.11) | tokenizer (8.1.11) | xml (8.1.11) | litespeed () | bcmath (8.1.11) | dom (20031129) | fileinfo (8.1.11) | gd (8.1.11) | imap (8.1.11) | exif (8.1.11) | mysqli (8.1.11) | mysqlnd (mysqlnd 8.1.11) | PDO (8.1.11) | pdo_mysql (8.1.11) | pdo_sqlite (8.1.11) | Phar (8.1.11) | posix (8.1.11) | soap (8.1.11) | sockets (8.1.11) | xmlreader (8.1.11) | xmlrpc (1.0.0RC2) | xmlwriter (8.1.11) | xsl (8.1.11) | Zend Engine (4.1.11) |
Potential Missing Extensions :: zip |

Switch User Environment :: PHP CGI: Yes | Server SU: Yes | PHP SU: Yes | Potential Ownership Issues: No

Folder Permissions :: wrote: Core Folders :: images/ (755) | components/ (755) | modules/ (755) | plugins/ (755) | language/ (755) | templates/ (755) | cache/ (755) | logs/ (755) | tmp/ (755) | administrator/components/ (755) | administrator/modules/ (755) | administrator/language/ (755) | administrator/templates/ (755) | administrator/logs/ (755) | api/ (755) |

Elevated Permissions (First 10) ::

Extensions Discovered :: wrote: Components :: Site ::
Core ::
3rd Party:: iC rounded - iCagenda Theme (3.8.18) ? | HikaShop CB Plugin (2.0.0) ? | Joomdlehooks Communty Builder (2.0.2) ? | AcyMailing CB Plugin (2.1.4) ? | WF_NONBREAKING_TITLE (2.9.38) ? | WF_KITCHENSINK_TITLE (2.9.38) ? | WF_FORMATSELECT_TITLE (2.9.38) ? | WF_EMOTIONS_TITLE (2.9.38) ? | WF_ARTICLE_TITLE (2.9.38) ? | WF_FONTSELECT_TITLE (2.9.38) ? | WF_BROWSER_TITLE (2.9.38) ? | WF_HELP_TITLE (2.9.38) ? | WF_WORDCOUNT_TITLE (2.9.38) ? | WF_FONTSIZESELECT_TITLE (2.9.38) ? | WF_SOURCE_TITLE (2.9.38) ? | WF_CLIPBOARD_TITLE (2.9.38) ? | WF_PREVIEW_TITLE (2.9.38) ? | WF_CLEANUP_TITLE (2.9.38) ? | WF_SPELLCHECKER_TITLE (2.9.38) ? | WF_CHARMAP_TITLE (2.9.38) ? | WF_MEDIA_TITLE (2.9.38) ? | WF_ANCHOR_TITLE (2.9.38) ? | WF_TABLE_TITLE (2.9.38) ? | WF_HR_TITLE (2.9.38) ? | WF_CONTEXTMENU_TITLE (2.9.38) ? | WF_TEXTCASE_TITLE (2.9.38) ? | WF_FULLSCREEN_TITLE (2.9.38) ? | WF_DIRECTIONALITY_TITLE (2.9.38) ? | WF_STYLE_TITLE (2.9.38) ? | WF_ATTRIBUTES_TITLE (2.9.38) ? | WF_SEARCHREPLACE_TITLE (2.9.38) ? | WF_VISUALBLOCKS_TITLE (2.9.38) ? | WF_REFERENCE_TITLE (2.9.38) ? | WF_STYLESELECT_TITLE (2.9.38) ? | WF_LISTS_TITLE (2.9.38) ? | WF_IMGMANAGER_TITLE (2.9.38) ? | WF_LANGCODE_TITLE (2.9.38) ? | WF_AUTOSAVE_TITLE (2.9.38) ? | WF_VISUALCHARS_TITLE (2.9.38) ? | WF_FONTCOLOR_TITLE (2.9.38) ? | JCE - Noneditable (1.0.0) ? | WF_PRINT_TITLE (2.9.38) ? | WF_LINK_TITLE (2.9.38) ? | WF_LINK_SEARCH_TITLE (2.9.38) ? | WF_AGGREGATOR_VIDEO_TITLE (2.9.38) ? | WF_AGGREGATOR_DAILYMOTION_TITLE (2.9.38) ? | WF_AGGREGATOR_AUDIO_TITLE (2.9.38) ? | WF_AGGREGATOR_YOUTUBE_TITLE (2.9.38) ? | WF_AGGREGATOR_VIMEO_TITLE (2.9.38) ? | WF_POPUPS_JCEMEDIABOX_TITLE (2.9.38) ? | WF_FILESYSTEM_JOOMLA_TITLE (2.9.38) ? | WF_LINKS_JOOMLALINKS_TITLE (2.9.38) ? |

Components :: Admin ::
Core :: com_workflow (4.0.0) ? | com_postinstall (4.0.0) ? | com_messages (4.0.0) ? | com_config (4.0.0) ? | com_guidedtours (4.3.0) ? | com_templates (4.0.0) ? | com_login (4.0.0) ? | com_admin (4.0.0) ? | com_weblinks (4.0.1) ? | com_newsfeeds (4.0.0) ? | com_ajax (4.0.0) ? | com_joomlaupdate (4.0.3) ? | com_installer (4.0.0) ? | com_checkin (4.0.0) ? | com_cache (4.0.0) ? | com_redirect (4.0.0) ? | com_fields (4.0.0) ? | com_menus (4.0.0) ? | com_plugins (4.0.0) ? | com_finder (4.0.0) ? | com_actionlogs (3.9.0) ? | com_banners (4.0.0) ? | com_cpanel (4.0.0) ? | com_search (4.0.0-dev) ? | com_privacy (3.9.0) ? | com_languages (4.0.0) ? | com_mails (4.0.0) ? | com_content (4.0.0) ? | com_modules (4.0.0) ? | com_categories (4.0.0) ? | com_users (4.0.0) ? | com_wrapper (4.0.0) ? | com_contenthistory (4.0.0) ? | com_media (3.0.0) ? | com_associations (4.0.0) ? | com_tags (4.0.0) ? | com_scheduler (4.1.0) ? |
3rd Party:: iCagenda (3.8.18) ? | com_customfieldsck (1.0.6) ? | System - Custom Fields CK (1.0.4) ? | comprofiler (2.8.0) ? | HikaShop (4.7.4) ? | com_slideshowck (2.4.0) ? | Slideshow CK (2.4.0) ? | Slideshow CK - Articles (2.3.9) ? | Slideshow CK - K2 (2.3.5) ? | Slideshow CK - Flickr (2.3.6) ? | Slideshow CK - Joomgallery (2.3.5) ? | Slideshow CK - Flexicontent (2.3.10) ? | Slideshow CK - Folder (2.3.15) ? | Slideshow CK - Virtuemart (2.3.5) ? | Slideshow CK - Google (2.4.0) ? | Slideshow CK - Hikashop (2.3.5) ? | System - Slideshow CK (2.4.0) ? | coursegroups (1.2.0) ? | ray2022-societe () ? | ray2022 () ? | ray2022-connexion () ? | ray2022-financement () ? | ray2019-boutique () ? | ray2022-Logiciel () ? | ray2022-deroulement () ? | ray2022-Articleco () ? | ray2022-agenda () ? | ray2022-logiciel () ? | ray2022-formation () ? | ray2022-charte () ? | ray2019 () ? | com_templateck (5.3.4) ? | com_rsseo (1.21.19) ? | com_mobilemenuck (1.5.19) ? | System - Mobile Menu CK (1.5.19) ? | com_imageeffectck (2.3.7) ? | plg_editors-xtd_imageeffectckbutton (2.3.1) ? | Image Effect CK (2.3.7) ? | COM_EXTENSIONSMANAGERCK (1.3.17) ? | JoomlaCK auto updater (1.0.1) ? | com_joomdle (2.1.0) ? | COM_CONVERTFORMS (4.1.2) ? | plg_pagebuilderck_icon_xml_name (1.0.0) ? | Button - Pagebuilder CK (2.16.4) ? | plg_pagebuilderck_separator_xml_nam (1.0.0) ? | plg_pagebuilderck_image_xml_name (1.0.1) ? | PLG_SEARCH_PAGEBUILDERCKSEARCH (2.9.0) ? | plg_pagebuilderck_module_xml_name (1.0.0) ? | plg_pagebuilderck_audio_xml_name (1.0.0) ? | System - Pagebuilder CK (2.16.2) ? | Editor - Pagebuilder CK (2.16.0) ? | plg_pagebuilderck_tabs_xml_name (1.0.1) ? | plg_pagebuilderck_video_xml_name (1.0.1) ? | plg_pagebuilderck_icon_xml_name (2.18.0) ? | plg_pagebuilderck_iframe_xml_name (2.13.8) ? | plg_pagebuilderck_separator_xml_nam (2.13.0) ? | plg_pagebuilderck_contact_xml_name (2.18.6) ? | plg_pagebuilderck_list_xml_name (2.18.1) ? | plg_pagebuilderck_timeline_xml_name (2.18.0) ? | plg_pagebuilderck_heading_xml_name (2.13.2) ? | plg_pagebuilderck_image_xml_name (2.16.3) ? | plg_pagebuilderck_animatedtext_xml_ (2.13.1) ? | plg_pagebuilderck_snippets_xml_name (2.9.0) ? | plg_pagebuilderck_googlemap_xml_nam (2.17.2) ? | plg_pagebuilderck_testimonials_xml_ (2.9.0) ? | plg_pagebuilderck_module_xml_name (2.15.0) ? | plg_pagebuilderck_audio_xml_name (2.9.0) ? | plg_pagebuilderck_button_xml_name (2.18.1) ? | plg_pagebuilderck_googlemaplight_xm (2.9.0) ? | plg_pagebuilderck_code_xml_name (2.13.6) ? | plg_pagebuilderck_tabs_xml_name (2.18.6) ? | plg_pagebuilderck_table_xml_name (2.13.6) ? | plg_pagebuilderck_teams_xml_name (2.18.0) ? | plg_pagebuilderck_video_xml_name (2.13.5) ? | plg_pagebuilderck_animnumber_xml_na (2.18.3) ? | plg_pagebuilderck_page_xml_name (2.16.0) ? | plg_pagebuilderck_message_xml_name (2.11.2) ? | plg_pagebuilderck_accordion_xml_nam (2.18.6) ? | plg_pagebuilderck_text_xml_name (2.9.0) ? | plg_pagebuilderck_openstreetmap_xml (2.17.2) ? | plg_pagebuilderck_vertical_tabs_xml (2.18.5) ? | plg_pagebuilderck_gallery_xml_name (2.13.9) ? | plg_pagebuilderck_tablerow_xml_name (2.13.6) ? | plg_pagebuilderck_social_icons_xml_ (2.18.7) ? | plg_pagebuilderck_icontext_xml_name (2.13.7) ? | plg_pagebuilderck_slider_xml_name (2.13.8) ? | plg_pagebuilderck_faq_xml_name (2.18.5) ? | plg_pagebuilderck_message_xml_name (1.0.0) ? | plg_pagebuilderck_accordion_xml_nam (1.0.0) ? | plg_pagebuilderck_text_xml_name (1.0.0) ? | plg_pagebuilderck_icontext_xml_name (1.0.0) ? | mod_pagebuilderck (2.17.2) ? | com_pagebuilderck (2.18.7) ? | COM_MAXIMENUCKHIKASHOP (2.0.11) ? | Hikashop Maximenu CK Plugin (1.0.0) ? | System - Maximenu CK Hikashop (2.0.10) ? | Grouproles (1.1.0) ? | com_cookiesck (3.3.4) ? | Cookies CK (3.3.4) ? | COM_MENUMANAGERCK (2.0.1) ? | com_carouselck (2.1.8) ? | System - Carousel CK (2.1.0) ? | Carousel CK - Articles (2.1.4) ? | Carousel CK - K2 (2.1.4) ? | Carousel CK - Flickr (2.1.4) ? | Carousel CK - Joomgallery (2.1.4) ? | Carousel CK - Folder (2.1.5) ? | Carousel CK - Google (2.1.4) ? | Carousel CK - Hikashop (2.1.4) ? | Carousel CK (2.1.7) ? | RSFirewall! (3.0.7) ? | ACCORDEONMENUCK (3.2.11) ? | Accordeon Menu CK (3.2.11) ? | Accordeon Menu CK - K2 (3.2.0) ? | Accordeon Menu CK - Categories (3.2.6) ? | Accordeon Menu CK - Joomshopping (3.2.0) ? | Accordeon Menu CK - Adsmanager (3.2.0) ? | Accordeon Menu CK - Virtuemart (3.2.0) ? | Accordeon Menu CK - Articles by dat (3.2.5) ? | Accordeon Menu CK - Hikashop (3.2.7) ? | System - Accordeon Menu CK (3.2.0) ? | COM_JCE (2.9.38) ? | com_jcohorts (1.4.2) ? | com_sliderck (2.3.1) ? | System - Slider CK (2.3.0) ? | mod_sliderck (2.3.1) ? | Slider CK - Articles (2.2.3) ? | Slider CK - K2 (2.2.3) ? | Slider CK - Flickr (2.2.3) ? | Slider CK - Joomgallery (2.2.3) ? | Slider CK - Flexicontent (2.2.3) ? | Slider CK - Folder (2.3.0) ? | Slider CK - Virtuemart (2.2.3) ? | Slider CK - Google (2.2.3) ? | Slider CK - Hikashop (2.2.3) ? | com_admintools (7.3.4) ? | com_akeebabackup (9.6.2) ? | com_simplefilemanager (4.1.0) ? | Acym (8.5.0) ? | com_maximenuck (10.0.6) ? | System - Maximenu CK (10.0.0) ? | Maximenu CK (10.0.5) ? | Maximenu CK - Menus (10.0.0) ? | Maximenu CK - K2 (10.0.0) ? | Maximenu CK - Categories (10.0.5) ? | Maximenu CK - Joomshopping (10.0.0) ? | Maximenu CK - Adsmanager (10.0.0) ? | Maximenu CK - Virtuemart (10.0.0) ? | Maximenu CK - Articles by date (10.0.5) ? | Maximenu CK - Hikashop (10.0.0) ? |

Modules :: Site ::
Core :: mod_breadcrumbs (3.0.0) ? | mod_articles_category (3.0.0) ? | mod_syndicate (3.0.0) ? | mod_articles_popular (3.0.0) ? | mod_search (4.0.0-dev) ? | mod_feed (3.0.0) ? | mod_related_items (3.0.0) ? | mod_stats (3.0.0) ? | mod_finder (3.0.0) ? | mod_users_latest (3.0.0) ? | mod_wrapper (3.0.0) ? | mod_whosonline (3.0.0) ? | mod_languages (3.5.0) ? | mod_articles_archive (3.0.0) ? | mod_weblinks (4.0.1) ? | mod_banners (3.0.0) ? | mod_custom (3.0.0) ? | mod_login (3.0.0) ? | mod_articles_news (3.0.0) ? | mod_articles_categories (3.0.0) ? | mod_articles_latest (3.0.0) ? | mod_tags_popular (3.1.0) ? | mod_menu (3.0.0) ? | mod_tags_similar (3.1.0) ? | mod_footer (3.0.0) ? | mod_random_image (3.0.0) ? |
3rd Party:: mod_convertforms (1.0) ? | AcyMailing subscription form (8.5.0) ? | Hikashop Cart Module (4.7.4) ? | Accordeon Menu CK (3.2.11) ? | Featured categories (3.2.4) ? | iCagenda - Event List (3.2.3) ? | Community Builder Online module (2.8.0) ? | iCagenda - Calendar (3.8.17) ? | Community Builder Login module (2.8.0) ? | mod_sliderck (2.3.1) ? | Community Builder Workflows module (2.8.0) ? | Maximenu CK (10.0.5) ? | Slideshow CK (2.4.0) ? | Joomdle My Courses (1.2.0) ? | Hikashop Wishlist Module (4.7.4) ? | AcyMailing 5 module (3.7.0) ? | sigplus (1.5.0.295) ? | Carousel CK (2.1.7) ? | Joomdle courses (1.2.0) ? | Hikashop Currency Switcher Module (4.7.4) ? | Hikashop Module (4.7.4) ? | mod_pagebuilderck (2.17.2) ? | mod_customparallaxck_pro (2.0.0) ? |

Modules :: Admin ::
Core :: mod_user (4.0.0) ? | mod_loginsupport (4.0.0) ? | mod_stats_admin (3.0.0) ? | mod_feed (3.0.0) ? | mod_popular (3.0.0) ? | mod_latest (3.0.0) ? | mod_submenu (3.0.0) ? | mod_guidedtours (4.3.0) ? | mod_frontend (4.0.0) ? | mod_custom (3.0.0) ? | mod_version (3.0.0) ? | mod_toolbar (3.0.0) ? | mod_login (3.0.0) ? | mod_quickicon (3.0.0) ? | mod_sampledata (3.8.0) ? | mod_privacy_status (4.0.0) ? | mod_title (3.0.0) ? | mod_latestactions (3.9.0) ? | mod_menu (3.0.0) ? | mod_messages (4.0.0) ? | mod_post_installation_messages (4.0.0) ? | mod_multilangstatus (3.0.0) ? | mod_privacy_dashboard (3.9.0) ? | mod_logged (3.0.0) ? |
3rd Party:: RSFirewall! Control Panel Module (1.4.0) ? | HikaShop Dashboard (4.7.4) ? | Community Builder Admin module (2.8.0) ? |

Libraries ::
Core ::
3rd Party:: file_fof40 (4.1.0) ? | Community Builder Library (2.8.0) ? |

Plugins ::
Core :: plg_workflow_publishing (4.0.0) ? | plg_workflow_featuring (4.0.0) ? | plg_workflow_notification (4.0.0) ? | plg_installer_packageinstaller (3.6.0) ? | plg_installer_webinstaller (4.0.0) ? | plg_installer_override (4.0.0) ? | plg_installer_folderinstaller (3.6.0) ? | plg_installer_urlinstaller (3.6.0) ? | plg_fields_integer (3.7.0) ? | plg_fields_editor (3.7.0) ? | plg_fields_radio (3.7.0) ? | plg_fields_list (3.7.0) ? | plg_fields_textarea (3.7.0) ? | plg_fields_checkboxes (3.7.0) ? | plg_fields_subform (4.0.0) ? | plg_fields_imagelist (3.7.0) ? | plg_fields_media (3.7.0) ? | plg_fields_color (3.7.0) ? | plg_fields_text (3.7.0) ? | plg_fields_sql (3.7.0) ? | plg_fields_url (3.7.0) ? | plg_fields_calendar (3.7.0) ? | plg_fields_usergrouplist (3.7.0) ? | plg_fields_user (3.7.0) ? | plg_extension_joomla (3.0.0) ? | plg_extension_finder (4.0.0) ? | plg_extension_namespacemap (4.0.0) ? | plg_privacy_content (3.9.0) ? | plg_privacy_consents (3.9.0) ? | plg_privacy_message (3.9.0) ? | plg_privacy_actionlogs (3.9.0) ? | plg_privacy_user (3.9.0) ? | plg_multifactorauth_totp (3.2.0) ? | plg_multifactorauth_fixed (4.2.0) ? | plg_multifactorauth_webauthn (4.2.0) ? | plg_multifactorauth_email (4.2.0) ? | plg_multifactorauth_yubikey (3.2.0) ? | plg_captcha_recaptcha (3.4.0) ? | plg_captcha_recaptcha_invisible (3.8) ? | plg_finder_newsfeeds (3.0.0) ? | plg_finder_categories (3.0.0) ? | plg_finder_content (3.0.0) ? | plg_finder_contacts (3.0.0) ? | plg_finder_tags (3.0.0) ? | plg_finder_weblinks (4.0.1) ? | plg_media-action_rotate (4.0.0) ? | plg_media-action_crop (4.0.0) ? | plg_media-action_resize (4.0.0) ? | plg_search_newsfeeds (4.0.0-dev) ? | plg_search_categories (4.0.0-dev) ? | plg_search_content (4.0.0-dev) ? | plg_search_contacts (4.0.0-dev) ? | plg_search_tags (4.0.0-dev) ? | plg_search_weblinks (4.0.1) ? | plg_content_joomla (3.0.0) ? | plg_content_pagenavigation (3.0.0) ? | plg_content_confirmconsent (3.9.0) ? | plg_content_vote (3.0.0) ? | plg_content_fields (3.7.0) ? | plg_content_finder (3.0.0) ? | plg_content_pagebreak (3.0.0) ? | plg_content_loadmodule (3.0.0) ? | plg_content_emailcloak (3.0.0) ? | plg_system_cache (3.0.0) ? | plg_system_languagefilter (3.0.0) ? | plg_system_languagecode (3.0.0) ? | plg_system_fields (3.7.0) ? | plg_system_webauthn (4.0.0) ? | plg_system_logrotation (3.9.0) ? | plg_system_sef (3.0.0) ? | plg_system_task_notification (4.1) ? | plg_system_stats (3.5.0) ? | plg_system_log (3.0.0) ? | plg_system_privacyconsent (3.9.0) ? | plg_system_logout (3.0.0) ? | plg_system_remember (3.0.0) ? | plg_system_accessibility (4.0.0) ? | plg_system_debug (3.0.0) ? | plg_system_skipto (4.0.0) ? | plg_system_httpheaders (4.0.0) ? | plg_system_jooa11y (4.2.0) ? | plg_system_redirect (3.0.0) ? | plg_system_updatenotification (3.5.0) ? | plg_system_guidedtours (4.3.0) ? | plg_system_highlight (3.0.0) ? | plg_system_shortcut (4.2.0) ? | plg_system_schedulerunner (4.1) ? | plg_system_sessiongc (3.8.6) ? | plg_system_weblinks (4.0.1) ? | plg_system_actionlogs (3.9.0) ? | plg_webservices_menus (4.0.0) ? | plg_webservices_banners (4.0.0) ? | plg_webservices_languages (4.0.0) ? | plg_webservices_installer (4.0.0) ? | plg_webservices_newsfeeds (4.0.0) ? | plg_webservices_messages (4.0.0) ? | plg_webservices_privacy (4.0.0) ? | plg_webservices_users (4.0.0) ? | plg_webservices_content (4.0.0) ? | plg_webservices_plugins (4.0.0) ? | plg_webservices_media (4.1.0) ? | plg_webservices_config (4.0.0) ? | plg_webservices_modules (4.0.0) ? | plg_webservices_redirect (4.0.0) ? | plg_webservices_tags (4.0.0) ? | plg_webservices_templates (4.0.0) ? | plg_task_site_status (4.1) ? | plg_task_demo_tasks (4.1) ? | plg_task_check_files (4.1) ? | plg_task_requests (4.1) ? | plg_api-authentication_basic (4.0.0) ? | plg_api-authentication_token (4.0.0) ? | plg_authentication_joomla (3.0.0) ? | plg_authentication_ldap (3.0.0) ? | plg_authentication_cookie (3.0.0) ? | plg_filesystem_local (4.0.0) ? | plg_actionlog_joomla (3.9.0) ? | plg_quickicon_phpversioncheck (3.7.0) ? | plg_quickicon_joomlaupdate (3.0.0) ? | plg_quickicon_overridecheck (4.0.0) ? | plg_quickicon_privacycheck (3.9.0) ? | plg_quickicon_extensionupdate (3.0.0) ? | plg_quickicon_downloadkey (4.0.0) ? | plg_editors-xtd_readmore (3.0.0) ? | plg_editors-xtd_article (3.0.0) ? | plg_editors-xtd_image (3.0.0) ? | plg_editors-xtd_fields (3.7.0) ? | plg_editors-xtd_weblink (4.0.1) ? | plg_editors-xtd_module (3.5.0) ? | plg_editors-xtd_pagebreak (3.0.0) ? | plg_editors-xtd_menu (3.7.0) ? | plg_behaviour_versionable (4.0.0) ? | plg_behaviour_taggable (4.0.0) ? | plg_sampledata_multilang (4.0.0) ? | plg_user_terms (3.9.0) ? | plg_user_joomla (3.0.0) ? | plg_user_token (3.9.0) ? | plg_user_profile (3.0.0) ? | plg_user_contactcreator (3.0.0) ? |
3rd Party:: PLG_CONVERTFORMSTOOLS_CONDITIONALLO (1.0) ? | PLG_CONVERTFORMSTOOLS_CALCULATIONS (1.0) ? | PLG_CONVERTFORMSTOOLS_PDF (1.0) ? | PLG_CONVERTFORMSTOOLS_TASKS (1.0) ? | plg_pagebuilderck_icon_xml_name (2.18.0) ? | plg_pagebuilderck_iframe_xml_name (2.13.8) ? | plg_pagebuilderck_separator_xml_nam (2.13.0) ? | plg_pagebuilderck_contact_xml_name (2.18.6) ? | plg_pagebuilderck_list_xml_name (2.18.1) ? | plg_pagebuilderck_timeline_xml_name (2.18.0) ? | plg_pagebuilderck_heading_xml_name (2.13.2) ? | plg_pagebuilderck_image_xml_name (2.16.3) ? | plg_pagebuilderck_animatedtext_xml_ (2.13.1) ? | plg_pagebuilderck_snippets_xml_name (2.9.0) ? | plg_pagebuilderck_googlemap_xml_nam (2.17.2) ? | plg_pagebuilderck_testimonials_xml_ (2.9.0) ? | plg_pagebuilderck_module_xml_name (2.15.0) ? | plg_pagebuilderck_audio_xml_name (2.9.0) ? | plg_pagebuilderck_button_xml_name (2.18.1) ? | plg_pagebuilderck_googlemaplight_xm (2.9.0) ? | plg_pagebuilderck_code_xml_name (2.13.6) ? | plg_pagebuilderck_tabs_xml_name (2.18.6) ? | plg_pagebuilderck_table_xml_name (2.13.6) ? | plg_pagebuilderck_teams_xml_name (2.18.0) ? | plg_pagebuilderck_video_xml_name (2.13.5) ? | plg_pagebuilderck_animnumber_xml_na (2.18.3) ? | plg_pagebuilderck_page_xml_name (2.16.0) ? | plg_pagebuilderck_message_xml_name (2.11.2) ? | plg_pagebuilderck_accordion_xml_nam (2.18.6) ? | plg_pagebuilderck_text_xml_name (2.9.0) ? | plg_pagebuilderck_openstreetmap_xml (2.17.2) ? | plg_pagebuilderck_vertical_tabs_xml (2.18.5) ? | plg_pagebuilderck_gallery_xml_name (2.13.9) ? | plg_pagebuilderck_tablerow_xml_name (2.13.6) ? | plg_pagebuilderck_social_icons_xml_ (2.18.7) ? | plg_pagebuilderck_icontext_xml_name (2.13.7) ? | plg_pagebuilderck_slider_xml_name (2.13.8) ? | plg_pagebuilderck_faq_xml_name (2.18.5) ? | Slider CK - Articles (2.2.3) ? | Slider CK - K2 (2.2.3) ? | Slider CK - Flickr (2.2.3) ? | Slider CK - Joomgallery (2.2.3) ? | Slider CK - Flexicontent (2.2.3) ? | Slider CK - Folder (2.3.0) ? | Slider CK - Virtuemart (2.2.3) ? | Slider CK - Google (2.2.3) ? | Slider CK - Hikashop (2.2.3) ? | plg_installer_rsfirewall (1.0.0) ? | plg_installer_rsseo (1.0) ? | plg_installer_jce (2.9.38) ? | PLG_INSTALLER_ICAGENDA (1.0) ? | JoomlaCK auto updater (1.0.1) ? | Hikashop Be2Bill Payment Plugin (4.7.4) ? | Hikashop Western Union Payment Plug (4.7.4) ? | Hikashop PayJunction Payment Plugin (4.7.4) ? | Hikashop WorldNetTPS Payment Plugin (4.7.4) ? | Hikashop CardSave Payment Plugin (4.7.4) ? | Hikashop CyberMuth CIC Payment Plug (4.7.4) ? | Hikashop Payment Express Payment Pl (4.7.4) ? | Hikashop Paypal Pro Payment Plugin (4.7.4) ? | Hikashop PayPlug payment plugin (4.7.4) ? | Hikashop eWAY Payment Plugin (4.7.4) ? | Hikashop Paypal Express Checkout Pa (4.7.4) ? | Hikashop PaymentExpress (PxPay) Plu (4.7.4) ? | Hikashop Paypal Checkout Payment (1.0.0) ? | Hikashop HSBC Payment Plugin (4.7.4) ? | Hikashop Bluepaid Payment Plugin (4.7.4) ? | Hikashop Authorize.net Payment Plug (4.7.4) ? | Hikashop Paygate Payment Plugin (4.7.4) ? | Ogone Payment Plugin (4.7.4) ? | Hikashop SIPS ATOS Payment Plugin (4.7.4) ? | Hikashop Borgun payment plugin (4.7.4) ? | Hikashop Payza Payment Plugin (4.7.4) ? | Hikashop payfast Payment Plugin (4.6.1) ? | Hikashop eSelect Payment Plugin (4.7.4) ? | Hikashop Bank Transfer Payment Plug (4.7.4) ? | Hikashop Paypal (legacy) Payment Pl (4.7.4) ? | Hikashop Virtual Merchant (Elavon) (4.7.4) ? | Hikashop PayPlug v2 payment plugin (4.7.4) ? | Hikashop UserPoints Payment Plugin (4.7.4) ? | Hikashop Collect On Delivery Paymen (4.7.4) ? | Hikashop Nets NETAXEPT Payment Plug (4.7.4) ? | Hikashop Alipay Payment Plugin (4.7.4) ? | Hikashop Paybox Plugin (4.7.4) ? | Hikashop Purchase Order Payment Plu (4.7.4) ? | Hikashop Check Payment Plugin (4.7.4) ? | Hikashop MasterCard Internet Gatewa (4.7.4) ? | Hikashop ATOS SIPS 2.0 Payment Plug (4.7.4) ? | Hikashop PayU India Payment Plugin (4.7.4) ? | Hikashop Paypal Website Payments Pr (4.7.4) ? | Hikashop Servired Payment Plugin (4.7.4) ? | Hikashop Common Joomla Payment API (4.7.4) ? | Hikashop Beanstream Payment Plugin (4.7.4) ? | Hikashop Postfinance Payment Plugin (4.7.4) ? | Hikashop Monetico Payment Plugin (4.7.4) ? | Hikashop westpacapi Payment Plugin (1.0) ? | Hikashop FirstData Payment Plugin (4.7.4) ? | Hikashop iPayDNA Payment Plugin (4.7.4) ? | Hikashop iVeri Payment Plugin (4.7.4) ? | Hikashop Moneybookers Payment Plugi (4.7.4) ? | Hikashop Paypal Advanced payment pl (4.7.4) ? | Hikashop ePay Payment Plugin (4.7.4) ? | Hikashop Credit Card Payment Plugin (4.7.4) ? | Maximenu CK - Menus (10.0.0) ? | Maximenu CK - K2 (10.0.0) ? | Maximenu CK - Categories (10.0.5) ? | Maximenu CK - Joomshopping (10.0.0) ? | Maximenu CK - Adsmanager (10.0.0) ? | Maximenu CK - Virtuemart (10.0.0) ? | Maximenu CK - Articles by date (10.0.5) ? | Maximenu CK - Hikashop (10.0.0) ? | plg_fields_mediajce (2.9.38) ? | plg_extension_jce (2.9.38) ? | Joomdle Hikashop Integration (1.2.0) ? | PLG_PRIVACY_ICAGENDA (1.2.0) ? | PLG_CONVERTFORMS_ACYMAILING (1.0) ? | PLG_CONVERTFORMS_EMAILS (1.0) ? | PLG_CONVERTFORMS_ERRORLOGGER (1.0) ? | Carousel CK - Articles (2.1.4) ? | Carousel CK - K2 (2.1.4) ? | Carousel CK - Flickr (2.1.4) ? | Carousel CK - Joomgallery (2.1.4) ? | Carousel CK - Folder (2.1.5) ? | Carousel CK - Google (2.1.4) ? | Carousel CK - Hikashop (2.1.4) ? | plg_finder_icagenda (1.0.0) ? | Smart Search - HikaShop Products (4.7.4) ? | plg_editors_codemirror (5.65.12) ? | plg_editors_tinymce (5.10.7) ? | plg_editors_jce (2.9.38) ? | Joomdleprofile - Joomdle Community (1.3.1) ? | Search - Hikashop Products (4.7.4) ? | PLG_SEARCH_PAGEBUILDERCKSEARCH (2.9.0) ? | Search - Joomdle Course Topics (1.0) ? | Search - Hikashop Categories/Manufa (4.7.4) ? | Search - Joomdle Courses (1.0) ? | Search - Joomdle Course Categories (1.0) ? | AcyMailing - Search emails in Jooml (8.5.0) ? | PLG_SEARCH_ICAGENDA (2.5.0) ? | plg_search_sigplus (1.5.0.295) ? | plg_content_imagelazyloading (1.0.2) ? | plg_content_phocaopengraph (4.0.5) ? | plg_content_jce (2.9.38) ? | Content - Calameo (3.2.0) ? | plg_content_sigplus (1.5.0.295) ? | Image Effect CK (2.3.7) ? | System - RSFirewall! Active Scanner (1.4.0) ? | System - Pagebuilder CK (2.16.2) ? | System - Joomdlehikashop with group (1.1.0) ? | System - Slider CK (2.3.0) ? | plg_system_nrframework (4.10.46) ? | HikaShop Payment Notification plugi (4.7.4) ? | System - Custom Fields CK (1.0.4) ? | System - HikaShop Mass Action (4.7.4) ? | System - Mobile Menu CK (1.5.19) ? | System - iCagenda :: Autologin (1.5.0) ? | HikaShop Google Dynamic Remarketing (4.7.4) ? | System - Joomdle License (1.0.0) ? | System - Maximenu CK (10.0.0) ? | System - Joomdlesession (1.0) ? | System - Maximenu CK Hikashop (2.0.10) ? | PLG_SYSTEM_CONVERTFORMS (1.0) ? | System - Joomdlehikashop (1.0.3) ? | AcyMailing - Joomla integration (8.5.0) ? | System - Carousel CK (2.1.0) ? | Hikashop Product Tag (4.7.4) ? | AcyMailing - JCE integration (8.5.0) ? | AcyMailing - Override Joomla emails (8.5.0) ? | HikaShop Product TAG translation (4.7.4) ? | System - Hikashop Social Plugin (4.7.4) ? | PLG_SYSTEM_IC_LIBRARY (1.5.2) ? | User - HikaShop (4.7.4) ? | PLG_SYSTEM_ADMINTOOLS (7.3.4) ? | Community Builder System plugin (2.8.0) ? | plg_system_rsseo (1.5) ? | Hikashop no SSL outside checkout Pl (4.7.4) ? | Scroll To CK (1.2.1) ? | PLG_TOOLTIPGC_XML_NAME (4.2.7) ? | plg_editors-xtd_tooltipgcbutton (4.2.7) ? | System - Maximenu CK Mobile (2.0.24) ? | AcyMailing: override Joomla mailing (5.11.1) ? | Hikashop - Mijoshop Fallback Redire (4.7.4) ? | Hikashop - Redshop Fallback Redirec (4.7.4) ? | Cookies CK (3.3.4) ? | plg_system_jce (2.9.38) ? | PLG_SYSTEM_ICAGENDA (1.1.0) ? | System - Slideshow CK (2.4.0) ? | Hikashop - VirtueMart Fallback Redi (4.7.4) ? | plg_system_osmylicensesmanager (2.0.15) ? | System - Accordeon Menu CK (3.2.0) ? | Hikashop Registration Redirect Plug (4.7.4) ? | System - Floating Module CK (1.3.3) ? | PLG_AJAX_EPRIVACY (3.10.13) ? | PLG_CONVERTFORMSAPPS_EMAIL (1.0) ? | PLG_CONVERTFORMSAPPS_ACYMAILING (1.0) ? | PLG_ACTIONLOG_ADMINTOOLS (7.3.4) ? | PLG_ACTIONLOG_ICAGENDA (1.3) ? | plg_quickicon_icagendaupdate (2.0.0) ? | plg_quickicon_jce (2.9.38) ? | PLG_QUICKICON_AKEEBABACKUP (9.6.2) ? | HikaShop Quick Icon (4.7.4) ? | plg_editors-xtd_imageeffectckbutton (2.3.1) ? | Button - Pagebuilder CK (2.16.4) ? | plg_editors-xtd_tooltipgcbutton (4.2.7) ? | PLG_EDITORS-XTD_CONVERTFORMS (1.0) ? | Editor - Pagebuilder CK (2.16.0) ? | HikaShop Product TAG insertion (4.7.4) ? | plg_editors-xtd_sigplus (1.5.0.295) ? | Joomdle Acymailing 6/7/8 Integratio (1.1.1) ? | AcyMailing Tag and filter : Communi (3.7.2) ? | AcyMailing Tag and filter : Communi (3.7.2) ? | AcyMailing Tag : HikaShop content (4.7.4) ? | PLG_ICAGENDA_PAYMENT_PAYPAL (1.1.2) ? | PLG_ICAGENDA_PRO (1.0.3) ? | PLG_ICAGENDA_TICKETS (1.1.0) ? | Slideshow CK - Articles (2.3.9) ? | Slideshow CK - K2 (2.3.5) ? | Slideshow CK - Flickr (2.3.6) ? | Slideshow CK - Joomgallery (2.3.5) ? | Slideshow CK - Flexicontent (2.3.10) ? | Slideshow CK - Folder (2.3.15) ? | Slideshow CK - Virtuemart (2.3.5) ? | Slideshow CK - Google (2.4.0) ? | Slideshow CK - Hikashop (2.3.5) ? | Hikashop Australia Post eDeliver Sh (4.7.4) ? | Hikashop FedEx Shipping Plugin (4.7.4) ? | Hikashop USPS Shipping Plugin (4.7.4) ? | Hikashop UPS Shipping Plugin (4.7.4) ? | Hikashop CANPAR Shipping Plugin (1.0.0) ? | Hikashop Manual Shipping Plugin (4.7.4) ? | Accordeon Menu CK - K2 (3.2.0) ? | Accordeon Menu CK - Categories (3.2.6) ? | Accordeon Menu CK - Joomshopping (3.2.0) ? | Accordeon Menu CK - Adsmanager (3.2.0) ? | Accordeon Menu CK - Virtuemart (3.2.0) ? | Accordeon Menu CK - Articles by dat (3.2.5) ? | Accordeon Menu CK - Hikashop (3.2.7) ? | Hikashop Shop Close Hours Plugin (4.7.4) ? | Hikashop - Product Cron Update (4.7.4) ? | Hikashop Content Parser - Markdown (4.7.4) ? | Hikashop Orders Automatic Cancel Pl (4.7.4) ? | Hikashop Massaction Product Plugin (4.7.4) ? | Hikashop - Kashflow invoice synchro (4.7.4) ? | HikaShop Shipping Manual - Price pe (4.7.4) ? | Hikashop Cart notification Plugin (4.7.4) ? | Hikashop Google Products Plugin (4.7.4) ? | Hikashop Email History Plugin (4.7.4) ? | Hikashop Massaction Order Plugin (4.7.4) ? | Hikashop Maximenu CK Plugin (1.0.0) ? | Hikashop History Plugin (4.7.4) ? | Hikashop TaxCloud Plugin (1.2.3) ? | Hikashop Massaction Category Plugin (4.7.4) ? | Hikashop WaitList notification Plug (4.7.4) ? | Hikashop UserPoints Plugin (4.7.4) ? | Hikashop Validate free order Plugin (4.7.4) ? | Hikashop Massaction Address Plugin (4.7.4) ? | Hikashop AcyMailing Plugin (4.7.4) ? | Hikashop Joomdle Plugin (1.1.0) ? | Hikashop Massaction User Plugin (4.7.4) ? | Hikashop User account Plugin (4.7.4) ? | HikaShop: Date Picker Custom Field (4.7.4) ? | Jcohort sync (1.4.2) ? | Group role sync (1.1.0) ? | Course groups (1.4.0) ? | User hooks - Joomdle (1.0) ? | Restrict Username Plugin (1.0) ? |

Templates Discovered :: wrote: Templates :: Site :: TemplateRayFormation_Design2014 (1.0) ? | ray2022-societe () ? | ray2022 () ? | ray2022-deroulement-copy () ? | ray2022-connexion () ? | ray2022-financement () ? | ray2019-boutique () ? | ray2022-articleco (V1) ? | ray2022-deroulement () ? | ray2022-articleco-copy () ? | ray2022-agenda () ? | ray2022-logiciel () ? | cassiopeia (1.0) ? | ray2022-formation () ? | ray2022-copy () ? | ray2022-financement-copy () ? | ray2022-charte () ? | ray2019 () ? |
Templates :: Admin :: atum (1.0) ? |

17 Jun 2023 14:57

vieux ticket et mises à jour

Category: Support en Français (French Support)

Bonjoru,

Vous voulez parler de ce sujet:
www.hikashop.com/forum/product-category-...-de-prix/346083.html
Nous n'avons pas prévu de rajouter ce genre de capacité par défaut.
La configuration des taxes est déjà complexe, et rajouter une couche sur les options d'affichage des taxes pour gérer les groupes utilisateurs complexifierait la mise en place alors que la très grande majorité des marchands n'en ont pas besoin.
De plus, comme je mentionnait il y a quelques mois, cela peut se faire assez facilement avec quelques lignes de code dans 2 ou 3 overrides de vue.
Le code étant même fourni pour faire cela, je ne vois pas de raison pour faire ce genre d'option.
22 May 2023 21:12

what is priority of tax?

Category: Taxes

Hi,

3. Wasn't the example I provided in my previous message illustrating such a case ? Basically, when you need to charge a different tax rate on the payment fees than on the products, you want to be able to configure a tax category in the payment method.

4. No. If all products have the same tax just make sure you have the same tax category configured in all the products (the default tax category" is preselected when creating products, and it's also possible to run a massaction to make sure all the products have the same tax category).
Then, create a tax rate via the "manage tax rates" button of the System>Taxes menu.
And finally create a tax rule in System>Taxes to link the tax category selected in your products with the tax rate you created.
I recommend doing it that way rather than trying to use payment fees for taxes.
That way, when you go in the "manage tax rules" area in the future, you'll be able to see how much tax was paid by your customers based on the order statuses selected and based on the start/end dates selected in the filter on the top right corner of the listing, making for an easy reporting of taxes to your local tax office.
Displaying 1 - 20 out of 22 results.
Time to create page: 0.328 seconds
Powered by Kunena Forum