Title: VisualData's Replies - page 5 | WordPress.org

---

# VisualData

  [  ](https://wordpress.org/support/users/visualdata/)

 *   [Profile](https://wordpress.org/support/users/visualdata/)
 *   [Topics Started](https://wordpress.org/support/users/visualdata/topics/)
 *   [Replies Created](https://wordpress.org/support/users/visualdata/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/visualdata/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/visualdata/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/visualdata/engagements/)
 *   [Favorites](https://wordpress.org/support/users/visualdata/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 61 through 75 (of 82 total)

[←](https://wordpress.org/support/users/visualdata/replies/page/4/?output_format=md)
[1](https://wordpress.org/support/users/visualdata/replies/?output_format=md) [2](https://wordpress.org/support/users/visualdata/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/visualdata/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/visualdata/replies/page/4/?output_format=md)
5 [6](https://wordpress.org/support/users/visualdata/replies/page/6/?output_format=md)
[→](https://wordpress.org/support/users/visualdata/replies/page/6/?output_format=md)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [domain name in title](https://wordpress.org/support/topic/domain-name-in-title/)
 *  [VisualData](https://wordpress.org/support/users/visualdata/)
 * (@visualdata)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/domain-name-in-title/#post-6449303)
 * have you tried to see your post from the front-end and see whether the site title
   is still in the post title? by default Yoast Seo adds site title to the post 
   title which will appear in search result of search engines.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Updating Alt and Title Tags on Images](https://wordpress.org/support/topic/updating-alt-and-title-tags-on-images/)
 *  [VisualData](https://wordpress.org/support/users/visualdata/)
 * (@visualdata)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/updating-alt-and-title-tags-on-images/#post-6448640)
 * when an image is inserted into a post manually, the title and alt values are 
   read from database and inserted to the post as text rather than variable. and
   thus texts are not automatically updated when you change the image title later.
 * I coded a plugin ([CIO Custom Fields Importer](https://wordpress.org/plugins/custom-fields-csv-xml-importer/)
   add-on to WP All Import) which can update title, description, and custom fields
   of both images, pages and posts by importing from a csv file. images are actually
   stored in posts table as a custom post type called “attachment”. WP all import
   upload images automatically, and allows you to drag and drop columns from CSV
   file to construct title/content dynamically during import, and saves the template
   for future use. so if the information is kept in a spreadsheet, you may run the
   import again to update the whole website.
 * this needs change of workflow though. you will be making changes in a spreadsheet,
   not in the website directly. it works best when the post content follows a certain
   pattern, for example, image1, text1, image2, text2.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Multiple organisation user logins](https://wordpress.org/support/topic/multiple-organisation-user-logins/)
 *  [VisualData](https://wordpress.org/support/users/visualdata/)
 * (@visualdata)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/multiple-organisation-user-logins/#post-6449851)
 * This is possible. I have done something similar by extending users with pods,
   setting up some custom fields and roles, and then creating a page for authorised
   users to create users in the front end. users are filtered by custom fields so
   only users meeting certain criteria are shown in the front end.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to filter pages](https://wordpress.org/support/topic/how-to-filter-pages/)
 *  [VisualData](https://wordpress.org/support/users/visualdata/)
 * (@visualdata)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/how-to-filter-pages/#post-6434667)
 * you may create products as a custom post type with custom fields to sort and 
   filter.
 * if you have to create products as a page, there is a plugin [Exclude Pages ](https://wordpress.org/plugins/exclude-pages/)
   that allows you to show or hide pages.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Unique content-section per user](https://wordpress.org/support/topic/unique-content-section-per-user/)
 *  [VisualData](https://wordpress.org/support/users/visualdata/)
 * (@visualdata)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/unique-content-section-per-user/#post-6424994)
 * hi,
 * have you tried to extend users with custom fields and store the user specific
   information in their custom fields? the content can then be shown according to
   the id of the logged in users.
 * a few plugins can do this job. pods is my favorite as it is very flexible and
   can extend other content types.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Modification a function in a plugins in function.php](https://wordpress.org/support/topic/modification-a-function-in-a-plugins-in-functionphp/)
 *  [VisualData](https://wordpress.org/support/users/visualdata/)
 * (@visualdata)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/modification-a-function-in-a-plugins-in-functionphp/#post-6419701)
 * hi,
 * redeclare the function may cause problems. can you modify your template and use
   your own function to display the values instead?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Post generated from SQL table](https://wordpress.org/support/topic/post-generated-from-sql-table/)
 *  [VisualData](https://wordpress.org/support/users/visualdata/)
 * (@visualdata)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/post-generated-from-sql-table/#post-6414044)
 * Hi,
 * You may consider using pods to extend posts and store the post specific data 
   in custom fields. this can easily be done using pods template and post template.
   some of the short code can be stored as post content, or in the post template.
 * If you need to keep the sql table to integrate with other system, you may also
   use pods advanced content types.
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [Multi-user site with profiles, calendars, etc.](https://wordpress.org/support/topic/dev-help-multi-user-site-with-profiles-calendars-etc/)
 *  [VisualData](https://wordpress.org/support/users/visualdata/)
 * (@visualdata)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/dev-help-multi-user-site-with-profiles-calendars-etc/#post-6414750)
 * Hi nickchia,
 * You may try pods which is a flexible and powerful framework to develop cms on
   WordPress platform. user profile and roles can be easily done by extending users
   with custom fields, some fields for admin only and some fields to store images.
   you may search for an event plugin that produces a custom post type to be extended
   with pods. the alerts can be achieved by cron jobs.
 * I have coded an add-on to WP All Import which you might find useful to import
   users or custom post types. [CIO custom fields importer](https://wordpress.org/plugins/custom-fields-csv-xml-importer/)
   the customers can be either users with role “customers”, or custom post types
   with custom fields storing data.
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [Bulk page creation with keyword replacement.. a master template page?](https://wordpress.org/support/topic/bulk-page-creation-with-keyword-replacement-a-master-template-page/)
 *  [VisualData](https://wordpress.org/support/users/visualdata/)
 * (@visualdata)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/bulk-page-creation-with-keyword-replacement-a-master-template-page/#post-6411034)
 * Hi there,
 * have you found a solution already? you may use a spreadsheet software to create
   a list, with some columns storing text that stay the same,and some columns store
   page specific keywords, or title. save as a csv file, and then use a plugin such
   as WP All Import to import to wordpress.
 * WP all import allows you to drag and drop fields from your CSV file to dynamically
   construct the title and content during import. If you need to update some of 
   the keywords in the future, just update the csv and run the import again by updating
   pages. big files are divided into small manageable chunks before import so you
   can import even big files.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Automatically change post title meta with date.](https://wordpress.org/support/topic/automatically-change-post-title-meta-with-date-3/)
 *  [VisualData](https://wordpress.org/support/users/visualdata/)
 * (@visualdata)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/automatically-change-post-title-meta-with-date-3/#post-6407311)
 * you may modify the template and use php to generate the date and show the date
   after the title.
 * if you really need date in the title, you may write a script and use cron job
   to update this post every day.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Please help: External SQL file import to wp-posts](https://wordpress.org/support/topic/please-help-external-sql-file-import-to-wp-posts/)
 *  [VisualData](https://wordpress.org/support/users/visualdata/)
 * (@visualdata)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/please-help-external-sql-file-import-to-wp-posts/#post-6405071)
 * hi there,
 * have you found a solution? was your old post created with WordPress? you may 
   consider importing the sql into a table, exporting the old posts in csv format,
   and import it back as posts again using plugins such as WP All Import. there 
   are many options to customize the import process and it is a free plugin.
 * cheers.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [I want to build a CPT picker](https://wordpress.org/support/topic/i-want-to-build-a-cpt-picker/)
 *  [VisualData](https://wordpress.org/support/users/visualdata/)
 * (@visualdata)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/i-want-to-build-a-cpt-picker/#post-6402875)
 * Hi there.
 * Are you sure you want customers to click and choose from thousands of designs?
   the number of choices are overwhelming and may not be the best user experience,
   even with images and titles. this is often site owner’s job, not customers 🙂
 * it is easier to display the custom post types in a gallery for customers to search,
   browse and choose. this is the approach that many ecommerce solutions take.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Plugin/framework to create views for posts?](https://wordpress.org/support/topic/pluginframework-to-create-views-for-posts/)
 *  [VisualData](https://wordpress.org/support/users/visualdata/)
 * (@visualdata)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/pluginframework-to-create-views-for-posts/#post-6399990)
 * Hi,
 * have you tried pods template? you may create a template to show lists and use
   short code to control what posts to display on your page. the short code is integrated
   into content editor.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to auomatically update date in Post title ?](https://wordpress.org/support/topic/how-to-auomatically-update-date-in-post-title/)
 *  [VisualData](https://wordpress.org/support/users/visualdata/)
 * (@visualdata)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/how-to-auomatically-update-date-in-post-title/#post-6401088)
 * Hi,
 * have you found a solution to the problem?
 * You may modify your post template to show post title + current date. the current
   date can be generated by php code. the changes can apply to all posts, or your
   posts meeting certain criteria.
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [We have 2 site and want 1 login to use both](https://wordpress.org/support/topic/we-have-2-site-and-want-1-login-to-use-both/)
 *  [VisualData](https://wordpress.org/support/users/visualdata/)
 * (@visualdata)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/we-have-2-site-and-want-1-login-to-use-both/#post-6399067)
 * hi there,
 * have you found a solution yet? this is easier to implement if all of your sites
   use WordPress and belong to the same multisite network. The user details are 
   stored in the same table for user authentication.
 * If you have to use another package to build the site for user registration, the
   user details need to be automatically created or imported in WordPress site for
   user authentication.

Viewing 15 replies - 61 through 75 (of 82 total)

[←](https://wordpress.org/support/users/visualdata/replies/page/4/?output_format=md)
[1](https://wordpress.org/support/users/visualdata/replies/?output_format=md) [2](https://wordpress.org/support/users/visualdata/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/visualdata/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/visualdata/replies/page/4/?output_format=md)
5 [6](https://wordpress.org/support/users/visualdata/replies/page/6/?output_format=md)
[→](https://wordpress.org/support/users/visualdata/replies/page/6/?output_format=md)