WebsiteBaker 2.13.8 is now available!
R.I.P Dietmar (luisehahne) and thank you for all your valuable work for WBhttps://forum.websitebaker.org/index.php/topic,32355.0.html
The output uses template blocks that can be changed through the page-settings panel.http://www.bakery-shop.ch/#page_settings
I actually managed to find what I needed to do by commenting out the "abroad shipping" text in the certain bakery files. Now everything looks fine.
$MOD_BAKERY['TXT_COUNTRY_CODE'][1] = 'DE'; $MOD_BAKERY['TXT_COUNTRY_NAME'][1] = 'Deutschland';
$MOD_BAKERY['TXT_COUNTRY_CODE'][1] = 'FR'; $MOD_BAKERY['TXT_COUNTRY_NAME'][1] = 'France';
The other question. Where do I delete the text 'Stock:' below the thumbnail page.
a simple solution is a look into the template-files and the page-settings from bakeryanother way: change the select for the countrys. if your shop- (home-) country == germany, comment out all other countrys in the file bakery/languages/countrys/DE.php and use only this code Code: [Select]$MOD_BAKERY['TXT_COUNTRY_CODE'][1] = 'DE'; $MOD_BAKERY['TXT_COUNTRY_NAME'][1] = 'Deutschland';(watch at DE and Deutschland for germany)if your Shop-Home-Country like France use the france Code in the file FR.php , likeCode: [Select]$MOD_BAKERY['TXT_COUNTRY_CODE'][1] = 'FR'; $MOD_BAKERY['TXT_COUNTRY_NAME'][1] = 'France';if you have only one entry in this file or you change the countries in this file, be carefull: the first entry (and only this line) needs the 1 behind $MOD_BAKERY['TXT_COUNTRY_CODE'] and $MOD_BAKERY['TXT_COUNTRY_NAME']if your Shop-Home-Country are the same with the entry in this file, you have no abroad shipping text
<tr> <td align="left" valign="top"><span class="mod_bakery_shipping_cost_f">[TXT_SHIPPING_COST]:</span></td><td align="left" valign="top">[TXT_DOMESTIC]: [CURRENCY] [SHIPPING_DOMESTIC]<br />[TXT_ABROAD]: [CURRENCY] [SHIPPING_ABROAD]</td></tr>
<tr> <td align="left" valign="top"><span class="mod_bakery_shipping_cost_f">[TXT_SHIPPING_COST]:</span></td><td align="left" valign="top">[TXT_DOMESTIC]: [CURRENCY] [SHIPPING_DOMESTIC]</td></tr>