Vali Hutchison
Forum Replies Created
-
Forum: Plugins
In reply to: [Compliance by Hu-manity.co] Cookies and wp fastest cache@voxoff The issue for the site I’m using the plugin on sorted itself out not long after I posted my comment. So is working fine with the Site Ground Optimizer caching plugin active. I didn’t work out why though!
- This reply was modified 4 years, 4 months ago by Vali Hutchison.
Forum: Plugins
In reply to: [Compliance by Hu-manity.co] Cookies and wp fastest cacheAlso having the same issue with the Site Ground Optimizer caching plugin. The cookie bar shows when the cache is cleared but then soon stops showing once the site has been re-cached
Forum: Plugins
In reply to: [Analyticator] Google Analytics “Critical Error on your website”I am also getting the same error with Version 6.5.4 installed (PHP 7.2 and WordPress 5.3.2 ) when I go to either Appearance > Customize or Appearance > Background
For now I’ve commented out line 288 of /wp-content/plugins/google-analyticator/google-api-php-client/src/auth/Google_OAuth2.php and this ha stopped the fatal error but would be good to get a fix on this.
- This reply was modified 6 years, 3 months ago by Vali Hutchison.
Forum: Plugins
In reply to: [Event List] Viewing Past Events Admin List ErrorExcellent – just updated to 0.8.1 and the issue is resolved.
Forum: Plugins
In reply to: [Glue for Yoast SEO & AMP] AMP for pages, not only for postSame for me, if I enable pages the url listed for <link rel=”amphtml” href=””> points to the /AMP/ but this redirects back to the main page – but if i use ?amp=1 instead of /AMP/ then this works.
Forum: Plugins
In reply to: [Postman SMTP Mailer/Email Log] Bad Request(invalid_grant)I had the same issue and creating a new OAuth 2.0 Client ID worked.
Forum: Plugins
In reply to: [Event List] Location on a new lineAdd this to your theme CSS file (style.css)
.event-list-view .event-location { display: block; }Forum: Fixing WordPress
In reply to: Remove 'Skills' & 'Posted on'If you want to change the text rather than remove it, then you can do this:
Create a child theme of DIvi (see here for how and why to do this http://www.elegantthemes.com/blog/resources/wordpress-child-theme-tutorial) and make sure this is activated.
Then add a new file in the root directory of your child theme called functions.php (make sure to have
<?phpas the first line.Then open the functions.php file in the Divi root directory and find the function called et_pb_portfolio_meta_box()
Copy all of this and paste into the functions.php in your child theme. Then locate the word ‘Skills’ and change it to what you would like it to say.
So it should look something like this:
<?phpif ( ! function_exists( 'et_pb_portfolio_meta_box' ) ) :
function et_pb_portfolio_meta_box() { ?>
<div class="et_project_meta">
<strong class="et_project_meta_title"><?php echo esc_html__( 'Categories', 'Divi' ); ?>
<p><?php echo get_the_term_list( get_the_ID(), 'project_tag', '', ', ' ); ?></p><strong class="et_project_meta_title"><?php echo esc_html__( 'Posted on', 'Divi' ); ?>
<p><?php echo get_the_date(); ?></p>
</div>
<?php }
endif;Forum: Fixing WordPress
In reply to: errors with wp 3.5Thanks Jimii,
I had the same issue. So deactivated the “theme my login” plugin and the error stopped. Then when I re-activated the “theme my login” plugin the error still didn’t appear 🙂
Forum: Plugins
In reply to: [Image Rotator Widget] Option for no links on imagesAhh – sorry, just worked out how to do it. So when you add a new image to the rotator then you simply click the ‘none’ button in the Link URL section before clicking the ‘Send to Image Rotator Widget’ button.
Forum: Fixing WordPress
In reply to: Can't get rid of "Hello world" page..why?In the admin menu, go to Appearance > Theme Options and then click on Home Page. The ‘Hello World’ title is changed by adding your text in to the Headline box. other elements of that section are also editable.
Forum: Plugins
In reply to: [Inactive User Deleter] syntax error in codeYes, similar issue for me. When i go to activate the plugin i get:
Plugin could not be activated because it triggered a fatal error.
Parse error: syntax error, unexpected $end in /xxx/wp-content/plugins/inactive-user-deleter/inactive-user-deleter.php on line 220To fix this – simply change <? to <?php on line 218 of inactive-user-deleter.php and it should work. For <? to work to define php then the server needs to be configured to allow short tags. So for compatibility, always better to use the <?php version.
UPDATE: However, after fixing this and activating the plugin, when I go to the plugin settings then it’s broken. There are lots more <? tags in the code which i then changed to <?php but still broken.
Am using wordpress 3.3.1
Forum: Fixing WordPress
In reply to: After automatic upgrade to 2.8, all I get is an error messageI had the same …wp-db.php on line 487 error and solved it by upgrading the redirection plugin to the latest version (2.1.22) – http://urbangiraffe.com/plugins/redirection/
Forum: Installing WordPress
In reply to: Can’t connect to database, host is webfusionI had similar difficulties with web-fusion. However, found this page in their support section which helps, has similar info as above – http://www.webfusion-support.co.uk/Answer.aspx?ArticleID=104
By the way, if you are signing up for a web-fusion account for wordpress, you need the webfusion pro account and make sure it’s on linux as the windows server doesn’t support wordpress as runs off MSSQL rather than MYSQL.