tncdesigns
Forum Replies Created
-
Now its working thanks.
Haven’t received any reply yet. I have log this issue with woocommerce. I will update you when I have some response from woocommerce or in here.
Forum: Plugins
In reply to: [Contact Form 7] Big problem, help!!!!Hi MaryReb,
I think your code in displaying the submitted data are correct, for future implementation you need to install Contact form DB as mention above by @buzztone for you to save the submitted data for future use.
Also you can troubleshoot your website by disabling plugin that cause the conflict with contact form 7.
Forum: Plugins
In reply to: [NS Custom Fields for WordPress SEO] Warning ErrorHi Author,
Here’s also I found out that if you enable the wp debug the plugin throws a warning in the frontend.
Warning: Invalid argument supplied for foreach() in /home/abc/public_html/sub abc/wp-content/plugins/ns-seo-custom-fields/ns-seo-custom-fields.php on line 237
What I did to fixed the warning, I did just put a checking of value before passing it to foreach.
if(get_option(‘ns_seo_custom_fieldname’)){
foreach(){
….
}
}Thanks
Forum: Plugins
In reply to: [NS Custom Fields for WordPress SEO] Warning Errorwelcome and thanks for this very useful plugin.
Forum: Plugins
In reply to: [NS Custom Fields for WordPress SEO] Warning Errorline 234 = $post_id = $_GET[‘post’];
Fixed:
global $post;
$post_id = isset($_GET[‘post’])?$_GET[‘post’]:$post->ID;
——————
line 235 = foreach(get_option(‘ns_seo_custom_fieldname’) as $fieldname){}
I think this is the cause get_option(‘ns_seo_custom_fieldname’) it is not set or empty.Forum: Plugins
In reply to: NextGen Gallery Conflict with CincopaI forgot to mention that this error occur only in admin panel when adding the Gallery into a page.
Hope to hear from the plugin author.
ah okay, I was thinking that you did automatically create you pdf using php and email directly to recipient.
The easiest way to do that is to install download manager plugin Link then copy the embed code of the specific file you want to be downloaded.
That’s it hope I did solved your problem.
How did you create your pdf and anchor link for email?
Can I see your code? where you setup the link for email?
My Code above ex.:
link code – is use for creating link url for the anchor tag
function code – is the function that will receive the link for downloadAlso I forget to add this. Sorry.
//hooks up download action
add_action(“admin_post_pdf_download”, “pdf_download”);You can use PHP script for you to auto download the pdf file.
Link:$pdf_link = add_query_arg( array( "action" => "pdf_download", "file" => $fname . ".pdf", "_wpnonce" => wp_create_nonce("security-code-for-your-file-download") ), admin_url("admin-post.php")); <a href="$pdf_link">Download PDF</a>
Function:
public static function pdf_download(){ $fullPath = WP_PLUGIN_DIR."/".$_GET['file']; $fsize = filesize($fullPath); $path_parts = pathinfo($fullPath); // We'll be outputting a PDF header('Content-type: application/pdf'); // It will be called downloaded.pdf header('Content-Disposition: attachment; filename="'.$path_parts["basename"].'"'); header("Content-length: $fsize"); header("Cache-control: private"); //use this to open files directly readfile($fullPath); exit; }
Hope it helps.
Fixed for Back to Submissions button not click-able.
.nav-menus-php #post-body-content {
position: relative;
float: none !important;
}Also I notice the datepicker for the submissions are not functioning correctly because of it will show some small line in the bottom part of the admin panel.
Hope it helps.
Forum: Plugins
In reply to: [Widget Content Blocks] Lost all data during upgradeHi Danny,
I haven’t able to check which version of wysiwyg widgets, but its okay I just re-do the widgets that has been lost.
Thanks again for quick response… and also thanks for very useful plugin.
I am also getting this error any fixed yet? Hope plugin author will find fixed for this error.
Thanks.
Forum: Plugins
In reply to: [Widget Content Blocks] Widget Blocks Title vs Widget TitleThanks Danny for the quick updates for the plugin, the plugin is really useful. One thing that I have notice that even if you didn’t check the show title it still render h4 tag with class widgettittle.
Hope this information helps.
Thanks ??