RossMitchell
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Updating theme with custom code and no child themeSuggest that you try out different programs.
I would rename the old parent theme directory then upload the new one. Leave the old one accessible just in case. Otherwise if you have no choice then delete the old one completely because some upload programs occasionally glitch when overwriting files, not sure why, they just do.
- This reply was modified 8 years, 1 month ago by RossMitchell. Reason: clarification
Forum: Fixing WordPress
In reply to: help with codeA crude way to do this is to add this css. From the customizer > additional css:
.wrap .arrow { display:none; }Then you will want to close up the vast green band with:
.home-featured .home-widgets-1 { padding: 0; }I build mine inside WordPress using code in custom page templates and plugins, this way I get to use all of the WordPress supporting framework, and at the same time develop the code without interference from WordPress. In my cases I have put my data into new tables within the same database used by WordPress, the rest of WordPress knows nothing about them, you could access a different database from you code but this is more programming than I needed to do.
Forum: Fixing WordPress
In reply to: Problem in displayed text in desktop versionHello poshca,
It is hard to know just where your home page “compliance” text is located. It may be on a PAGE or possibly in a POST. You need to browse around until you find it. Then OPEN that text in EDIT mode, the editor has two tabs, VISUAL and TEXT, you want the TEXT one, This will show the text and html, change the “<p>” and “</p>” tags to h3 etc.Forum: Fixing WordPress
In reply to: Stop customers from copying and moving a siteIf you limit your members to logins that hold Author capabilities, then their only means of walking away with the content they created in their member site is to copy/paste each page/posts.
You could impose a license condition upon the members that grants you exclusive and perpetual web-wide use of their contributions. May not be enforcible, may be too expensive to enforce.Forum: Fixing WordPress
In reply to: Woocommerce – Single Product ImageHave you asked in the woocommerce support forum ?
You could revert to an earlier WC version.
Have you looked at customising the relevant page template ?Forum: Everything else WordPress
In reply to: Problem uploading a new plugin versionYou should be accessing these files using FTP, this makes it easy to rename directories and so on. The “site can’t be reached” suggests that an error in the plugin is stopping the site from responding.
I do my plugin development in localhost.Forum: Fixing WordPress
In reply to: Blog database file storage architectureThank you for clarifying your question.
I answered from my experience of shared hosting and localhost configurations, in these cases the mysql behavious is to create one directory per database (in /var/lib/mysql), which in your context is not viable.
My understanding is that you should be looking at multisite, this is how wordpress.com is managed. You should be asking them how it is hosted and managed. At the scale of operation you are expecting you should not be relying upon free advice harvested from volunteer support forums.Forum: Fixing WordPress
In reply to: lose admin rightYour message is from wordfence.
You need to reset your password using one of the techniques here:
https://codex.wordpress.org/Resetting_Your_Password
All the techniques work, it just depends upon what your skills are and what access you have.Forum: Fixing WordPress
In reply to: Problem with my siteCurious.
Have you talked to your website hosting technical support ?
Can you login to your WordPress administration ? If so then suggest that you bring up the permalinks settings (Dashboard > Settings > Permalinks), change the setting, then change it back and SAVE, just maybe your .htaccess file glitched.Forum: Fixing WordPress
In reply to: Problem in displayed text in desktop versionWaiting for a swift reply!
Some respect and patience is expected from you.
It is only because I believe in your cause that I am taking the time to reply to you.Your problem is that The markup of the Compliance section uses
<p>blocks which are specified in “style.css line 236”, to format into 3 columns. Whereas the About section uses<h3>and h5 and ol elements among others. So your solution is to get that section up in the editor in HTML mode and fix the markup.It is quite clear that the designer of the css intended paragraphs to work just like you see it, the code is:
.section > .container > p { -moz-column-count: 3; -moz-column-gap: 30px; -webkit-column-count: 3; -webkit-column-gap: 30px; margin-bottom: 25px; overflow: hidden; }Forum: Installing WordPress
In reply to: wordpress installation errorCryptic question.
Cryptic response is to delete everything and start again. Step by step, details here: http://codex.wordpress.org/Installing_WordPressForum: Fixing WordPress
In reply to: Tweaking woocommerce pluginThis styling has to be somewhere in CSS or maybe it is all done in javascript.
Suggest that you ask in woocommerce support.Forum: Fixing WordPress
In reply to: Error from changesForum: Fixing WordPress
In reply to: Blog database file storage architectureThere is no problem caused by directory size.
The only files that accumulate in WordPress are media such as images, they are stored in date structured directories such as “2018/03/22/”, otherwise everything is stored in a few database tables. The architecture is capable of scaling, so don’t worry about that.
Of course someone could create a plugin that did accumulate files in a single directory, but that would be an incompetent choice.