Tony
Forum Replies Created
-
Forum: Plugins
In reply to: [Connect Matomo (WP-Matomo, WP-Piwik)] An error occured: Unknown site/blogHi fotoglut. I’m using Piwik version 1.12.
Forum: Plugins
In reply to: [Connect Matomo (WP-Matomo, WP-Piwik)] An error occured: Unknown site/blogHi,
Thanks for your feedback.
I contacted the host and they confirmed that they don’t permit requests from the server/webspace to itself for security reasons.They provided the path to the site so I could try that instead, but when I enter the path into the Piwik path field (/home/sites/mydomain.co.uk/public_html/stats/) it gives an error page containing just the text ‘This XML file does not appear to have any style information associated with it. The document tree is shown below.’
When I look at the error log it shows the following entries:
/home/sites/mydomain.co.uk/public_html/develop/wp-content/plugins/wp-piwik/wp-piwik.php on line 765 mydomain.co.uk [Sun Aug 03 14:49:25 2014] [error] [client 82.41.167.194:54429] AH01215: PHP Notice: Undefined variable: objRequest in /home/sites/mydomain.co.uk/public_html/develop/wp-content/plugins/wp-piwik/wp-piwik.php on line 765 mydomain.co.uk [Sun Aug 03 14:49:25 2014] [error] [client 82.41.167.194:54429] AH01215: PHP Notice: Use of undefined constant ob_start - assumed 'ob_start' in /home/sites/mydomain.co.uk/public_html/develop/wp-content/plugins/wp-piwik/wp-piwik.php on line 762 mydomain.co.uk [Sun Aug 03 14:49:25 2014] [error] [client 82.41.167.194:54429] AH01215: PHP Fatal error: Call to a member function process() on a non-object in /home/sites/mydomain.co.uk/public_html/develop/wp-content/plugins/wp-piwik/wp-piwik.php on line 765
I don’t know if this is something that I should feed back to the host, or whether you have any ideas what’s going on ??
Thanks again,
Tony.Forum: Themes and Templates
In reply to: [Market] Slideshow ImageHi,
I had something similar, except the slider was appearing on only the front page and the main Blog page.
I wanted it only on the front page so I solved it by editing the file ‘slider-nivo.php’ on line 3 removing the reference to is_home(), so the line now reads:
if ( ( of_get_option('slider_enabled') != 0 ) && (is_front_page() ) )
Hope this helps anyone else who wants to achieve this.
Regards,
Tony.Forum: Themes and Templates
In reply to: [Responsive] Responsive theme not responsive on mobile anymore??Many thanks WPyogi. Found the solution here:
https://cyberchimps.com/forum-topic/update-breaks-responsive/If you scroll to the bottom of the page Ulrich Pogson has posted a solution. The changes need to be made in the theme’s functions.php file.
Forum: Themes and Templates
In reply to: [Responsive] Responsive theme not responsive on mobile anymore??Hi all,
I’ve just noticed this too since updating to the latest version of the theme; 1.9.3.4.
I thought immediately that the link to the responsive stylesheet was broken, but it’s not. I’ll try to dig deeper and if I find a solution I’ll post it back.
Tony.
Forum: Themes and Templates
In reply to: [Twenty Eleven] Change fonts for entire Twenty Eleven siteHi Vickie,
Changing the headings individually is slightly more involved because they tend to be sized specifically for the area they appear on the page.
For instance the H1 heading used for the site name has a class of site-title and is 36px, whereas the H1 heading in the main content area is also 36px but has a class of entry-title, so you need to alter the pixel sizing in two places.
Therefore you will need to inspect the headings location, find out what class definition is styling it and then duplicate that styling in your child theme with your altered declarations.
What browser are you using?
I use Firefox with the FireBug add-on installed. This add-on allows you to select a specific part of the web page and inspect what styles are being applied to it. That way it’s easy to refer to the default Twenty Eleven stylesheet, even down to the specific line on which the style occurs, and duplicate it into your own child stylesheet making any alterations accordingly.Sorry I can’t give you a direct reply but for this theme it’s not simply a case of being able to style all headings en-mass.
All the best,
Tony.Forum: Themes and Templates
In reply to: [Twenty Eleven] Change fonts for entire Twenty Eleven siteHi Vickie,
Just copy and paste the following code into your child theme’s stylesheet and edit accordingly:
body, input, textarea { font: 15px "Helvetica Neue", Helvetica, Arial, sans-serif; }
By changing the 15px to a higher or lower number you’re affecting all text on the site, since everything (including headings) are derived from this value.
You’ll also need to change the font-family to whatever one you wish to use, e.g.:body, input, textarea { font: 12px "Times New Roman", Times, serif; }
Hope this helps!
Tony.Forum: Fixing WordPress
In reply to: No Comments on PageHi Mosini,
A lot of options that have previously been shown on posts and pages are hidden by default on WP3.1.
If you edit the page in question and look for the tab towards the top of the screen labelled ‘Screen Options’. Click on this tab and they will scroll down with tick boxes to turn on those that you need.
Take a look at this link for more advice:
https://ottopress.com/2011/wp-quickie-metaboxes/Hope this helps.
Tony.Forum: Fixing WordPress
In reply to: Plugin to allow visitors to upload imagesOK folks, just found one myself; the NextGEN Public Uploader. It’s an extention to the NextGEN Gallery plugin which my site is already using ??
Tony.
Forum: Plugins
In reply to: [Plugin: Discography] Not WorkingHi,
Just thought I’d post again because I’m still getting this error.
Between my first post about 4 months ago and now I’ve had to rebuild my machine and as a result I’ve started building the WordPress site I want to use Discography on from stratch – didn’t have to, but chose to.
I thought doing this may eliminate the problem I had before, but no.The line numbers that the error presents itself on seem to have changed however.
This time I’ve taken a screen grab of the error. It’s available to view here:
https://dropster.org/grab/3ws1n33tbu8c/grab.jpgI hope you read this post Dan (the plugin’s creator), because this WP forum seems the only way to leave feedback for you.
I’m using Discography 0.1.7 on WordPress 2.7.1.
Best regards,
Tony.Forum: Fixing WordPress
In reply to: 404 Broken in WordPress 2.5A million thanks auschick for your help. I couldn’t figure out what was going on. Had been using the Dunstan-style Error Page plug-in but assumed when I upgraded to WordPress 2.5.1 that the plug-in was incompatible.
With your fix however everything is rosey once more.Thanks again.
Forum: Fixing WordPress
In reply to: Images not displayingThanks for your reply RichardUK.
Your urls look a little strange.
That’s as a result of ABSPATH within the PHP code snippet.
I also have the same site on my local development PC and a typical <img> URL is “C:\Program Files\xampp\htdocs\wordpress/wp-content/gallery/sponsors/amazon.gif”
In a similar way to the online version it too doesn’t display the images, so I am wondering if the ABSPATH function should be replaced with another, but I can’t see why it doesn’t work with ABSPATH… curious.Tony.
Forum: Fixing WordPress
In reply to: How not to show the page title on definite pages ?Hi,
I think this advise is useful, and sort of resolves an issue I’m having, but mine affects hiding the page title on the home page.
The code above doesn’t seem to work. I tried substituting the word ‘forum’ in the code above with ‘home’ (the title of my home page) but it doesn’t work. I guess this is because when viewing the home page it doesn’t appear in the address bar as [site url]/home/ but as [site url].
How would I go about using this coding solution to resolve this issue?
Thanks in advance,
Tony.Forum: Plugins
In reply to: Translation PluginHave you looked at EHT Translate, available at https://ociotec.com/index.php/2007/10/09/eht-translate-plugin-para-wordpress/
I haven’t installed it myself, so I don’t know how good it is.
Tony.