RossMitchell
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Suggest a CategoryCreate a category say “feedback”.
Create a Post in category feedback, have it say something like this:
Presently the category heirachy is:Dogs German shepherds Other breeds Cats Tabby Persian Everything elseIf you would like to add additional categories or change this arrangement then please reply to this post.
Then give this category its own menu entry, and wait for the requests to come in.
Forum: Everything else WordPress
In reply to: Problem uploading a new plugin versionlannister please start your own thread as per the forum rules.
As a first step I suggest that you talk to your website hosting support.Forum: Developing with WordPress
In reply to: Php wp content word to tag linking brokes the HTML tagsYour scheme is concise and direct but just a little too simple to do everything you are looking for. For instance what if one of the tags is part of a word, you will break it out and link it, so if your tag is “book” it will put a link in “bookkeeper”, and it can be even worse like “own” and “town”.
The only solution that will really work is to parse the text, handling whole words and scanning for html (even within words?). It will need to track when it is inside and outside html, especially links.
Is there an easier way ? Like getting the authors to link the tags.Forum: Fixing WordPress
In reply to: Building a software program on WP Total website.For myself I develop within WordPress, even if it is in localhost so I have immediate and local access to all the files. This way the software is developed in the environment it will live in. No room for variations in environment or browser context, no need to sort out differences that this way I never need to know about.
Forum: Fixing WordPress
In reply to: Shifting header image for not(.home) pagesIt would help us help you if you included a link to your website.
The easiest and best way to fiddle with CSS is in the customizer, your changes are made live.
Forum: Fixing WordPress
In reply to: Pinterest Claim SiteEasiest way is to search the plugins archive here for “pinterest verification” and use one to provide the meta tag.
Forum: Fixing WordPress
In reply to: Looking for a Responsive and Highly Customisable but Free themeWell it depends.
What extra abilities do you need ? When I was setting up a woocommerce store, I started with a theme called “storefront” that gave me woo already integrated.Forum: Fixing WordPress
In reply to: Invalid argument in foreach (Woocommerce)As a first point, please seek support and report your fix in the woocommerce support forum.
Yes your fix by editing functions.php should have you doubting the strength and suitability of your fix. To this I add that it is probably even more so! and for several reasons:
– Unless base is a child theme, then your fix will be lost in a theme update.
– On the other hand it is unusual even exceptional to have woocommerce functionality intruding into the theme, though it happens in page templates. Most likely the code was borrowed from woo by the theme author, its ancestry and version of origin are unknown. This makes updating woocommerce and themes more difficult than usual, for this reason I have some sites latched onto old woocommerce versions as I have not taken the time to merge the updates.So to be safe convert to a child theme and you will be ok.
Forum: Fixing WordPress
In reply to: Looking for a Responsive and Highly Customisable but Free themeYes you will find many suitable free themes.
Search the theme archive here, be sure to include responsive and other categories as suit your needs.
Some paid themes have extensive customize options in their theme > options pages and tabs, free themes don’t do this so much. Instead you are more likely to use the customizer especially additional CSS and also plugins to customise, more extensive customization may need you to create a child theme at which point you can customize your “functions.php” and also page templates. Learning these customizing skills will be very rewarding.Forum: Fixing WordPress
In reply to: How do I Convert a Page to a Category Page?I think your sticking point is that “category Pages” are actually called POSTS.
So at the dashboard, navigate to PAGES > All Pages > find which one and EDIT, copy the contents to the clipboard.
Then, Dashboard > Posts > New Post. Paste the contents from the clipboard, set a title and most importantly tick the relevant CATEGORIES, then save / update.Hope this helps.
Forum: Fixing WordPress
In reply to: Multiple INDEPENDANT WordPress sitesYes it is possible.
You only need do a little bit more than you expected, (database + config).
If the present websites are independent then the html upgraded to WP will be too.– Archive the old HTML site files, you will probably want to stripmine them for content. Delete the files from the webserver.
– Copy a fresh set of WordPress files into the same directory.
– Create a new database and database user + password, configure these into the wp-config.php of the new site.
– Run the install script.The details are in the install instructions:
http://codex.wordpress.org/Installing_WordPressForum: Fixing WordPress
In reply to: How to tell the error is the plugin or autoresponderFirst enable debugging:
https://codex.wordpress.org/Debugging_in_WordPress
Are there any errors, also check the error logs.Also seek support at the support forum of your plugin.
Forum: Fixing WordPress
In reply to: Timezone Issue: UCT Time IncorrectIt looks like the webserver is not correctly configured, you will need to talk to your web hosting technical support to fix this.
On the other hand if you set the WordPress timezone to 0 (zero) it will show your updates with the correct time. This is not a very good solution but may be necessary.
Forum: Developing with WordPress
In reply to: Where to locate plugin data files?Another option is to put the data into the database. If it is a very little bit of data then it might fit into the options table under a few keys related to your plugin name, otherwise you can create a new table or tables, you will have complete control over them, the rest of WordPress never need know about them. You then use SQL to fetch your data.
It all depends upon the data, how it is organized and what you want to do with it. Is it static or substantially static, or does it get updated ? Does it get updated by user interactions ? Updates could be difficult with a file organisation, routine with SQL.Forum: Fixing WordPress
In reply to: Pinterest Claim SiteWhat does your google webmaster control panel tell you ? If you don’t use this then you must get it:
https://www.google.com/webmasters/connectThis is your present robots.txt
User-agent: * Disallow:This is one I use normally:
User-agent: * Disallow: /wp-admin/Please try this and see if it makes a difference.