VisualData
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: domain name in titlehave 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
In reply to: Updating Alt and Title Tags on Imageswhen 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 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
In reply to: Multiple organisation user loginsThis 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
In reply to: How to filter pagesyou 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 that allows you to show or hide pages.
Forum: Fixing WordPress
In reply to: Unique content-section per userhi,
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
In reply to: Modification a function in a plugins in function.phphi,
redeclare the function may cause problems. can you modify your template and use your own function to display the values instead?
Forum: Fixing WordPress
In reply to: Post generated from SQL tableHi,
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
In reply to: Multi-user site with profiles, calendars, etc.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 the customers can be either users with role “customers”, or custom post types with custom fields storing data.
Forum: Hacks
In reply to: Bulk page creation with keyword replacement.. a master template page?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
In reply to: Automatically change post title meta with date.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
In reply to: Please help: External SQL file import to wp-postshi 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
In reply to: I want to build a CPT pickerHi 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
In reply to: Plugin/framework to create views for posts?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
In reply to: How to auomatically update date in Post title ?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
In reply to: We have 2 site and want 1 login to use bothhi 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.