Greg Berthelot
Hi I have a form which is sending an email. I'd like to add to the email a link to a file. The email is not send if the link contains https://s18718.pcdn.co/wp-content/ https://domain.com/wp-content/uploads/2018/03/my.pdf email not send https://domain.com/uploads/2018/03/my.pdf email send Is it a normal behavior? Any turn around? Thanks Greg
Hi, We have the need to create WP custom post by importing a zip that contain a csv file and an images folder. ZIP - my-products.csv - images -- image1.jpg -- image2.jpg -- image3.jpg -- image4.jpg The import zip csv is (can have more columns): "date", "title", "price", "description", "image1", "image2", "image3" "01-12-2017", "product1", "100", "Lorem ipsum","001-001.jpg", "001-002.jpg", "" "01-12-2017", "product2", "200", "Dolores si amet","002-001.jpg", "002-002.jpg", "002-003.jpg" New import zip csv is (can have more columns): "date", "title", "price", "description","image1", "image2", "image3" "02-01-2017", "product3", "500", "Consegur terni alep","001-001.jpg", "001-002.jpg", "" "02-01-2017", "product4", "300", "Sed astrolab","002-001.jpg", "002-002.jpg", "" "02-01-2017", "product5", "300", "Lorem ipsum","003-001.jpg", "003-002.jpg", "003-003.jpg" That should create: 1. A listing view with date (each import has a new date field): - 01-12-2017 (link to product list) - 02-01-2018 (link to product list) - ... 2. A product listing view per date Ex for 01-12-2017: - Product 1 + 001-001.jpg (link to product detail page with other datas from csv) - Product 2 + 002-001.jpg (link to product detail page with other datas from csv) - ... Ex for 02-01-2018: - Product 3 + 001-001.jpg (link to product detail page with other datas from csv) - Product 4 + 002-001.jpg (link […]