crerem
Forum Replies Created
-
Thank you for sharing!
Forum: Plugins
In reply to: [One Click Demo Import] Missing CssHi,
Thanks – i solved. In this case it was a conflict with bootstrap.jsThanks again
Forum: Plugins
In reply to: [One Click Demo Import] Missing CssHi,
Thanks for the answer. I don’t think the theme is changing something but i can look. Are you using .dialog from jquery ui to show that window ?Thank you
Forum: Plugins
In reply to: [One Click Demo Import] Images fail to importOK,
Thanks , I will post here my findings.Forum: Plugins
In reply to: [One Click Demo Import] Images fail to importhi,
The image size is not 0, the image is accessible and can be loaded in browser.(for ex : http://demo-install.wpestate.org/wp-content/uploads/2018/04/WPEstateMourgueFile3313.jpg ) I did the export file 3 min before doing the import (so image was uploaded in Media).Maybe you can test the above link – and figure it out why it returns 0 in size.
Thanks
Forum: Plugins
In reply to: [One Click Demo Import] Images fail to importHi,
I found this article that explain the problem
https://www.playnicetogether.com/2015/11/07/wordpress-importer-plugin-content-length-problem-solved/the solution was to add
add_filter( ‘wp_http_accept_encoding’, function( $type, $url, $args ) { return array(); }, 10, 3 );
in functions.php but it did not worked for me
However it worked to comment these lins in wordpress_imported.php
// if ( isset( $headers[‘content-length’] ) && $filesize != $headers[‘content-length’] ) {
// @unlink( $upload[‘file’] );
// return new WP_Error( ‘import_file_error’, __(‘Remote file is incorrect size’, ‘wordpress-importer’) );
// }// if ( 0 == $filesize ) {
// @unlink( $upload[‘file’] );
// return new WP_Error( ‘import_file_error’, __(‘Zero size file downloaded’, ‘wordpress-importer’) );
// }for some reason the file size of the uploaded file is 0 and wp delete it. I don;t know why is 0 but maybe someone from your team figure this out and offer a solution like the one in the blog post.
Thanks
Forum: Plugins
In reply to: [One Click Demo Import] Images fail to importHi,
I may have a similar problem. How can i test if a image hosting server is not blocking the import of the image.
Thanks
- This reply was modified 8 years, 2 months ago by crerem.
Forum: Everything else WordPress
In reply to: Profile edit for this forumAnd i really need to change the email since i will not use the current one for too long
Forum: Everything else WordPress
In reply to: Profile edit for this forumno – i cannot change the site and email
Forum: Fixing WordPress
In reply to: Attach image(s) to posts or pagesHi,
For your case the ,”custom fields” method is the best,read this to learn how :display post images via custom fields/Forum: Fixing WordPress
In reply to: Adding A Repeating BackgroundMake sure you have at least wordpress 3.0.
Add this add_custom_background(); in functions.php = it will enable the custom backgrond function in appereance menuForum: Themes and Templates
In reply to: "add_custom_background" only for the home pageRead this article : using custom background function to style any other div
You need copy paste a function from theme.php, do minor changes and call that function via add_custom_background() in functions.php
Forum: Fixing WordPress
In reply to: using static page as a category pageMaybe this will help :http://www.binarspace.com/wordpress-tips-and-tricks/content-on-categories-pages/
– you insert a static content inside the category page and make a hub page with a static content (maybe apply some SEO over it) and the dynamic part formed by links to the latest posts(maybe wit excerpts)
Forum: Fixing WordPress
In reply to: Static Content SectionsYou can use a page for this
Check this solution: http://www.binarspace.com/wordpress-tips-and-tricks/static-content-on-a-wordpress-home-page/