imran3229
Forum Replies Created
-
Forum: Reviews
In reply to: [Zenost Shortcodes] Not RecommendedHow can you say that it is same like wordpress shortcodes. It is quite different from that having its own logics and CSS too. You can view its demo at https://www.imhysoft.com/shortcodes also. It is built using bootstrap and font awesome. Many functions are handled by more than one plugins here at wordpress and some difference is usually there. Then how you can say that one plugin is the copy of another? Plz note that your comment is against my hardwork. But i am a professional man and don’t care such useless thinking of people like you. My aim is also to contribute in WP to do some better. I am not intended to make fool some one here. Next time plz be careful. Ok
Forum: Plugins
In reply to: [WP Catalogue] Catagories are not showing in order sectionNo. I have removed “No Category” from php files for temporary solution. Plz tell me why categories can not be displayed in order section in network sites like it can be displayed in mtcbabu.com but not in https://www.mtcbabu.com/import/ or https://www.mtcbabu.com/export/ as i’d be able to do this in right way. Plz tell me soon as i required to make a very large catalogue using this and using this way i can do this work but not in clarity and it can be refused because of this.
Thanks in advance.Forum: Plugins
In reply to: [WP Catalogue] Catagories are not showing in order sectionYes i have created the categories in categories section of plugin but these ore not showing in order section and so not on the page where i need to display the catalogue. Plz tell me ASAP as i need to handover the project soon.
I have done the following change in code and then watermark is appeared but now calender does not displayed.
<script type="text/javascript"> jQuery(function($){ $('#Booking-Date').val("Booking Date"); }); </script>
My URL is https://thedosalon.zchand.com/practice/
Please tell me ASAP what is the problem now with this as i have to fix it soon.It does not work even the width of the field increases when i do all this.
i have placed
<script type=”text/javascript”>
jQuery(function($){
$(Booking-Date).val(“Booking Date”);
});
</script>
in the footer of my theme and my form’s code is as below:[text* your-name "Name"] [email* your-email "Email"] [text your-phone "Phone"] [date* Booking-Date "Booking Date"] <div class="date">date</div> [textarea your-message "Message"] [submit "Send"]
But it does not work. Plz tell me where it could be the mistake?
take a look below on my footer theme code too.
</div><!--dropshadow--> </div><!--wrapper--> <div id="footer"> <div class="navigation_wrap"> <div class="navigation"> <div class="navigation_left"> <?php //include('searchform.php'); ?> <p>© <?php echo date("Y"); ?> <?php bloginfo('name'); ?></p> </div> <div class="navigation_right"> <div class="footerdate"> <?php //wp_nav_menu( array( 'theme_location' => 'footer', 'menu_class' => 'nav' ) ); ?> <div style="clear:both;"> </div> </div> </div> </div><!--navigation--> </div><!--nav wrap--> </div><!--footer--> <script type="text/javascript"> J('ul.children').parent().attr({'id':'mainLi'}); J('ul.children').css({'display':'none'}); J("li#mainLi a:first").attr({'href':'#'}); J("li#mainLi a:first").click(function(){ J('ul.children').slideToggle("slow"); }); J('ul.children li.current_page_item').parent().css({'display':'block'}); J(function(){ /* Hide form input values on focus*/ J('input:text').each(function(){ var txtval = J(this).val(); J(this).focus(function(){ if(J(this).val() == txtval){ J(this).val('') } }); J(this).blur(function(){ if(J(this).val() == ""){ J(this).val(txtval); } }); }); J('input:date').each(function(){ var dateval = J(this).val(); J(this).focus(function(){ if(J(this).val() == dateval){ J(this).val('') } }); J(this).blur(function(){ if(J(this).val() == ""){ J(this).val(dateval); } }); }); J('textarea').each(function(){ var txtareaval = J(this).val(); J(this).focus(function(){ if(J(this).val() == txtareaval){ J(this).val('') } }); J(this).blur(function(){ if(J(this).val() == ""){ J(this).val(txtareaval); } }); }); }); J('div.date').click(function(){ J('div.JsDatePickBox').css({'display':'block'}); }); </script> <script type="text/javascript"> jQuery(function($){ $(Booking-Date).val("Booking Date"); }); </script> <?php wp_footer(); ?> </body> </html>
Thanks.
Where to put this function?
How can i use normal text field and integrate the query ui date picker for displaying the watermark?
Hi,
I can’t use the above method for date fields in the form. How can i display default text in date field like “Booking Date” in the field if use above like method?