roddaccio
Forum Replies Created
-
Thank you for your reply.
Sure, I can provide an example.Here you see the category “Cafe & Restaurant”, and you see that the category name is displayed in the HTML <title> tag:
http://www.landaupfalz.eu/branchenbuch/firmen-kategorie/cafe-restaurant/
And here you see the taxonomy tag “pizzeria”, but in the title tag you see “Branchenbuch” instead of “Pizzeria”.
http://www.landaupfalz.eu/branchenbuch/firmen-tags/pizzeria/
“Branchenbuch” is the name of the page, where the Business Directory Plugin is displayed. I am sure that I saw the tag name in the <title></title> in a previous version of the plugin.
Hi wallydavid,
look into the db table
wp_postmetawhich has the following fields:meta_id,post_id,meta_key,meta_value.You will find rows beginning with “_wpbdp[fields]” there, for example:
157, 81, ‘_wpbdp[fields][5]’, ‘http://www.test.com/’
158, 81, ‘_wpbdp[fields][6]’, ‘0800 11 22 33 44 55’
409, 137, ‘_wpbdp[fields][7]’, ‘0800 11 22 33 44 55’
410, 137, ‘_wpbdp[fields][8]’, ‘test@test.com’The numbers 5, 6, 7 and 8 reference to the form fields stored in the db table
wp_wpbdp_form_fields.The field number 5 is (in this example only, it may be different in your WP) a website URL and it’s field is defined in the table
wp_wpbdp_form_fieldsas follows:5, ‘Webseite’, ”, ‘textfield’, ‘meta’, ‘URLValidator’, 0, 5, 0x613a313a7b733a31353a2273686f775f696e5f65786365727074223b693a313b7d, 0x613a313a7b733a373a226f7074696f6e73223b733a303a22223b7d)
I think all you want is to search and replace the values in the field
meta_valueof the tablewp_postmetawhere the fieldmeta_keyequals “_wpbdp[fields][YOUR_FIELD_ID]”. You have to replace YOUR_FIELD_ID with the ID of your “Learn more” field.