wpusr1
Forum Replies Created
-
Forum: Plugins
In reply to: [Smart Grid-Layout Design for Contact Form 7] Error on certain pagesBut I already have installed 3.3.6.
Just install again over ?
Please let me know.. thanks.Forum: Plugins
In reply to: [Smart Grid-Layout Design for Contact Form 7] Error on certain pagesSure.. will do, thanks.
Forum: Plugins
In reply to: [Smart Grid-Layout Design for Contact Form 7] Error on certain pagesI increased the WP_MEMORY_LIMIT to 256M.
I’m afraid no change in the result, the message still appears.
Thanks.Forum: Plugins
In reply to: [Smart Grid-Layout Design for Contact Form 7] Error on certain pagesThank you.. Will check and get back. Thanks again.
Forum: Plugins
In reply to: [Smart Grid-Layout Design for Contact Form 7] Error on certain pagesI’m sorry for not including those details.
PHP version: 7.0.33
Wordpress 5.4.2
Elementor 2.9.14
Contact form 7 5.2.1
CF7 Smart Grid Extension 3.3.5
Couple other plugins are there like WP table builder etc..
Not sure if you want those.. Please let me know.
Thanks!Thanks a lot for your prompt reply.
Unfortunately, my site is on localhost, not online yet.
I tried with some css, but could not mimic that look.
Is there some general css which I can use to get the nice look of the sample form.
I can try it on my site.
Thanks again.Thanks a lot Ben.
Paypal should be ok.
Will contact you before purchase..Thank you,but could you please be more specific.I am a beginner.
Is this the right way to retrieve data from the metabox?
$job_status=get_post_meta( get_the_ID(), 'job_status', true ) ); $mypost = array( 'post_type' => 'job_lists','meta_query' => array('value' => 'job_status')); Here is the code that displays the contents of the metabox <?php function display_job_list_meta_box( $job_list ) { $job_description_name = esc_html( get_post_meta( $job_list->ID, 'job_description_name ', true ) ); $job_status=esc_html( get_post_meta( $job_list->ID, 'job_status', true ) ); ?> <table> <tr> <td style="width: 100%">Job description</td> <td><input type="text" name="job_description" value="<?php echo $job_description_name; ?>" /></td> </tr> <tr> <td>Status</td> <td><input type="text" name="status" value="<?php echo $job_status; ?>" /></td> </tr> </table> <?php } ?>
- This reply was modified 7 years, 3 months ago by Steven Stern (sterndata). Reason: put code in backticks
Yes, it’s a plugin I’m writing.