John Parris
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to create a vertical line between two columns?Hi there,
Your question is theme related, and since you’re using Divi – which is a commercial theme – you’ll need to ask their support folks. The ww.wp.xz.cn forums do not allow support of commercial products here.
Forum: Themes and Templates
In reply to: New URL for HOME link in OneTone themeHi,
You should be able to change the menu links using Appearance > Menus in your WordPress dashboard.
Forum: Fixing WordPress
In reply to: Permalien ErrorHi,
Can you provide links to the post and the page?
Forum: Fixing WordPress
In reply to: No images showing up on PAGESHi there,
Try the Better Search and Replace plugin to search through your database and replace all the .net domain occurrences with the .com one. https://ww.wp.xz.cn/plugins/better-search-replace/
Forum: Fixing WordPress
In reply to: How to make Thumbnail Posts responsiveYes you need the #
Forum: Networking WordPress
In reply to: second WP install causing problems with first installThe page and post content are stored in the database. Wiping out the WordPress files themselves won’t delete the content. If you reinstall WordPress, just hook it into the same database and you’ll be good. That database info (name, host, login info) is stored in the wp-config.php file in the root of the web folder.
Forum: Fixing WordPress
In reply to: How to make Thumbnail Posts responsiveNo problem! The easiest way will be to install Simple Custom CSS and add it in the plugin’s interface. It’s easier, and you won’t lose your customizations when you install updates in the future.
Forum: Networking WordPress
In reply to: second WP install causing problems with first installHi there,
Another fellow upstater here. 🙂
How did you go about installing the copy in the subdirectory? It’s looking like maybe there are some missing files now in the original install. Are you comfortable with copying the WordPress files back into the main site folder?
Forum: Fixing WordPress
In reply to: query_posts Order by Custom FieldAs noted on the query_posts page, it’s best not to use that at all. Use WP_Query or the pre_get_posts hook instead.
Forum: Fixing WordPress
In reply to: How to make Thumbnail Posts responsiveHi there,
For those images specifically, you can add this CSS to make the images fit:
#homeNoticias img { height: auto; max-width: 100%; }If you need it on other images, you might be able to just target “img” instead of “#homeNoticias img”, but you’d want to test that out by making sure it doesn’t break other images on the site.
Forum: Fixing WordPress
In reply to: Featured area is not working with any browsers except SafariHi,
Since SmartMag is a commercial theme, you’ll need to ask their support folks about this.
Forum: Localhost Installs
In reply to: Home page visible, all other content is 404Try creating a .htaccess file on the one that doesn’t have it, and add this in it:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>Forum: Fixing WordPress
In reply to: Reverse Post Order Using Custom WidgetForum: Localhost Installs
In reply to: Home page visible, all other content is 404Do you see a .htaccess file in the root on your web directory? If so, what’s in it?
Forum: Fixing WordPress
In reply to: URL to (archive) list of specific postsYou can use a shortcode plugin like this (https://ww.wp.xz.cn/plugins/display-posts-shortcode/), and link them to the page where the shortcode is.