Lomaski
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Catalogue] List products by categoryHi! I meant:
– Is possible to make a custom category list? I mean, not like is already on the plugin but like in wordpress that I can list categories my own way.Forum: Fixing WordPress
In reply to: Search Page not workingSolved, the problem was in the title tag ??
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 X jQuery Inputmask and validationHi! Well since i didn’t got any answers i removed contact form 7, did the form by myself and it worked!
Dunno why didn’t worked with contact form 7 anyways ??
Forum: Fixing WordPress
In reply to: Categories don't go to page 2!LOL I –JUST– solved it!
In the reading configurations posts per page were 10 but only 4 posts are displayed by teh theme ??
thanks anyways Digital Raindrops!
Forum: Fixing WordPress
In reply to: URGENT HELPopen the function.php with notepad++ or other code editing program. In line 2926 or earlier you may notice an extra } that’s broking your code.
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 X jQuery Inputmask and validationI got the inputmask to work ut still no validation, even contact-form regular validation it’s not working :/
Forum: Fixing WordPress
In reply to: tag.php not working (gets one tag but not any other)Thanks! That worked perfectly!
Forum: Fixing WordPress
In reply to: tag.php not working (gets one tag but not any other)i’m aiming for the tag that was clicked in the page before that.
I have a page witch has a link for a tag (that is a tag of a post_type or a post) and when clicked I want to go to this tag.php with all the other post and post_types with this tag.
I don’t want to list all the tags i just want the tag that was clicked.
Forum: Fixing WordPress
In reply to: Multiple Custom Fieldswell since nobody answered this i’ve made some changes to the code by myself and now I have this problem: it doesn’t save the value in the database
the php code:add_action('save_post', 'save_price2'); function meta_options2(){ global $post, $meta_boxes; $custom = get_post_custom($post->ID); $countm = $custom["_countm"][0]; for($i=0;$i<=$countm;$i++){ $male[$i] = $custom["_male[".$i."]"][0]; } $countf = $custom["countf"]; for($i=0;$i<=$countm;$i++){ $female[$i] = $custom["_female[".$i."]"][0]; } // look up for the path global $wpdb; ?> <div class="form-field male"><label>Masculino: <?php for($i=0;$i<=$countm;$i++){?> <input class="male" name="male[<?php echo $i;?>]" rel="0" value="<?php echo $male[$i]; ?>" /> <?php ;}?> <input name="countm" class="countm" type="hidden" value="<?php echo $countm;?>" /> </label></div> <br /><a class="maish" href="#">Adicionar mais um campo</a><br /><br /> <div class="form-field female"><label>Feminino: <?php for($i=0;$i<=$countf;$i++){?> <input class="female" name="female[<?php echo $i;?>]" rel="0" value="<?php echo $female[$i]; ?>" /> <?php ;}?> <input name="countf" class="countf" type="hidden" value="<?php echo $countf;?>" /> </label></div> <br /><a class="maism" href="#">Adicionar mais um campo</a><br /><br /> <?php } function save_price2(){ global $post; update_post_meta($post->ID, "_countm", $_POST["countm"]); for($i=0;$i<$_POST["countm"];$i++){ update_post_meta($post->ID, "_male[".$i."]", $_POST["male[".$i."]"]); } update_post_meta($post->ID, "_countf", $_POST["countf"]); for($i=0;$i<$_POST["countf"];$i++){ update_post_meta($post->ID, "_female[".$i."]", $_POST["female[".$i."]"]); } } register_taxonomy_for_object_type( 'post_tag', 'lookbook');
the jquery code
jQuery(document).ready(function() { jQuery('.maish').live("click", function(){ var numero = jQuery('.male:last').attr('rel'); if(numero<59){ prox = parseInt(numero); prox = prox+1; jQuery('.male:last') .clone() .appendTo('.form-field.male') .attr('rel', prox) .attr('name', 'male['+prox+']') .focus() jQuery('.male:last').val(''); jQuery('.countm').val(prox); }else{ jQuery('.maish').empty(); }}); jQuery('.maism').live("click", function(){ var numero = jQuery('.female:last').attr('rel'); if(numero<59){ prox = parseInt(numero); prox = prox+1; jQuery('.female:last') .clone() .appendTo('.form-field.female') .attr('rel', prox) .attr('name', 'female['+prox+']') .focus() jQuery('.female:last').val(''); jQuery('.countf').val(prox); }else{ jQuery('.maism').empty(); }}); });
now anyone can help?
Forum: Fixing WordPress
In reply to: Various post_types tagThanks it worked!
Forum: Fixing WordPress
In reply to: Various post_types tagthat way i got all the post_types and all the tags. I just want the posts with the tag_id = 18