WPIntell

Source evidence

No display

Post Meta · support · 2014-02-23T10:17:00+00:00

complaintsentiment
mediumseverity
0.74relevance
2replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

3 / 22 rows with source links

13.6% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

19 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
vkumar14 unresolved
The meta is not displaying https://wordpress.org/plugins/post-meta/ 1. Open wp-content/plugins/post-meta/lib/models/pmGetModel.php 2. Find “$Newdata[$count]=$dataUrl;” (line 104) and replace to “$Newdata[$count]=(isset($dataUrl))?$dataUrl:$d;” And also, I had to change the way of POST META was indexing values in array. So, in my case, I had to do something like this: Replace: $product_1_info = get_duplicate_field(‘product_1_info’); if (is_array($product_1_info[1])) { foreach($product_1_info[1] as $d) { $moreinfo[] = $d; } } To: $product_1_info = get_duplicate_field(‘product_1_info’); if (is_array($product_1_info)) { foreach($product_1_info as $d) { $moreinfo[] = $d; } }

Comments

2 shown
cristovamjr 2014-03-12T19:50:00+00:00

1. Open wp-content/plugins/post-meta/lib/models/pmGetModel.php 2. Find “$Newdata[$count]=$dataUrl;” (line 104) and replace to “$Newdata[$count]=(isset($dataUrl))?$dataUrl:$d;”

cristovamjr 2014-03-12T20:49:00+00:00

And also, I had to change the way of POST META was indexing values in array. So, in my case, I had to do something like this: Replace: $product_1_info = get_duplicate_field(‘product_1_info’); if (is_array($product_1_info[1])) { foreach($product_1_info[1] as $d) { $moreinfo[] = $d; } } To: $product_1_info = get_duplicate_field(‘product_1_info’); if (is_array($product_1_info)) { foreach($product_1_info as $d) { $moreinfo[] = $d; } }