Osclass forums
Support forums => Themes => Repurpose => Topic started by: searchweb on April 24, 2014, 12:03:46 pm
-
the price didn't disable when use option for disable price into certain category. It's still showing price input field. When changing the theme into bender, the price input field will disable, so i think it's bug from repurpose theme
I try in latest osclass and repurpose theme.
-
@searchweb
Yes, there must be condition in theme to show/do not show price field based on this setting.
You can fix this in item-post.php and item-edit.php ;)
-
@frosticek any solution?
yes, seem the ajax for price hidden didn't working. The core function from osclass working well. The problem only with the theme. Seem the theme can't read the function. It's same with twitter theme, the price disable not working.
-
@searchweb
Well, those themes are not updated. You can check modern theme what is the solution for this or use modern/bender that are updated.
-
@frosticek
after check both of that theme, it's seem the main different is if else checking for $("#price").blur(function(event) {
When adding that code into javascript in item post, it's seem nothing happen. The display:none didn't changing. Any solution? Thanks for your help.
-
@searchweb
- first check if jquery is working on this site (no bugs & errors)
- then copy file from modern theme into your
- finally check if selectors has same id and class as is required in jquery
-
@frosticek
already check and make sure jquery working fine. Also copy the code from modern theme for checking and showing item prices. I also try to copy item-post from modern theme into repurpose, but it's also not working. Which function on jquery for checking disable price? In which js file for modern theme?
I try to find the function in every js files but can't find it. Looking for solution, please... Thanks.
-
@searchweb
I found this in item-post.php:
$().ready(function(){
$("#price").blur(function(event) {
var price = $("#price").prop("value");
<?php if(osc_locale_thousands_sep()!='') { ?>
while(price.indexOf('<?php echo osc_esc_js(osc_locale_thousands_sep()); ?>')!=-1) {
price = price.replace('<?php echo osc_esc_js(osc_locale_thousands_sep()); ?>', '');
}
<?php }; ?>
<?php if(osc_locale_dec_point()!='') { ?>
var tmp = price.split('<?php echo osc_esc_js(osc_locale_dec_point())?>');
if(tmp.length>2) {
price = tmp[0]+'<?php echo osc_esc_js(osc_locale_dec_point())?>'+tmp[1];
}
<?php }; ?>
$("#price").prop("value", price);
});
});
But this code has nothing with showing-hiding price filed
This is the right part of code:
<?php if( osc_price_enabled_at_items() ) { ?>
<div class="box price">
<label for="price"><?php _e('Price', 'modern'); ?></label>
<?php ItemForm::price_input_text(); ?>
<?php ItemForm::currency_select(); ?>
</div>
<?php } ?>
But as you can here, this does not support allow/deny price based on category, only global on all listings
-
yes, it's true. I add both of that code and it's not working. Also try only copy paste the if else checking for price disable and the result is same, not working at all. I have make sure the category and sub category have uncheck in admin panel for price enable/disable. Not sure what happen, but it's not working at all. Any solution?
-
@searchweb
Maybe bender theme has this secret, will check tomorrow.
-
@frosticek
Thanks. Wait for that. I have check in modern theme but can't find it. Anyway i have open the bug report into github. Still didn't have any response from the staff.
-
@searchweb
Did not find anything in theme.
-
@frosticek
thanks for your help. Same in here. Not sure why it's not working. Maybe wait help from official osclass teams.
-
do anyone have any solution?
-
Looking for help.... seem another people also facing same problem for twitter theme.
-
@searchweb
Ok, found the code that is hiding price:
<script type="text/javascript">
var catPriceEnabled = new Array();
catPriceEnabled[75] = 1;catPriceEnabled[76] = 1;catPriceEnabled[82] = 1;catPriceEnabled[85] = 1;catPriceEnabled[91] = 1;catPriceEnabled[93] = 1;catPriceEnabled[94] = 1;
$("#catId").change(function(){
var cat_id = $(this).val();
var url = 'http://demo.osclass.org/jobboard/index.php';
var result = '';
if(cat_id != '') {
if(catPriceEnabled[cat_id] == 1) {
$("#price").closest("div").show();
} else {
$("#price").closest("div").hide();
$('#price').val('') ;
}
$.ajax({
type: "POST",
url: url,
data: 'page=ajax&action=runhook&hook=item_form&catId=' cat_id,
dataType: 'html',
success: function(data){
$("#plugin-hook").html(data);
}
});
}
});
$(document).ready(function(){
var cat_id = $("#catId").val();
var url = 'http://demo.osclass.org/jobboard/index.php';
var result = '';
if(cat_id != '') {
if(catPriceEnabled[cat_id] == 1) {
$("#price").closest("div").show();
} else {
$("#price").closest("div").hide();
$('#price').val('') ;
}
$.ajax({
type: "POST",
url: url,
data: 'page=ajax&action=runhook&hook=item_form&catId=' cat_id,
dataType: 'html',
success: function(data){
$("#plugin-hook").html(data);
}
});
}
});
</script>
But I am not sure which part of code generate field which category is enabled (catPriceEnabled[75] = 1;catPriceEnabled[76] = 1;catPriceEnabled[82] = 1;catPriceEnabled[85] = 1;catPriceEnabled[91] = 1;catPriceEnabled[93] = 1;catPriceEnabled[94] = 1; ), probably this one:
<?php
$edit = false;
if(Params::getParam('action') == 'item_edit'){
$action = 'item_edit_post';
$edit = true;
}
if($edit) {
ItemForm::plugin_edit_item();
} else {
ItemForm::plugin_post_item();
}
?>
-
really thanks for your help.