Jack
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: My wordpress site post deleted automaticallyI don’t have an easy answer off the top of my head.
You can always use the internet archive to try to find your old content:
https://archive.org/web/I hope it’s not too many posts ??
Forum: Fixing WordPress
In reply to: Renegade caching? Can’t edit homepageSo are you looking at the homepage from https://yourdomain.com/wordpress/ ?
What happens if you go to https://yourdomain.com/wordpress/index.php ?Forum: Localhost Installs
In reply to: cannot access to login page on local hostAt this point too, I would look at this like a regular site move:
https://codex.www.ads-software.com/Moving_WordPressIf you want to keep your live URL as your dev URL, you’ll need to alter your computer’s vHosts file. However, that may get cumbersome and confusing if you want to switch back and forth from your live site to your local dev site.
Forum: Developing with WordPress
In reply to: wordpress wp_ajax_[ACTION] display a broken imageYour example pages aren’t accessable via the Internet. Localhost only shows up on your machine.
Have you enabled wp_debug? I feel like a PHP error is being thrown that you don’t see. Namely, an error like ‘headers already sent’.
See about wp_debug:
https://codex.www.ads-software.com/Debugging_in_WordPress
- This reply was modified 7 years, 12 months ago by Jack.
I agree with @poonam9. All the arguments looks correct. I assume you didn’t manually register that custom taxonomy because you have to do that for this function to work. That is, if you’re not using WP’s built-in taxonomies, like ‘category’.
Also, take look at the taxonomy values argument here:
https://codex.www.ads-software.com/Function_Reference/wp_dropdown_categories#Arguments- This reply was modified 8 years ago by Jack.
Forum: Fixing WordPress
In reply to: Permalink: How to create custom blog post URL’s in new siteHmm, that is news to me about Google’s http to https method. I would look up any *official* webmaster guidelines they may have about this scenario. It doesn’t seem too uncommon to me, especially since Google is now recommending everyone use an SSL.
And see if there’s anything that can help you in the Google console/webmaster tools.
Forum: Fixing WordPress
In reply to: Permalink: How to create custom blog post URL’s in new siteYou can set up 301 redirects. This tells Google the post has been moved, and it redirects anyone to the post at the new url.
Forum: Developing with WordPress
In reply to: page-item-idThe page id is always in the class of the <body> tag. You can use that class name to narrow your styles to only a specific page.
Or are you asking where the php generates it?
Forum: Developing with WordPress
In reply to: How to have image scroll with pageThis is a css value for the css position property.
The image area wrapper is using:
position: fixed;
That makes the element stay where it is no matter where the visitor scrolls. Take a look at the spec for the position property:
https://developer.mozilla.org/en-US/docs/Web/CSS/position
- This reply was modified 8 years ago by Jack.
Forum: Developing with WordPress
In reply to: How to have image scroll with pageI don’t see a scrolling image on that link. Are you talking about the loading spinner (tetris block animation) that shows before the page finishes loading?