Yearhouse
Forum Replies Created
-
As mentioned in another post:
Had the same problem when using the Storefront HomePage Template.
But by removing this action in my functions.php:
remove_action( ‘storefront_homepage’, ‘storefront_homepage_header’ );
the header is now removed when using the Storefront HomePage Template
I can see that the plugin does not remove this action and therefore wont work when using the HomePage template.
Hope they implement it 🙂
Forum: Plugins
In reply to: [Title Toggle for Storefront Theme] Plugin not working on homepage.Hi
Had the same problem when using the Storefront HomePage Template.
But by remove this action in my functions.php i could remove it:remove_action( 'storefront_homepage', 'storefront_homepage_header' );I can se that the plugin does not remove this action and wont work when using the HomePage template.
Hope they implement it 🙂
Forum: Plugins
In reply to: [Embeds for YouTube] TinyMCE ConflictHi David.
No problem, Im just happy to help 🙂
Mentioning by name is fine by me.I think the header might also have to be inserted in the unminified version.
//Mark Aarhus
Forum: Plugins
In reply to: [Embeds for YouTube] TinyMCE ConflictHi…I am experiencing the same issue. In chrome console I get this error which might explain things:
Refused to execute script from ‘http://localhost:8888/test/wp-content/plugins/youtube-embed/js/mce4-button.min.php?wp-mce-4203-20150730’ because its MIME type (‘text/html’) is not executable, and strict MIME type checking is enabled.
The PHP should have the correct header for javascript.
So a fix for this is to insert:<?php header(‘Content-Type: application/javascript’); ?>
into mce4-button.min.php
Hope this finds it way into an update 🙂
Forum: Plugins
In reply to: [Twitter Feed] Fatal error: commercial versionWe only use the static tweets so i solved it by doing the following in Widgets.php:
// Render the tweets //static::render( $instance ); StaticTweets::render( $instance );Its not pretty but it works for now.
Forum: Plugins
In reply to: [Twitter Feed] Fatal error: commercial versionOK I’ve come so far as to track the problem to Widget.php.
‘
“name” => static::get_name(),
“version” => \TwitterFeed\PLUGIN_VERSION,
“languages-ur” => \TwitterFeed\PLUGIN_DIR . “languages/”,
“description” => “Use this widget to display tweets in your widget area”,
“callback” => function( $args, $instance ) {`
…
// Render the tweets
static::render( $instance );
…
},…
`
The static::get_name() outside the callback gets the correct function inside StaticTweets.phpBut static::render() inside the callback function is not getting the render function() from extended class StaticTweets.php but from the Abstract class Widgets??
Why this is happing on my host provider and not on my localhost I have no idea..
Hope You can help with this one as its causing grey hairs 🙂Forum: Plugins
In reply to: [Twitter Feed] Fatal error: commercial versionI tried deleting the wordpress and DB installation, and did a complete fresh install.
I then installed the Twitterfeed plugin:Error still shows?
Are there any special server requirements for this plugin.
Forum: Plugins
In reply to: [Twitter Feed] Problems with danish letters in Hashtag linkJust updated it and it works like a charm 🙂
Thanx so much for the quick update.. Glad I bought the Pro edition.