paulwpxp
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Error seperating content and graphics, changing menue and fontIn this particular case two themes behave differently because they are hosted on different server with different setting, it’s just file permission that’s block the CSS from loading, that’s all. Contact your admin, he/she will know what to do.
Change file permission
https://codex.wordpress.org/Changing_File_Permissions
http://www.wpbeginner.com/beginners-guide/how-to-fix-file-and-folder-permissions-error-in-wordpress/
Forum: Fixing WordPress
In reply to: Error seperating content and graphics, changing menue and fontThen it’s the CSS problem, the whole stylesheet doesn’t load at all.
Can you type in this url on the browser and be able to load the stylesheet?
{yoursitehere}/wp-content/themes/twentyseventeen/style.cssForum: Fixing WordPress
In reply to: website not working after migrationI have recovered from dummy database, a copy was made few days before deleting. I have migrated it and made sure wp_config.php contains right login details. the website still not working.
The site is empty, with one default first post. This indicates that the database migration is not completed.
Make sure
wp_config.phphas the correct database name.Forum: Fixing WordPress
In reply to: Error seperating content and graphics, changing menue and fontIs the theme in use is a customized theme? The menu appears as inline linked text, this indicates that it’s hard coded in somehow.
I would save a copy of that theme folder, better yet do a complete backup, and then delete the theme. Install a fresh copy of the theme and see if the problem goes away.
Forum: Fixing WordPress
In reply to: I try to make changes within theme but it doesnt save changesDoes your theme use Visual Composer? If that’s the case, check the version (update it to the latest or newer than 5.4.2)
Known issues
- Saving posts or pages is not possible in all browsers when using Visual Composer version 5.4.2 or older.
Plugins with known issues
- Contact Form by BestWebSoft will cause the plugin/theme editors to time out and not save your changes. Workaround: Disable this plugin to use the plugin or theme editors.
https://wordpress.org/support/topic/read-this-first-wordpress-4-9-master-list/#post-9687603
Forum: Fixing WordPress
In reply to: Content lostIt’s 404 error, not content lost. So, it’s better not to do anything with database.
First thing to do, try visiting Permalink page. Go to Settings » Permalinks, click on Save Changes button. Then clear browser cache and reload the web page. If it still returns 404 error, then deactivate all plugins and test loading web page, re-enable plugin one by one to investigate which one might have caused it.
Forum: Fixing WordPress
In reply to: Add/Replace FieldsThere is this plugin that might be helpful for you
https://wordpress.org/plugins/search-and-replace/Forum: Fixing WordPress
In reply to: Section background images not showing on live site after migratingAccess the CSS file via cPanel or FTP: search for “http://localhost/” and replace with “http://yourdomain/”
That particular image is refered as background image property from this CSS file
{yourdomain}/wp-content/uploads/elementor/css/post-153.css?ver=1511663641EDIT: I’m just aware that “elementor” in the path is some kind page builder plugin. In this case, we have to go to edit that page, locate the section, then fix the background image file path right there.
- This reply was modified 8 years, 6 months ago by paulwpxp. Reason: Change where to find the background image CSS
Forum: Themes and Templates
In reply to: [Twenty Fifteen] Remove underline on certain linksThemes must use different CSS because they want different designs. We can have a website without CSS at all, and it’s still workable because all web browsers have default CSS just good enough for normal usage, but people build website differently so it requires different CSS code.
In your example, the purpose is to write additional CSS to override theme’s own style conditionally based on theme name. Problem is we don’t and will never have WordPress-theme-name conditional tag in CSS. Even if there is, to have 1 set or 1 file of additional CSS to override all theme is impossible, because it’s the target element that matter.
Anyway, we can still target a specific element and apply set of properties to override all other possible properties (for this element only). So in this case, your example code can be like this
a.a_link_no_underline { border: none; text-decoration: none; }this code works for ANY theme that defines underline style with either border or text-decoration.
Forum: Fixing WordPress
In reply to: Header error message, cannot edit websiteEDIT: I posted this answer while didn’t see @staartmees ‘s post above, same info actually so I deleted mine to prevent confusing and save time reading.
- This reply was modified 8 years, 6 months ago by paulwpxp. Reason: delete duplicate answer
Forum: Themes and Templates
In reply to: [Twenty Fifteen] Remove underline on certain linksI see nothing wrong there, probably caching issue?
Forum: Themes and Templates
In reply to: [Twenty Fifteen] Remove underline on certain linksCould I have made the difference in the child css, like define a class_link_no_underline defined there instead of just a local empty class?
Yes you are right, but also noted that in WP we make use of “post class” when we want some element styled differently across the site conditionally.
For example, to make all links become pink only if it’s in post tagged with “pink.”
.tag-pink a { color: pink; }See more details here
https://codex.wordpress.org/Function_Reference/post_classForum: Fixing WordPress
In reply to: Where is the css generated and how to change itHi again, I might be wrong but I am quite certain those class names are typical of theme built with some kind of page builder plugin which a lot of commercial themes come bundled with.
My previous post is my best answer for this situation. There is no other way to inspect it from my end. Please refer to theme documentation, or ask directly to theme support.
Forum: Themes and Templates
In reply to: [Twenty Fifteen] Remove underline on certain linksThe sequence doesn’t matter.
For the theme you are using, use
text-decoration: none;instead.FYI please post question in theme’s own support forum, this one is for Twenty Fifteen theme.
Forum: Fixing WordPress
In reply to: How to hide my webpage?We can assign status as draft or private
https://codex.wordpress.org/Post_Status