VisualData
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Site about to go live. How to manage all these images?Hi,
If you give each image a description, caption, standardized informative name, it is manageable to upload all images to the default media library and search by keyword. it is possible to import to the custom fields if the image information is already in spreadsheet format.
there are plugins such as Wp All Import and WooCommerce add-on that can import products from CSV spreadsheet format. the plugins make updating product information easy in the future, and can automatically import images.
It is possible. here are some thoughts for you to consider.
change the .css file to .php so that the php code in the css file will be parsed and executed. you may then use php code to find out the blog_id and construct the path to the site specific file.
Forum: Fixing WordPress
In reply to: How to populate custom user columns with data from user formhi Dani,
have you thought of using a plugin such as Admin columns to show custom fields of users? the free version seems to work for me.
Hi
have you solved your problem? as far as I understand, the users in a WP multisite are all stored in a single table, and access to a sub site is managed by information stored in user meta table.You may export all users of a sub site and import it to a standalone WP site in the future. the user ID may change after the import. you may use a plugin such as WP All Import to map the posts to users by user name.
Forum: Fixing WordPress
In reply to: How to automatically create titles from existing postsHi Jess,
Have you found a solution to the problem? you may try to export the posts to a CSV file, copy and paste the content to post title, and import to WordPress again.
Forum: Fixing WordPress
In reply to: i want to post pics horizontallyHi Richard,
here are some options for you to consider.
1. organizing the photos and texts in different posts, and use a slider to show one at a time.
2. use a eCommerce plugin to present information
3. use thumbnails with a html anchor or link. a gallery plugin may do the work.
Forum: Fixing WordPress
In reply to: I need to do redirect in functions.phpHI
Have you found a solution to the problem?have you tried echoing the following html code?
<META HTTP-EQUIV="refresh" content="0.01;URL=/info-contratar/">
0.01 is the delay in seconds before refreshing the page. you may adjust this value depending on your needs. it will force a page refresh if supported by the browser.