2046
Forum Replies Created
-
Forum: Plugins
In reply to: [Posts 2 Posts] Compatibility for 6.7.xthe load_textdomain should be taken out of the function _p2p_load() {..} in posts-to-posts.php
and run on “init” like this for example:function p2p_fix_load_textdomain(){
load_plugin_textdomain( P2P_TEXTDOMAIN, '', basename( dirname( __FILE__ ) ) . '/lang' );
}
add_action( 'init', 'p2p_fix_load_textdomain' );
just take out the load_plugin_text_domain from the function and put it on the end of the file.. or something like that.- This reply was modified 1 month ago by 2046.
Forum: Plugins
In reply to: [Name Directory] Problems with diacriticsthe database should be in such case: utf8mb4_czech_ci
not all tables needed, only those where you have the records stored.
(I know it works form my own experience… it does not matter in most cases but the sorting)there are links like that..
never mind I think I’ll try to implement it from github my self.
thanksForum: Plugins
In reply to: [Responsive Lightbox & Gallery] wordpress 5.5.x compabilityThe fancybox has problem with Jquery I suppose,
If you replace it with the latest version manually it works… I have not checked anything else, just wanna let you know.err
cannot read property 'msie' of undefined
Forum: Plugins
In reply to: [Multiple Post Thumbnails] Compatibility Issue with latest wordpresssame here
WP 5.5, MPT 1.7Uncaught ReferenceError: setPostThumbnailL10n is not defined
Forum: Plugins
In reply to: [Yoast SEO] 14.5 breaks the headOne news here.. I installed the All In One SEO Pack and that does not produce this bug.
Forum: Plugins
In reply to: [Yoast SEO] 14.5 breaks the headedited:
I see now {{ wp_head }} is the breaking point or in other code {{ function(‘wp_head’) }}
still not resolved, the head is of only with wp_debug off
Forum: Plugins
In reply to: [Yoast SEO] 14.5 breaks the headThe error is not a javascript error as there is not css nor javascript as the head is blown away, the HTML head is basically non existent.
I have deactivated almost all plugins except Timber as that is crucial dependency for the template. While activating all the plugins back all went ok, unless I turned o the Yoast. Then the page head was cut off.
Forum: Plugins
In reply to: [Ginger - EU Cookie Law] breaking the sitesorry for the false notice, the problem is on the Yoast side.
Forum: Plugins
In reply to: [BJ Lazy Load] plugin causing WP issuebreaking the site
thanks to the deprecated “contextual_help”./wp-content/plugins/bj-lazy-load/inc/scb/AdminPage.php: add_filter( 'contextual_help', array( $this, '_contextual_help' ), 10, 2 ); ./wp-content/plugins/bj-lazy-load/inc/scb/AdminPage.php: function _contextual_help( $help, $screen ) {
Forum: Plugins
In reply to: [LiteSpeed Cache] Purge single page cacheHi
it doesn’t seem to work in my case
do_action( 'litespeed_purge_post', $parent_id );
It does not purge the post defined by its id.
Worth to notice that the post is a custom post type, which might be the problem.(I have applied pure ALL for now, which is super overkill ./ )
- This reply was modified 4 years, 9 months ago by 2046.
Forum: Plugins
In reply to: [Contact Form 7] Re-captcha on Safari causes: Content Security Policy problemHi
I have turned the captcha off, so there is no link to show.
I can’t have any error doodling there right now.- This reply was modified 4 years, 11 months ago by 2046.
hi,
acrobat pro did not help..
The file from that caused some unknown error and no pdf had been attached.
I opened the pdf file in Scribus and did some tweaks and save that as the pdf. That both work, and field behaves as it should.Forum: Plugins
In reply to: [Ginger - EU Cookie Law] is the css !important really important?“If your plugin element ids and class names are truly unique to the plugin, then the !important declaration is pointless.”
that’s what I mean.. the plugin has it for no purpose and I hoped the programmer who did that will skip it in next release.
Forum: Plugins
In reply to: [Responsive Lightbox & Gallery] Gallery as an option, not defaultThanks, I haven’t seen that.. what a relieve.