CMXX - Placeorder initial version
This commit is contained in:
@@ -1586,7 +1586,7 @@ a.link-button {
|
||||
}
|
||||
.breadcrum a{
|
||||
text-decoration: none;
|
||||
color: #555555;
|
||||
color: #4a90e2;
|
||||
cursor: pointer;
|
||||
font-family: inherit;
|
||||
font-size: 0.8em;
|
||||
@@ -1832,6 +1832,12 @@ input.banner_deny:hover {
|
||||
.filtersection {
|
||||
display: flex;
|
||||
margin: 0 auto;
|
||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
||||
background: white;
|
||||
border-radius: 12px;
|
||||
margin-bottom: 50px;
|
||||
padding: 10px;
|
||||
width: 95%;
|
||||
}
|
||||
|
||||
/* Filter Section */
|
||||
@@ -1870,4 +1876,133 @@ input.banner_deny:hover {
|
||||
border-right: none;
|
||||
border-bottom: 1px solid #e0e0e0;
|
||||
}
|
||||
}
|
||||
|
||||
.news-section {
|
||||
padding: 80px 20px;
|
||||
background-color: #f8f8f8;
|
||||
}
|
||||
|
||||
.news-container {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.news-header {
|
||||
text-align: center;
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
|
||||
.news-header h2 {
|
||||
font-size: 2rem;
|
||||
margin-bottom: 15px;
|
||||
font-family: 'gerb', sans-serif;
|
||||
}
|
||||
|
||||
.news-header p {
|
||||
color: #666;
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
.news-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 30px;
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
|
||||
.news-card {
|
||||
background: white;
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
||||
transition: box-shadow 0.3s ease;
|
||||
}
|
||||
|
||||
.news-card:hover {
|
||||
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
|
||||
}
|
||||
|
||||
.news-card-content {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.news-meta {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.news-date {
|
||||
color: #666;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.news-tag {
|
||||
background: #e6f0ff;
|
||||
color: #0066cc;
|
||||
padding: 4px 12px;
|
||||
border-radius: 15px;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
.news-title {
|
||||
font-size: 1.25rem;
|
||||
margin-bottom: 15px;
|
||||
color: #333;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.news-preview {
|
||||
color: #666;
|
||||
margin-bottom: 20px;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.read-more {
|
||||
color: #0066cc;
|
||||
text-decoration: none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.read-more:hover {
|
||||
color: #0052a3;
|
||||
}
|
||||
|
||||
.read-more::after {
|
||||
content: '>';
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.view-all-container {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.view-all-btn {
|
||||
background: #0066cc;
|
||||
color: white;
|
||||
padding: 12px 24px;
|
||||
border-radius: 4px;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
transition: background-color 0.3s ease;
|
||||
}
|
||||
|
||||
.view-all-btn:hover {
|
||||
background: #0052a3;
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
.news-grid {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.news-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
@@ -407,6 +407,12 @@ main .recentlyadded .products .product:hover .name, main .products .products-wra
|
||||
main > .product {
|
||||
display: flex;
|
||||
padding: 40px 0;
|
||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
||||
background: white;
|
||||
border-radius: 12px;
|
||||
margin-bottom: 50px;
|
||||
padding: 10px;
|
||||
width: 95%;
|
||||
}
|
||||
|
||||
main > .product h1 {
|
||||
@@ -523,6 +529,15 @@ main > .product form .btn {
|
||||
margin-top: 10px;
|
||||
width: 400px;
|
||||
text-transform: uppercase;
|
||||
padding: 16px;
|
||||
background: #4a90e2;
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 8px;
|
||||
font-size: 1.1rem;
|
||||
font-weight: 500;
|
||||
cursor: pointer;
|
||||
transition: background-color 0.2s;
|
||||
}
|
||||
|
||||
main > .products h1 {
|
||||
|
||||
@@ -250,6 +250,7 @@ function template_footer() {
|
||||
echo <<<EOT
|
||||
</main>
|
||||
<footer>
|
||||
|
||||
<div class="container neutral-footer-section-1">
|
||||
<div class="container neutral-footer-three-columns">
|
||||
<div class="container description-logos-footer">
|
||||
|
||||
@@ -38,13 +38,13 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php foreach($products_in_cart['cart_details']['products'] as $product): ?>
|
||||
<?php foreach($products['products'] as $product): ?>
|
||||
<tr>
|
||||
<td><?=$product['meta']['name']?></td>
|
||||
<td><?=$product['options']?></td>
|
||||
<td><?=implode(", ", $product['options'])?></td>
|
||||
<td><?=$product['quantity']?></td>
|
||||
<td><?=currency_code?><?=number_format($product['option_price'],2)?></td>
|
||||
<td style="text-align:right;"><?=number_format($product['option_price'] * $product['quantity'],2)?></td>
|
||||
<td><?=currency_code?><?=number_format($product['options_price'],2)?></td>
|
||||
<td style="text-align:right;"><?=number_format($product['options_price'] * $product['quantity'],2)?></td>
|
||||
</tr>
|
||||
<?php endforeach; ?>
|
||||
<tr>
|
||||
|
||||
@@ -39,13 +39,13 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php foreach($products_in_cart['cart_details']['products'] as $product): ?>
|
||||
<?php foreach($products['products'] as $product): ?>
|
||||
<tr>
|
||||
<td><?=$product['meta']['name']?></td>
|
||||
<td><?=$product['options']?></td>
|
||||
<td><?=implode(", ", $product['options'])?></td>
|
||||
<td><?=$product['quantity']?></td>
|
||||
<td><?=currency_code?><?=number_format($product['option_price'],2)?></td>
|
||||
<td style="text-align:right;"><?=number_format($product['option_price'] * $product['quantity'],2)?></td>
|
||||
<td><?=currency_code?><?=number_format($product['options_price'],2)?></td>
|
||||
<td style="text-align:right;"><?=number_format($product['options_price'] * $product['quantity'],2)?></td>
|
||||
</tr>
|
||||
<?php endforeach; ?>
|
||||
<tr>
|
||||
|
||||
@@ -133,18 +133,18 @@ define('footer_email','');
|
||||
// The from email that will appear on the customer's order details email
|
||||
define('mail_from','Name');
|
||||
// Send mail to the customers, etc?
|
||||
define('mail_enabled',false);
|
||||
define('mail_enabled',true);
|
||||
// Your email
|
||||
define('email','');
|
||||
define('email','info@gewoonlekkerspaans.nl');
|
||||
// Receive email notifications?
|
||||
define('email_notifications',false);
|
||||
// Rewrite URL?
|
||||
define('rewrite_url',true);
|
||||
//Additional phpmailer-settings
|
||||
define('email_host_name','');
|
||||
define('email_reply_to','');
|
||||
define('email_outgoing_pw','');
|
||||
define('email_outgoing_port','587');
|
||||
define('email_host_name','gewoonlekkerspaans.nl');
|
||||
define('email_reply_to','info@gewoonlekkerspaans.nl');
|
||||
define('email_outgoing_pw','o7f4t3E*5');
|
||||
define('email_outgoing_port','465');
|
||||
define('email_outgoing_security','ssl');
|
||||
|
||||
/* Database */
|
||||
@@ -158,20 +158,20 @@ define('db_pass','4~gv71bM6');
|
||||
define('db_name','shoppingcart_advanced'); //morvalwatches
|
||||
// API BASE URL
|
||||
define('api_url','https://dev.veliti.nl/api.php'); //morvalwatches
|
||||
|
||||
define('img_url',substr(api_url, 0, -8));
|
||||
|
||||
/* Payment options */
|
||||
//Pay on Delivery
|
||||
define('pay_on_delivery_enabled',false);
|
||||
define('pay_on_delivery_default',false);
|
||||
define('pay_on_delivery_enabled',true);
|
||||
define('pay_on_delivery_default',true);
|
||||
// Mollie
|
||||
define('mollie_enabled',false);
|
||||
define('mollie_default',false);
|
||||
define('mollie_api_key','');
|
||||
|
||||
// Accept payments with PayPal?
|
||||
define('paypal_enabled',true);
|
||||
define('paypal_default',true);
|
||||
define('paypal_enabled',false);
|
||||
define('paypal_default',false);
|
||||
define('PAYPAL_URL','');
|
||||
define('PAYPAL_WEBHOOK','');
|
||||
define('PAYPAL_CLIENT_ID','');
|
||||
|
||||
Reference in New Issue
Block a user