1wdtv
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress log off problemIt’s something outside of WordPress
Forum: Fixing WordPress
In reply to: WordPress log off problemSounds like your browser may be the issue
Forum: Fixing WordPress
In reply to: WordPress log off problemIt could.
Go into settings/general and be sure to set your two URLs to “https”
Forum: Fixing WordPress
In reply to: WordPress log off problemI’ve found that the caching plugin may be the cause. Disable, remove the advanced-cache file snow clear you local browser cache. Try again and see if problem resolves.
Forum: Fixing WordPress
In reply to: WordPress log off problemAre you using a caching plugin?
Forum: Fixing WordPress
In reply to: Have most recent post titles in rss email subject lineHi!
This is most easily done by customizing the RSS feed template yourself, via a child theme or plugin.
See: https://codex.www.ads-software.com/Customizing_Feeds
I’m not sure your level of experience with this type of work, so feel free to ask if you need more help.
Cheers!
spence
1wd.tvForum: Developing with WordPress
In reply to: Blog Folder CreationThis is simply subdomain forwarding.
You can achieve this (depending on your DNS host) two direct ways:
1) You can use a snippet of code in your .htaccess file (regardless of host) on the primary domain of johndoe.com
RewriteEngine on RewriteCond %{HTTP_HOST} ^(?:www\.)?blog.johndoe\.com$ RewriteRule ^(.*)$ https://www.johndoe.com/blog$1
2) For most DNS hosts (like GoDaddy), this is a WYSIWYG option in the dashboard. See, eg: https://www.godaddy.com/help/forward-a-subdomain-19977
3) You do NOT need to first create a physical site on blog.johndoe.com in order to forward the subdomain. This is a DNS solution, not a website file solution ??
Cheers!
spence
1wd.tvForum: Fixing WordPress
In reply to: Image appears on mobile devices but not DesktopHi!
1) What is the image you see (screenshot please?)
2) It is likely that the theme is using conditional CSS that is differentiating content display based on either responsive size or device.Once I know the image you mean, it would be possible to track down the responsible css (or possibly php conditional).
Your question is not very clear.
Are you trying to return a query “result” based only on categories?
If so, then merely modify your wp_query to use parameters that limit the query only to one category or an array of categories.
See: https://codex.www.ads-software.com/Class_Reference/WP_Query
Forum: Fixing WordPress
In reply to: Caption hoverThe plugin provides optional parameters you can use (or display). Just add (or remove) the appropriate ones in the plugin configurations under “Exif Caption Settings”
See https://www.ads-software.com/plugins/exif-caption/screenshots/
Cheers!
Forum: Fixing WordPress
In reply to: mirroring WP content on another WP siteThere is a built-in import tool for WordPress right in the Tools/Import section of the dash… it will do the extraction for you ??
It installs this plugin: https://www.ads-software.com/plugins/wordpress-importer/
Forum: Fixing WordPress
In reply to: Getting kicked back to Login again and again…I would try to overwrite a new install of WP (latest version). You may have some corruption of the primary files.
If you have no plugins installed, and otherwise are running a fresh install…any issues logging-in can only be coming from your hosting environment or browser.
Forum: Fixing WordPress
In reply to: Getting kicked back to Login again and again…Were you running a cache plugin? If so, you may need to first clear your local browser cache and reload the page, or try a fresh browser (because the old contents are still in cache and as such your credentials won’t match).
Forum: Developing with WordPress
In reply to: Help on how to edit/style tagsI think what you are looking to style is the class called .meta-post
See image:
Here is a sample of your css applied:
.meta-post { background-color: #eee; border: 1px solid #ccc; margin: 0px 10px 10px 0px; line-height: 200%; padding: 2px 0 2px 2px; }
Forum: Developing with WordPress
In reply to: Help on how to edit/style tagsURL of site?