RichardMisencik
Forum Replies Created
-
Hello @wpallimport
Thank you, so if the quantity contains an actual number the code will be ignored and it will import as it is?
Thank you @wpallimport
I will look into thisForum: Requests and Feedback
In reply to: Un-attach post image attachmentsThis is a most disappointing state of affairs. The ability to track images to posts/pages is not a whimsical thing; it is a basic, necessary feature of a Media Library. And there are any number of ways that this could be done.
Exactly, I dont understand how nobody from the dev team, or anyone at all thought about that.
Forum: Requests and Feedback
In reply to: Un-attach post image attachmentsThis is a most disappointing state of affairs. The ability to track images to posts/pages is not a whimsical thing; it is a basic, necessary feature of a Media Library. And there are any number of ways that this could be done.
Exactly, I dont understand how nobody from the dev team, or anyone at all thought about that.
Forum: Requests and Feedback
In reply to: Un-attach post image attachmentsYeah but I would like to be able to modify the attachments in a post. Lets say I want to remove 1 image from the gallery, but I dont want to delete it completely, because I might use it for something else later. Adding new images usually works, when you just add media and close the window.
Forum: Requests and Feedback
In reply to: Un-attach post image attachmentsThanks, I will try that one out, but this should be built in functionality. Is this the right forum to suggest a functionality or should I post somewhere else?
Forum: Installing WordPress
In reply to: Chmod permisions not working? Defaults to 777 and 666Thanks a lot Clayton. We will see what their answer is.
Forum: Installing WordPress
In reply to: Chmod permisions not working? Defaults to 777 and 666And which are the best to use?
Forum: Installing WordPress
In reply to: Chmod permisions not working? Defaults to 777 and 666Yeah, Im waiting for the reply. And about 705 and 604 on another hosting, are these values allright?
Forum: Installing WordPress
In reply to: Chmod permisions not working? Defaults to 777 and 666I read all that stuff, but it seems like a hosting server configuration. Because every dir/files have this permissions. I just downloaded new wordpress from the site and it was already like that.
When I was installing wordpress on a different hosting, dirs had automatically 705 and files 604 chmod. Are these values okay? I had to change some things around for it to work, because some of them were too strict, but better that than 777 and 666 on everything.
The hosting is on my client so I cant contact them directly, but I asked him to do that already.
Anyway, when I try to edit chmod on any file, even if I already changed the value before. I get a window like this:
Which is weird because it should show my current chmod for this file, but its always like reseting itself.
Forum: Plugins
In reply to: [Debug Bar] installed but did nothingSame, its broken
Forum: Hacks
In reply to: Is register_post_type called only in admin?I think its supposted to be that way, and its expecting it to be that way, because even when I register the post type, and then comment out the code. It removes the post type.
Same with using:
if(!post_type_exists('post-type')) { add_action('init', 'my_register_post_type'); }
Forum: Hacks
In reply to: Is register_post_type called only in admin?Thanks for the answer, yea I use register_post_type() inside a function and then call it on init.
So the actual hook is doing its own thing so it doesnt register the post on every page load right?
Forum: Fixing WordPress
In reply to: No URL structure for custom post typeHi antekdesign, I managed to get it working by changing public -> true to false. I then noticed that Slider dissapeared from menu, which was caused by public -> false. I got it working by changing some values, like show_ui, show_in_menu etc. to true.
So now I can see it in the admin menu, displaying ok on the homepage and mysite.com/slider/slide-1 returns 404 error. Would this be ok? I also added that code you provided but it still displaying 404 error. I have my custom 404.php. Is this a good solution too, or should I somehow make the redirect work? Thanks