Osclass forums
Support forums => Themes => Topic started by: Valdo on May 02, 2019, 08:56:07 pm
-
Hello, all,
how to move the position of the field select the condition item to the field choose price and I want to delete choose free and check with the seller at item-post.php
Here I use the veronika theme
I searched everywhere but couldn't find it.
and how do you make it?
Like the picture below
Thank you for your help
-
Hello,
Check item.php and eventually functions.php, we don't have access to premium themes (unless we buy them).
Regards.
-
Hallo @patrickFromCroatia
At item.php which line will I change the code and in function.php
Can you help me?
item.php
<?php
if(osc_item_price() == '') {
$og_price = __('Check with seller', 'veronika');
} else if(osc_item_price() == 0) {
$og_price = __('Free', 'veronika');
} else {
$og_price = osc_item_price();
}
?>
Function.php
$html = '<div class="simple-price-type simple-select">';
$html .= '<span class="text round3 tr1"><span>' . $default_name . '</span> <i class="fa fa-angle-down"></i></span>';
$html .= '<div class="list">';
$html .= '<div class="option info">' . __('Choose price type', 'veronika') . '</div>';
$html .= '<div class="option' . ($default_key == 0 ? ' selected' : '') . '" data-id="0"><i class="fa fa-pencil help"></i> ' . __('Enter price', 'veronika') . '</span></div>';
$html .= '<div class="option' . ($default_key == 1 ? ' selected' : '') . '" data-id="1"><i class="fa fa-cut help"></i> ' . __('Free', 'veronika') . '</span></div>';
$html .= '<div class="option' . ($default_key == 2 ? ' selected' : '') . '" data-id="2"><i class="fa fa-phone help"></i> ' . __('Check with seller', 'veronika') . '</span></div>';
-
Sorry, it's item-post.php and item-edit.php.
Found the theme in the meanwhile...
Try moving this:
<div class="condition">
<label for="sCondition"><?php _e('Condition', 'veronika'); ?></label>
<?php echo veronika_simple_condition(); ?>
</div>
after this:
<div class="selection">
<?php echo veronika_simple_price_type(); ?>
</div>
</div>
Regards.
-
Hello patrick
I tried it and it didn't work and the style was messy like in the picture, can you help me, I will send this theme file ... Thank you for explaining to me
-
You need to play a little bit with positioning and CSS to make it better.
Putting condition code after <div class="inside">...</div> and adding this CSS makes it a little better.
.condition {
float: left;
width: 50%;
clear: both;
padding: 0 0 5px 0;
background: #fcfcfc;
border-bottom: 1px solid #f8f8f8;
margin: 20px;
}
Regards.
-
Thank you for the help of @patrick
All works well,
I am a junior developer, I will learn more from this osclass forum
You are the best
Forgive my bad english
Regards :)
-
No problem. Good luck with learning, pretty much all I learned about Osclass was on this forums! :)
Regards.