Handyann
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Perfect Portfolio] Problem installing child themeHi again,
I’ve been trying to use Rara One Click Demo Support and have installed and activated the plugin. However, it’s not showing up in the Appearance tab as it’s supposed to. I also have the Rara theme companion plugin activated.
Any ideas please?Thank you.
Forum: Themes and Templates
In reply to: [Perfect Portfolio] Problem installing child themeHi and thanks for your reply.
I had already downloaded and installed the parent theme. I got the child theme from –https://www.template.co.il/child-theme/perfect-portfolio/
which I thought was an official download…obviously not!
I know how to create child themes by other means, so no problem there thank you. I just thought this would be better, being the ‘proper’ one but it’s obviously just a straight parent copy.Many thanks for your help.
- This reply was modified 3 years, 11 months ago by Handyann.
Thanks for your reply Cory. Nothing helped but I did solve the problem by accident. Your FAQ’s and the article tutorial I followed both said to use https:// at the beginning of the URL to open the installer. On yet another try, I forgot that bit and just put in ‘thedomainname/installer.php‘ and it worked. My site was migrated and running perfectly 3 seconds later!
I have to say, I was expecting to have a whole load of broken links and lost images to fix, but there was not one – everything works exactly as before. Overall a great plugin! Thanks a lot.
Forum: Developing with WordPress
In reply to: Need some help and advice pleaseI’m so sorry + of course you’re right and I should have said I’m using the Thimpress Eduma theme with LearnPress and the added LearnPress Frontend Courses Editor.
- This reply was modified 4 years ago by Handyann.
Forum: Plugins
In reply to: [Loco Translate] ‘File already exists in this folder’ error@timwhitlock Wow! That was a fast reply!
Ah – just reading your reply I’m very new to Loco and obviously not doing it right- I didn’t know there was an edit button as such. I was trying to use the same path as I did the first time – through ‘new language’.
And, as I was just going through Loco again after your reply, clicking on every option and button available, I’ve just found the English (UK) edit button!Thank you very much for the pointer – much appreciated.
Ah, thanks so much for your fast reply. I thought it must be something I’d done!
Forum: Plugins
In reply to: [WooCommerce] Shipping settings for more than one itemThat works perfectly and I’ve worked out how to change the combination of figures if I need to. Many thanks!
Forum: Plugins
In reply to: [WooCommerce] Shipping settings for more than one itemBrilliant! Thank you so much!
Forum: Plugins
In reply to: [WooCommerce] Shipping settings for more than one itemThanks so much for your reply. As long as I can set it up just for that zone, that’s ideal. I wasn’t sure if it would apply to everything on the site, bought from anywhere! Do I just put in that snippet as it is or do I have to edit it to fit? Not very well up on this stuff!!
Forum: Fixing WordPress
In reply to: Blog post text and images formattingThanks for getting back. Actually, I did copy the text from the original PDF that I put together, as I originally intended this for an ebook. I didn’t think that the original formatting might interfere, especially as it looks fine on the backend.
I’ll go through and remove the excess code and see if that helps. If not, I’ve got about 3 months-worth of ideas to try!! Many thanks.Forum: Fixing WordPress
In reply to: All WP admin pages and login are blankThe braces were curly originally.
With the help of Github and the PHP.net manual, I think I might have solved the problem by tweaking the PHP a little bit. I know virtually no PHP code, so it’s a bit on a wing and a prayer.
I took out the intermediate <?PHP and ?> tags, put in a ?> tag at the end and changed the last function, removing the div style bits and adding in echo instead.
I’ve logged in and out several times and it seems ok, everything is also working as it should from the altered PHP.@corrinarusso thank you very much for getting me started on the fix. I really appreciate your time – it was a lot more than the theme dev was willing to commit.
In my search to fix this, I’ve seen that a lot of other people have had the same issue, so I hope detailing what I’ve done might help them.
- This reply was modified 4 years, 5 months ago by Handyann.
Forum: Fixing WordPress
In reply to: All WP admin pages and login are blankUPDATE: Well, after all that, I did what you suggested – downloaded the child theme files, deleted the old child theme folder and created a new one. I put the old files back one by one and I could log in as normal after the first one went in. It was ok until the functions.php file and then the old cookies error on login reappeared and so did the blank pages.
Forum: Fixing WordPress
In reply to: All WP admin pages and login are blankThis is the only error log I can find via c-panel and this is the only error dated yesterday. I don’t know if it’s relevant:
[Mon Jun 08 10:54:33.253118 2020] [access_compat:error] [pid 892708:tid 47711319496448] [client 198.54.116.31:56146] AH01797: client denied by server configuration: /home/unicpomu/public_html/wp-content/uploads/woocommerce_uploads/, referer: https://unicornstudios.shop/wp-content/uploads/woocommerce_uploads/
Forum: Fixing WordPress
In reply to: All WP admin pages and login are blankBrilliant! Thank you. The site is my own newish shop site – luckily not for anyone else. It is live though, so I’ll have to put it on maintenance mode to do anything that shows from the front end. It was all working fine until yesterday ??
Here’s the contents of the functions.php file from the child theme:
<?php
/**
* @package WordPress
* @subpackage Handmade Shop Child
* @version 1.0.7
*
* Child Theme Functions File
* Created by CMSMasters
*
*/function handmade_shop_child_enqueue_styles() {
wp_enqueue_style(‘handmade-shop-child-style’, get_stylesheet_uri(), array(), ‘1.0.0’, ‘screen, print’);
}add_action(‘wp_enqueue_scripts’, ‘handmade_shop_child_enqueue_styles’, 11);
?>
<?php
function wc_add_string_to_price_newline( $price, $product ) {
$product_id = $product->get_id();{
$price .= “<br> <font size=2>INC UK POSTAGE</font>”;
}return $price;
}
add_filter( ‘woocommerce_get_price_html’, ‘wc_add_string_to_price_newline’, 10, 2 );add_action(‘woocommerce_after_single_product_summary’, ‘html_below_thumbnails’, 9);
function html_below_thumbnails() { ?>
<div style=”clear:both”>Hover on large image to magnify</div>
<?php
}I did wonder about the closing <?php and the bracket, but removing them causes an unexpected EOF error.
And these are the entries from the WP error log. Although they show as being 2019, it’s surely just too much of a stretch that they’re actually from exactly the same date last year, isn’t it? :
[08-Jun-2019 19:30:24 UTC] PHP Warning: require(ABSPATHwp-includes/load.php): failed to open stream: No such file or directory in /home/unicor/unicornstudios.shop/wp-settings.php on line 19
[08-Jun-2019 19:30:24 UTC] PHP Warning: require(ABSPATHwp-includes/load.php): failed to open stream: No such file or directory in /home/unicor/unicornstudios.shop/wp-settings.php on line 19
[08-Jun-2019 19:30:24 UTC] PHP Fatal error: require(): Failed opening required ‘ABSPATHwp-includes/load.php’ (include_path=’.:/opt/cpanel/ea-php56/root/usr/share/pear’) in /home/unicor/unicornstudios.shop/wp-settings.php on line 19
Forum: Fixing WordPress
In reply to: All WP admin pages and login are blankOh, and I don’t know where to go for the server logs, unless it’s the error file in the WP files? I did look at that yesterday and, rather oddly, the only error it shows is apparently from June 8th 2019. That seems a bit of a coincidence to me! I can post the 3 entries, if that would help?