tzkmx
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Removing ms-files.php after Upgrading Existing Multisite to 3.5But then you’d have to restore widgets, theme options and so on… I’m going through this in one of my networks, luckily there are only a few blogs at this moment. I’d go definitely for editing the sites at hand. But I’m going to trying to do, not something I know the outcome.
Forum: Fixing WordPress
In reply to: How to Stop 301 Redirects And Remove a Dead Diamond Post@lolcaption that looks like a way to looping a redirection forever.
Forum: Fixing WordPress
In reply to: How to add thumbnails to RSS?I’d go for hacking functions.php from wpbeginner code, however it’s because it’s more fun to me.
The plugin looks nice however it seems abandoned at this moment.
Forum: Themes and Templates
In reply to: What's in an RSS feed from a WordPress site? (featured image?)Look at this thread:
https://www.ads-software.com/support/topic/how-to-add-thumbnails-to-rss
Forum: Fixing WordPress
In reply to: My Site RSS feed is not avalableSeems like it’s solved now, I can read https://feeds.feedburner.com/bizsuccessguide without troubles.
Forum: Plugins
In reply to: [Redirection] Redirection to Target URL containing Query StringI really don’t know how to achieve that with redirection plugin, however with a RewriteRule you could try something like:
RewriteCond %{REQUEST_URI} ^blog/([0-9]*)/([0-9]*)/?$ RewriteRule ^blog/([0-9]*)/([0-9]*)/?$ $1/$2/?cat=306,10,11 [L,QSA]
Forum: Fixing WordPress
In reply to: RSS feed suddenly only showing partial contentWhat’s your setting in Settings->Reading?
https://lifeisnoyoke.com/blog/feed/ is returning just the excerpts, so if is that what your are sending through feedburner, that’s what you need to verify.
Forum: Plugins
In reply to: Facebook Group feed into WordPress BlogI don’t know if FB groups provides RSS feeds, but I doubt so since RSS is for public sindication, and you are talking about a private group.
Forum: Fixing WordPress
In reply to: How to Stop 301 Redirects And Remove a Dead Diamond PostNo idea, probably you could have better luck in support forum of the plugin, try searching previous posts there.
Forum: Fixing WordPress
In reply to: Twenty 11 : Footer messed upWPyogi is suggesting you should upload the footer.php file you get with WP zip archiver you can get from www.ads-software.com, and overwrite the file you messed up.
Forum: Fixing WordPress
In reply to: .htaccess redirectionThe rewrite rule is fine, however it needs a condition in order to work properly as you don’t want to mess with the pages under /wiki/
Try this:
RewriteEngine On RewriteCond %{REQUEST_URI} !^wiki/ RewriteRule ^(.*)$ https://www.mysite.com/site/$1 [L,R=301]
Actually both sites have not the same url, they have just the same host, and they are not actually subdomains, just subdirectories. Handling the right concepts would help you to understand better how to implement rewrite rules and other fancy tricks you could get inspired later.
Forum: Fixing WordPress
In reply to: My post feed are redirectedFeeds are served for tags, categories and the whole site, since feeds lists posts, it really makes no sense a feed from one single post.
Forum: Fixing WordPress
In reply to: default permalink works only!The .htaccess file is a crucial part of Apache serving your site (it’s read before interpreting any PHP code), would you mind posting your .htaccess rules in order to being able to spot a bug if there is one in it?
Is there any plugin you know requiring access to .htaccess? It would be very bad practice, indeed.
Forum: Fixing WordPress
In reply to: Permalink is dropping headerDid you changed the URLs of the posts existent before the permalink method? Maybe that is part of the problem.
Forum: Themes and Templates
In reply to: Image position setting (theme: autofocus)Looks like a very outdated theme… however you could try searching here:
https://www.ads-software.com/support/theme/autofocus
That support forum is active yet, so maybe you can find helpful advice by other users using this theme. Good luck!